The Kubernetes variability model (automatically synthesized)

Conference Paper
DOI /doi/10.5281/zenodo.19454998
namespace KubernetesTest1
features
	Kubernetes {abstract}
		optional
			io_k8s_api_admissionregistration_v1_AuditAnnotation {doc 'AuditAnnotation describes how to produce an audit annotation for an API request'}
				mandatory
					String io_k8s_api_admissionregistration_v1_AuditAnnotation_key {doc 'key specifies the audit annotation key The audit annotation keys of a ValidatingAdmissionPolicy must be unique The key must be a qualified name ([A-Za-z0-9][-A-Za-z0-9_]*) no more than 63 bytes in lengthThe key is combined with the resource name of the ValidatingAdmissionPolicy to construct an audit annotation key: ValidatingAdmissionPolicy name/keyIf an admission webhook uses the same resource name as this ValidatingAdmissionPolicy and the same audit annotation key, the annotation key will be identical In this case, the first annotation written with the key will be included in the audit event and all subsequent annotations with the same key will be discardedRequired'}
					String io_k8s_api_admissionregistration_v1_AuditAnnotation_valueExpression {doc 'valueExpression represents the expression which is evaluated by CEL to produce an audit annotation value The expression must evaluate to either a string or null value If the expression evaluates to a string, the audit annotation is included with the string value If the expression evaluates to null or empty string the audit annotation will be omitted The valueExpression may be no longer than 5kb in length If the result of the valueExpression is more than 10kb in length, it will be truncated to 10kbIf multiple ValidatingAdmissionPolicyBinding resources match an API request, then the valueExpression will be evaluated for each binding All unique values produced by the valueExpressions will be joined together in a comma-separated listRequired'}
			io_k8s_api_admissionregistration_v1_ExpressionWarning {doc 'ExpressionWarning is a warning information that targets a specific expression'}
				mandatory
					String io_k8s_api_admissionregistration_v1_ExpressionWarning_fieldRef {doc 'The path to the field that refers the expression For example, the reference to the expression of the first item of validations is specvalidations[0]expression'}
					String io_k8s_api_admissionregistration_v1_ExpressionWarning_warning {doc 'The content of type checking information in a human-readable form Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler'}
			io_k8s_api_admissionregistration_v1_MatchCondition {doc 'MatchCondition represents a condition which must by fulfilled for a request to be sent to a webhook'}
				mandatory
					String io_k8s_api_admissionregistration_v1_MatchCondition_expression {doc 'Expression represents the expression which will be evaluated by CEL Must evaluate to bool CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:_object_ - The object from the incoming request The value is null for DELETE requests _oldObject_ - The existing object The value is null for CREATE requests _request_ - Attributes of the admission request(/pkg/apis/admission/typesgo#AdmissionRequest) _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz_authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceDocumentation on CEL: https:_kubernetesio/docs/reference/using-api/cel/Required'}
					String io_k8s_api_admissionregistration_v1_MatchCondition_name {doc 'Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes A good name should be descriptive of the associated expression Name must be a qualified name consisting of alphanumeric characters, _-_, ___ or __, and must start and end with an alphanumeric character (eg _MyName_,  or _myname_,  or _123-abc_, regex used for validation is _([A-Za-z0-9][-A-Za-z0-9_]*)?[A-Za-z0-9]_) with an optional DNS subdomain prefix and _/_ (eg _examplecom/MyName_)Required'}
			io_k8s_api_admissionregistration_v1_MatchResources {doc 'MatchResources decides whether to run the admission control policy on an object based on whether it meets the match criteria The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
				optional
					io_k8s_api_admissionregistration_v1_MatchResources_excludeResourceRules cardinality [1..*] {doc 'ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
						mandatory
							io_k8s_api_admissionregistration_v1_MatchResources_excludeResourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MatchResources_excludeResourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1_MatchResources_excludeResourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MatchResources_excludeResourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1_MatchResources_excludeResourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MatchResources_excludeResourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1_MatchResources_excludeResourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MatchResources_excludeResourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							io_k8s_api_admissionregistration_v1_MatchResources_excludeResourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MatchResources_excludeResourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1_MatchResources_excludeResourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
								alternative
									io_k8s_api_admissionregistration_v1_MatchResources_excludeResourceRules_scope_Cluster {doc 'Specific value: Cluster'}
									io_k8s_api_admissionregistration_v1_MatchResources_excludeResourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
									io_k8s_api_admissionregistration_v1_MatchResources_excludeResourceRules_scope_estrella {default, doc 'Specific value: estrella'}
					io_k8s_api_admissionregistration_v1_MatchResources_matchPolicy {doc 'matchPolicy defines how the MatchResources list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicyDefaults to Equivalent'}
						alternative
							io_k8s_api_admissionregistration_v1_MatchResources_matchPolicy_apps {doc 'Specific value: apps'}
							io_k8s_api_admissionregistration_v1_MatchResources_matchPolicy_MatchResources {doc 'Specific value: MatchResources'}
							io_k8s_api_admissionregistration_v1_MatchResources_matchPolicy_deployments {doc 'Specific value: deployments'}
							io_k8s_api_admissionregistration_v1_MatchResources_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
							io_k8s_api_admissionregistration_v1_MatchResources_matchPolicy_rules {doc 'Specific value: rules'}
							io_k8s_api_admissionregistration_v1_MatchResources_matchPolicy_v1 {doc 'Specific value: v1'}
							io_k8s_api_admissionregistration_v1_MatchResources_matchPolicy_Exact {doc 'Specific value: Exact'}
					io_k8s_api_admissionregistration_v1_MatchResources_namespaceSelector {doc 'NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the policyFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the policy on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
						optional
							io_k8s_api_admissionregistration_v1_MatchResources_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MatchResources_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_admissionregistration_v1_MatchResources_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_admissionregistration_v1_MatchResources_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_admissionregistration_v1_MatchResources_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_admissionregistration_v1_MatchResources_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_admissionregistration_v1_MatchResources_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_admissionregistration_v1_MatchResources_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_admissionregistration_v1_MatchResources_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1_MatchResources_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MatchResources_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1_MatchResources_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_admissionregistration_v1_MatchResources_objectSelector {doc 'ObjectSelector decides whether to run the validation based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
						optional
							io_k8s_api_admissionregistration_v1_MatchResources_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MatchResources_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_admissionregistration_v1_MatchResources_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_admissionregistration_v1_MatchResources_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_admissionregistration_v1_MatchResources_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_admissionregistration_v1_MatchResources_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_admissionregistration_v1_MatchResources_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_admissionregistration_v1_MatchResources_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_admissionregistration_v1_MatchResources_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1_MatchResources_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MatchResources_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1_MatchResources_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_admissionregistration_v1_MatchResources_resourceRules cardinality [1..*] {doc 'ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches The policy cares about an operation if it matches _any_ Rule'}
						mandatory
							io_k8s_api_admissionregistration_v1_MatchResources_resourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MatchResources_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1_MatchResources_resourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MatchResources_resourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1_MatchResources_resourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MatchResources_resourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1_MatchResources_resourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MatchResources_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							io_k8s_api_admissionregistration_v1_MatchResources_resourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MatchResources_resourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1_MatchResources_resourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
								alternative
									io_k8s_api_admissionregistration_v1_MatchResources_resourceRules_scope_Cluster {doc 'Specific value: Cluster'}
									io_k8s_api_admissionregistration_v1_MatchResources_resourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
									io_k8s_api_admissionregistration_v1_MatchResources_resourceRules_scope_estrella {default, doc 'Specific value: estrella'}
			io_k8s_api_admissionregistration_v1_MutatingWebhook {doc 'MutatingWebhook describes an admission webhook and the resources and operations it applies to'}
				mandatory
					io_k8s_api_admissionregistration_v1_MutatingWebhook_admissionReviewVersions cardinality [1..*] {doc 'AdmissionReviewVersions is an ordered list of preferred AdmissionReview versions the Webhook expects API server will try to use first version in the list which it supports If none of the versions specified in this list supported by API server, validation will fail for this object 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 and be subject to the failure policy'}
						mandatory
							String io_k8s_api_admissionregistration_v1_MutatingWebhook_admissionReviewVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_admissionregistration_v1_MutatingWebhook_clientConfig {doc 'ClientConfig defines how to communicate with the hook Required'}
						optional
							String io_k8s_api_admissionregistration_v1_MutatingWebhook_clientConfig_caBundle {doc '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'}
							io_k8s_api_admissionregistration_v1_MutatingWebhook_clientConfig_service {doc 'service is a reference to the service for this webhook Either service or url must be specifiedIf the webhook is running within the cluster, then you should use service'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MutatingWebhook_clientConfig_service_name {doc 'name is the name of the service Required'}
									String io_k8s_api_admissionregistration_v1_MutatingWebhook_clientConfig_service_namespace {doc 'namespace is the namespace of the service Required'}
								optional
									String io_k8s_api_admissionregistration_v1_MutatingWebhook_clientConfig_service_path {doc 'path is an optional URL path which will be sent in any request to this service'}
									Integer io_k8s_api_admissionregistration_v1_MutatingWebhook_clientConfig_service_port {default 443, doc 'If specified, the port on the service that hosting webhook Default to 443 for backward compatibility port should be a valid port number (1-65535, inclusive)'}
							io_k8s_api_admissionregistration_v1_MutatingWebhook_clientConfig_url {abstract, doc 'url gives the location of the webhook, in standard URL form (scheme:_host:port/path) Exactly one of url or service must be specifiedThe host should not refer to a service running in the cluster; use the service field instead The host might be resolved via external DNS in some apiservers (eg, kube-apiserver cannot resolve in-cluster DNS as that would be a layering violation) host may also be an IP addressPlease note that using localhost or 127001 as a host is 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, ie, not easy to turn up in a new clusterThe 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 identifierAttempting to use a user or basic auth eg user:password@ is not allowed Fragments (#) and query parameters (?) are not allowed, either'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MutatingWebhook_clientConfig_url_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
					String io_k8s_api_admissionregistration_v1_MutatingWebhook_name {doc 'The name of the admission webhook Name should be fully qualified, eg, imagepolicykubernetesio, where imagepolicy is the name of the webhook, and kubernetesio is the name of the organization Required'}
					io_k8s_api_admissionregistration_v1_MutatingWebhook_sideEffects {doc 'SideEffects states whether this webhook has side effects Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown) Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission chain and the side effects therefore need to be undone Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some'}
						alternative
							io_k8s_api_admissionregistration_v1_MutatingWebhook_sideEffects_None {doc 'Specific value: None'}
							io_k8s_api_admissionregistration_v1_MutatingWebhook_sideEffects_NoneOnDryRun {doc 'Specific value: NoneOnDryRun'}
				optional
					io_k8s_api_admissionregistration_v1_MutatingWebhook_failurePolicy {doc 'FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail Defaults to Fail'}
						alternative
							io_k8s_api_admissionregistration_v1_MutatingWebhook_failurePolicy_Fail {default, doc 'Specific value: Fail'}
							io_k8s_api_admissionregistration_v1_MutatingWebhook_failurePolicy_Ignore {doc 'Specific value: Ignore'}
					io_k8s_api_admissionregistration_v1_MutatingWebhook_matchConditions cardinality [1..*] {doc 'MatchConditions is a list of conditions that must be met for a request to be sent to this webhook Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector An empty list of matchConditions matches all requests There are a maximum of 64 match conditions allowedThe exact matching logic is (in order):  1 If ANY matchCondition evaluates to FALSE, the webhook is skipped  2 If ALL matchConditions evaluate to TRUE, the webhook is called  3 If any matchCondition evaluates to an error (but none are FALSE):     - If failurePolicy=Fail, reject the request     - If failurePolicy=Ignore, the error is ignored and the webhook is skipped'}
						mandatory
							String io_k8s_api_admissionregistration_v1_MutatingWebhook_matchConditions_expression {doc 'Expression represents the expression which will be evaluated by CEL Must evaluate to bool CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:_object_ - The object from the incoming request The value is null for DELETE requests _oldObject_ - The existing object The value is null for CREATE requests _request_ - Attributes of the admission request(/pkg/apis/admission/typesgo#AdmissionRequest) _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz_authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceDocumentation on CEL: https:_kubernetesio/docs/reference/using-api/cel/Required'}
							String io_k8s_api_admissionregistration_v1_MutatingWebhook_matchConditions_name {doc 'Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes A good name should be descriptive of the associated expression Name must be a qualified name consisting of alphanumeric characters, _-_, ___ or __, and must start and end with an alphanumeric character (eg _MyName_,  or _myname_,  or _123-abc_, regex used for validation is _([A-Za-z0-9][-A-Za-z0-9_]*)?[A-Za-z0-9]_) with an optional DNS subdomain prefix and _/_ (eg _examplecom/MyName_)Required'}
					io_k8s_api_admissionregistration_v1_MutatingWebhook_matchPolicy {doc 'matchPolicy defines how the rules list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhookDefaults to Equivalent'}
						alternative
							io_k8s_api_admissionregistration_v1_MutatingWebhook_matchPolicy_apps {doc 'Specific value: apps'}
							io_k8s_api_admissionregistration_v1_MutatingWebhook_matchPolicy_deployments {doc 'Specific value: deployments'}
							io_k8s_api_admissionregistration_v1_MutatingWebhook_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
							io_k8s_api_admissionregistration_v1_MutatingWebhook_matchPolicy_rules {doc 'Specific value: rules'}
							io_k8s_api_admissionregistration_v1_MutatingWebhook_matchPolicy_v1 {doc 'Specific value: v1'}
							io_k8s_api_admissionregistration_v1_MutatingWebhook_matchPolicy_Exact {doc 'Specific value: Exact'}
					io_k8s_api_admissionregistration_v1_MutatingWebhook_namespaceSelector {doc 'NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the webhookFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the webhook on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
						optional
							io_k8s_api_admissionregistration_v1_MutatingWebhook_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MutatingWebhook_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_admissionregistration_v1_MutatingWebhook_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_admissionregistration_v1_MutatingWebhook_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_admissionregistration_v1_MutatingWebhook_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_admissionregistration_v1_MutatingWebhook_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_admissionregistration_v1_MutatingWebhook_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_admissionregistration_v1_MutatingWebhook_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_admissionregistration_v1_MutatingWebhook_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1_MutatingWebhook_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MutatingWebhook_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1_MutatingWebhook_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_admissionregistration_v1_MutatingWebhook_objectSelector {doc 'ObjectSelector decides whether to run the webhook based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
						optional
							io_k8s_api_admissionregistration_v1_MutatingWebhook_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MutatingWebhook_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_admissionregistration_v1_MutatingWebhook_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_admissionregistration_v1_MutatingWebhook_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_admissionregistration_v1_MutatingWebhook_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_admissionregistration_v1_MutatingWebhook_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_admissionregistration_v1_MutatingWebhook_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_admissionregistration_v1_MutatingWebhook_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_admissionregistration_v1_MutatingWebhook_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1_MutatingWebhook_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MutatingWebhook_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1_MutatingWebhook_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_admissionregistration_v1_MutatingWebhook_reinvocationPolicy {doc 'reinvocationPolicy indicates whether this webhook should be called multiple times as part of a single admission evaluation Allowed values are Never and IfNeededNever: the webhook will not be called more than once in a single admission evaluationIfNeeded: the webhook will be called at least one additional time as part of the admission evaluation if the object being admitted is modified by other admission plugins after the initial webhook call Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted Note: * the number of additional invocations is not guaranteed to be exactly one * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked again * webhooks that use this option may be reordered to minimize the number of additional invocations * to validate an object after all mutations are guaranteed complete, use a validating admission webhook insteadDefaults to Never'}
						alternative
							io_k8s_api_admissionregistration_v1_MutatingWebhook_reinvocationPolicy_IfNeeded {doc 'Specific value: IfNeeded'}
							io_k8s_api_admissionregistration_v1_MutatingWebhook_reinvocationPolicy_Never {default, doc 'Specific value: Never'}
					io_k8s_api_admissionregistration_v1_MutatingWebhook_rules cardinality [1..*] {doc 'Rules describes what operations on what resources/subresources the webhook cares about The webhook cares about an operation if it matches _any_ Rule However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects'}
						mandatory
							io_k8s_api_admissionregistration_v1_MutatingWebhook_rules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MutatingWebhook_rules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1_MutatingWebhook_rules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MutatingWebhook_rules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1_MutatingWebhook_rules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MutatingWebhook_rules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1_MutatingWebhook_rules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MutatingWebhook_rules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							io_k8s_api_admissionregistration_v1_MutatingWebhook_rules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
								alternative
									io_k8s_api_admissionregistration_v1_MutatingWebhook_rules_scope_Cluster {doc 'Specific value: Cluster'}
									io_k8s_api_admissionregistration_v1_MutatingWebhook_rules_scope_Namespaced {doc 'Specific value: Namespaced'}
									io_k8s_api_admissionregistration_v1_MutatingWebhook_rules_scope_estrella {default, doc 'Specific value: estrella'}
					Integer io_k8s_api_admissionregistration_v1_MutatingWebhook_timeoutSeconds {default 10, doc 'TimeoutSeconds specifies the timeout for this webhook After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy The timeout value must be between 1 and 30 seconds Default to 10 seconds'}
			io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration {doc 'MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object'}
				optional
					String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_kind {default 'MutatingWebhookConfiguration', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata {doc 'Standard object metadata; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks cardinality [1..*] {doc 'Webhooks is a list of webhooks and the affected resources and operations'}
						mandatory
							io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_admissionReviewVersions cardinality [1..*] {doc 'AdmissionReviewVersions is an ordered list of preferred AdmissionReview versions the Webhook expects API server will try to use first version in the list which it supports If none of the versions specified in this list supported by API server, validation will fail for this object 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 and be subject to the failure policy'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_admissionReviewVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_clientConfig {doc 'ClientConfig defines how to communicate with the hook Required'}
								optional
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_clientConfig_caBundle {doc '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'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_clientConfig_service {doc 'service is a reference to the service for this webhook Either service or url must be specifiedIf the webhook is running within the cluster, then you should use service'}
										mandatory
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_clientConfig_service_name {doc 'name is the name of the service Required'}
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_clientConfig_service_namespace {doc 'namespace is the namespace of the service Required'}
										optional
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_clientConfig_service_path {doc 'path is an optional URL path which will be sent in any request to this service'}
											Integer io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_clientConfig_service_port {default 443, doc 'If specified, the port on the service that hosting webhook Default to 443 for backward compatibility port should be a valid port number (1-65535, inclusive)'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_clientConfig_url {abstract, doc 'url gives the location of the webhook, in standard URL form (scheme:_host:port/path) Exactly one of url or service must be specifiedThe host should not refer to a service running in the cluster; use the service field instead The host might be resolved via external DNS in some apiservers (eg, kube-apiserver cannot resolve in-cluster DNS as that would be a layering violation) host may also be an IP addressPlease note that using localhost or 127001 as a host is 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, ie, not easy to turn up in a new clusterThe 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 identifierAttempting to use a user or basic auth eg user:password@ is not allowed Fragments (#) and query parameters (?) are not allowed, either'}
										mandatory
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_clientConfig_url_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_name {doc 'The name of the admission webhook Name should be fully qualified, eg, imagepolicykubernetesio, where imagepolicy is the name of the webhook, and kubernetesio is the name of the organization Required'}
							io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_sideEffects {doc 'SideEffects states whether this webhook has side effects Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown) Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission chain and the side effects therefore need to be undone Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some'}
								alternative
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_sideEffects_None {doc 'Specific value: None'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_sideEffects_NoneOnDryRun {doc 'Specific value: NoneOnDryRun'}
						optional
							io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_failurePolicy {doc 'FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail Defaults to Fail'}
								alternative
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_failurePolicy_Fail {default, doc 'Specific value: Fail'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_failurePolicy_Ignore {doc 'Specific value: Ignore'}
							io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_matchConditions cardinality [1..*] {doc 'MatchConditions is a list of conditions that must be met for a request to be sent to this webhook Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector An empty list of matchConditions matches all requests There are a maximum of 64 match conditions allowedThe exact matching logic is (in order):  1 If ANY matchCondition evaluates to FALSE, the webhook is skipped  2 If ALL matchConditions evaluate to TRUE, the webhook is called  3 If any matchCondition evaluates to an error (but none are FALSE):     - If failurePolicy=Fail, reject the request     - If failurePolicy=Ignore, the error is ignored and the webhook is skipped'}
								mandatory
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_matchConditions_expression {doc 'Expression represents the expression which will be evaluated by CEL Must evaluate to bool CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:_object_ - The object from the incoming request The value is null for DELETE requests _oldObject_ - The existing object The value is null for CREATE requests _request_ - Attributes of the admission request(/pkg/apis/admission/typesgo#AdmissionRequest) _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz_authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceDocumentation on CEL: https:_kubernetesio/docs/reference/using-api/cel/Required'}
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_matchConditions_name {doc 'Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes A good name should be descriptive of the associated expression Name must be a qualified name consisting of alphanumeric characters, _-_, ___ or __, and must start and end with an alphanumeric character (eg _MyName_,  or _myname_,  or _123-abc_, regex used for validation is _([A-Za-z0-9][-A-Za-z0-9_]*)?[A-Za-z0-9]_) with an optional DNS subdomain prefix and _/_ (eg _examplecom/MyName_)Required'}
							io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_matchPolicy {doc 'matchPolicy defines how the rules list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhookDefaults to Equivalent'}
								alternative
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_matchPolicy_apps {doc 'Specific value: apps'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_matchPolicy_deployments {doc 'Specific value: deployments'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_matchPolicy_rules {doc 'Specific value: rules'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_matchPolicy_v1 {doc 'Specific value: v1'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_matchPolicy_Exact {doc 'Specific value: Exact'}
							io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_namespaceSelector {doc 'NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the webhookFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the webhook on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
								optional
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_objectSelector {doc 'ObjectSelector decides whether to run the webhook based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
								optional
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_reinvocationPolicy {doc 'reinvocationPolicy indicates whether this webhook should be called multiple times as part of a single admission evaluation Allowed values are Never and IfNeededNever: the webhook will not be called more than once in a single admission evaluationIfNeeded: the webhook will be called at least one additional time as part of the admission evaluation if the object being admitted is modified by other admission plugins after the initial webhook call Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted Note: * the number of additional invocations is not guaranteed to be exactly one * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked again * webhooks that use this option may be reordered to minimize the number of additional invocations * to validate an object after all mutations are guaranteed complete, use a validating admission webhook insteadDefaults to Never'}
								alternative
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_reinvocationPolicy_IfNeeded {doc 'Specific value: IfNeeded'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_reinvocationPolicy_Never {default, doc 'Specific value: Never'}
							io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_rules cardinality [1..*] {doc 'Rules describes what operations on what resources/subresources the webhook cares about The webhook cares about an operation if it matches _any_ Rule However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects'}
								mandatory
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_rules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_rules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_rules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_rules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_rules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_rules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_rules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_rules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_rules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
										alternative
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_rules_scope_Cluster {doc 'Specific value: Cluster'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_rules_scope_Namespaced {doc 'Specific value: Namespaced'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_rules_scope_estrella {default, doc 'Specific value: estrella'}
							Integer io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_timeoutSeconds {default 10, doc 'TimeoutSeconds specifies the timeout for this webhook After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy The timeout value must be between 1 and 30 seconds Default to 10 seconds'}
			io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList {doc 'MutatingWebhookConfigurationList is a list of MutatingWebhookConfiguration'}
				mandatory
					io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items cardinality [1..*] {doc 'List of MutatingWebhookConfiguration'}
						optional
							String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_kind {default 'MutatingWebhookConfiguration', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata {doc 'Standard object metadata; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks cardinality [1..*] {doc 'Webhooks is a list of webhooks and the affected resources and operations'}
								mandatory
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_admissionReviewVersions cardinality [1..*] {doc 'AdmissionReviewVersions is an ordered list of preferred AdmissionReview versions the Webhook expects API server will try to use first version in the list which it supports If none of the versions specified in this list supported by API server, validation will fail for this object 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 and be subject to the failure policy'}
										mandatory
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_admissionReviewVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_clientConfig {doc 'ClientConfig defines how to communicate with the hook Required'}
										optional
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_clientConfig_caBundle {doc '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'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_clientConfig_service {doc 'service is a reference to the service for this webhook Either service or url must be specifiedIf the webhook is running within the cluster, then you should use service'}
												mandatory
													String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_clientConfig_service_name {doc 'name is the name of the service Required'}
													String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_clientConfig_service_namespace {doc 'namespace is the namespace of the service Required'}
												optional
													String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_clientConfig_service_path {doc 'path is an optional URL path which will be sent in any request to this service'}
													Integer io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_clientConfig_service_port {default 443, doc 'If specified, the port on the service that hosting webhook Default to 443 for backward compatibility port should be a valid port number (1-65535, inclusive)'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_clientConfig_url {abstract, doc 'url gives the location of the webhook, in standard URL form (scheme:_host:port/path) Exactly one of url or service must be specifiedThe host should not refer to a service running in the cluster; use the service field instead The host might be resolved via external DNS in some apiservers (eg, kube-apiserver cannot resolve in-cluster DNS as that would be a layering violation) host may also be an IP addressPlease note that using localhost or 127001 as a host is 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, ie, not easy to turn up in a new clusterThe 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 identifierAttempting to use a user or basic auth eg user:password@ is not allowed Fragments (#) and query parameters (?) are not allowed, either'}
												mandatory
													String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_clientConfig_url_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_name {doc 'The name of the admission webhook Name should be fully qualified, eg, imagepolicykubernetesio, where imagepolicy is the name of the webhook, and kubernetesio is the name of the organization Required'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_sideEffects {doc 'SideEffects states whether this webhook has side effects Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown) Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission chain and the side effects therefore need to be undone Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some'}
										alternative
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_sideEffects_None {doc 'Specific value: None'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_sideEffects_NoneOnDryRun {doc 'Specific value: NoneOnDryRun'}
								optional
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_failurePolicy {doc 'FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail Defaults to Fail'}
										alternative
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_failurePolicy_Fail {default, doc 'Specific value: Fail'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_failurePolicy_Ignore {doc 'Specific value: Ignore'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_matchConditions cardinality [1..*] {doc 'MatchConditions is a list of conditions that must be met for a request to be sent to this webhook Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector An empty list of matchConditions matches all requests There are a maximum of 64 match conditions allowedThe exact matching logic is (in order):  1 If ANY matchCondition evaluates to FALSE, the webhook is skipped  2 If ALL matchConditions evaluate to TRUE, the webhook is called  3 If any matchCondition evaluates to an error (but none are FALSE):     - If failurePolicy=Fail, reject the request     - If failurePolicy=Ignore, the error is ignored and the webhook is skipped'}
										mandatory
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_matchConditions_expression {doc 'Expression represents the expression which will be evaluated by CEL Must evaluate to bool CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:_object_ - The object from the incoming request The value is null for DELETE requests _oldObject_ - The existing object The value is null for CREATE requests _request_ - Attributes of the admission request(/pkg/apis/admission/typesgo#AdmissionRequest) _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz_authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceDocumentation on CEL: https:_kubernetesio/docs/reference/using-api/cel/Required'}
											String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_matchConditions_name {doc 'Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes A good name should be descriptive of the associated expression Name must be a qualified name consisting of alphanumeric characters, _-_, ___ or __, and must start and end with an alphanumeric character (eg _MyName_,  or _myname_,  or _123-abc_, regex used for validation is _([A-Za-z0-9][-A-Za-z0-9_]*)?[A-Za-z0-9]_) with an optional DNS subdomain prefix and _/_ (eg _examplecom/MyName_)Required'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_matchPolicy {doc 'matchPolicy defines how the rules list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhookDefaults to Equivalent'}
										alternative
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_matchPolicy_apps {doc 'Specific value: apps'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_matchPolicy_deployments {doc 'Specific value: deployments'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_matchPolicy_rules {doc 'Specific value: rules'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_matchPolicy_v1 {doc 'Specific value: v1'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_matchPolicy_Exact {doc 'Specific value: Exact'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_namespaceSelector {doc 'NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the webhookFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the webhook on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
										optional
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_objectSelector {doc 'ObjectSelector decides whether to run the webhook based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
										optional
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_reinvocationPolicy {doc 'reinvocationPolicy indicates whether this webhook should be called multiple times as part of a single admission evaluation Allowed values are Never and IfNeededNever: the webhook will not be called more than once in a single admission evaluationIfNeeded: the webhook will be called at least one additional time as part of the admission evaluation if the object being admitted is modified by other admission plugins after the initial webhook call Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted Note: * the number of additional invocations is not guaranteed to be exactly one * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked again * webhooks that use this option may be reordered to minimize the number of additional invocations * to validate an object after all mutations are guaranteed complete, use a validating admission webhook insteadDefaults to Never'}
										alternative
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_reinvocationPolicy_IfNeeded {doc 'Specific value: IfNeeded'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_reinvocationPolicy_Never {default, doc 'Specific value: Never'}
									io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_rules cardinality [1..*] {doc 'Rules describes what operations on what resources/subresources the webhook cares about The webhook cares about an operation if it matches _any_ Rule However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects'}
										mandatory
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_rules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_rules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_rules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_rules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_rules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_rules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_rules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_rules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_rules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
												alternative
													io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_rules_scope_Cluster {doc 'Specific value: Cluster'}
													io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_rules_scope_Namespaced {doc 'Specific value: Namespaced'}
													io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_rules_scope_estrella {default, doc 'Specific value: estrella'}
									Integer io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_timeoutSeconds {default 10, doc 'TimeoutSeconds specifies the timeout for this webhook After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy The timeout value must be between 1 and 30 seconds Default to 10 seconds'}
				optional
					String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_kind {default 'MutatingWebhookConfigurationList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_admissionregistration_v1_NamedRuleWithOperations {doc 'NamedRuleWithOperations is a tuple of Operations and Resources with ResourceNames'}
				mandatory
					io_k8s_api_admissionregistration_v1_NamedRuleWithOperations_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
						mandatory
							String io_k8s_api_admissionregistration_v1_NamedRuleWithOperations_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_admissionregistration_v1_NamedRuleWithOperations_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
						mandatory
							String io_k8s_api_admissionregistration_v1_NamedRuleWithOperations_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_admissionregistration_v1_NamedRuleWithOperations_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
						mandatory
							String io_k8s_api_admissionregistration_v1_NamedRuleWithOperations_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_admissionregistration_v1_NamedRuleWithOperations_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
						mandatory
							String io_k8s_api_admissionregistration_v1_NamedRuleWithOperations_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					io_k8s_api_admissionregistration_v1_NamedRuleWithOperations_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
						mandatory
							String io_k8s_api_admissionregistration_v1_NamedRuleWithOperations_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_admissionregistration_v1_NamedRuleWithOperations_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
						alternative
							io_k8s_api_admissionregistration_v1_NamedRuleWithOperations_scope_Cluster {doc 'Specific value: Cluster'}
							io_k8s_api_admissionregistration_v1_NamedRuleWithOperations_scope_Namespaced {doc 'Specific value: Namespaced'}
							io_k8s_api_admissionregistration_v1_NamedRuleWithOperations_scope_estrella {default, doc 'Specific value: estrella'}
			io_k8s_api_admissionregistration_v1_ParamKind {doc 'ParamKind is a tuple of Group Kind and Version'}
				mandatory
					String io_k8s_api_admissionregistration_v1_ParamKind_apiVersion {doc 'APIVersion is the API group version the resources belong to In format of group/version Required'}
					String io_k8s_api_admissionregistration_v1_ParamKind_kind {doc 'Kind is the API kind the resources belong to Required'}
			io_k8s_api_admissionregistration_v1_ParamRef {doc 'ParamRef describes how to locate the params to be used as input to expressions of rules applied by a policy binding'}
				optional
					io_k8s_api_admissionregistration_v1_ParamRef_name {abstract, doc 'name is the name of the resource being referencedOne of name or selector must be set, but name and selector are mutually exclusive properties If one is set, the other must be unsetA single parameter used for all admission requests can be configured by setting the name field, leaving selector blank, and setting namespace if paramKind is namespace-scoped'}
						mandatory
							String io_k8s_api_admissionregistration_v1_ParamRef_name_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
					String io_k8s_api_admissionregistration_v1_ParamRef_namespace {doc 'namespace is the namespace of the referenced resource Allows limiting the search for params to a specific namespace Applies to both name and selector fieldsA per-namespace parameter may be used by specifying a namespace-scoped paramKind in the policy and leaving this field empty- If paramKind is cluster-scoped, this field MUST be unset Setting this field results in a configuration error- If paramKind is namespace-scoped, the namespace of the object being evaluated for admission will be used when this field is left unset Take care that if this is left empty the binding must not match any cluster-scoped resources, which will result in an error'}
					io_k8s_api_admissionregistration_v1_ParamRef_parameterNotFoundAction {doc 'parameterNotFoundAction controls the behavior of the binding when the resource exists, and name or selector is valid, but there are no parameters matched by the binding If the value is set to Allow, then no matched parameters will be treated as successful validation by the binding If set to Deny, then no matched parameters will be subject to the failurePolicy of the policyAllowed values are Allow or DenyRequired'}
						alternative
							io_k8s_api_admissionregistration_v1_ParamRef_parameterNotFoundAction_Allow {doc 'Specific value: Allow'}
							io_k8s_api_admissionregistration_v1_ParamRef_parameterNotFoundAction_Deny {doc 'Specific value: Deny'}
					io_k8s_api_admissionregistration_v1_ParamRef_selector {doc 'selector can be used to match multiple param objects based on their labels Supply selector:  to match all resources of the ParamKindIf multiple params are found, they are all evaluated with the policy expressions and the results are ANDed togetherOne of name or selector must be set, but name and selector are mutually exclusive properties If one is set, the other must be unset'}
						optional
							io_k8s_api_admissionregistration_v1_ParamRef_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ParamRef_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_admissionregistration_v1_ParamRef_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_admissionregistration_v1_ParamRef_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_admissionregistration_v1_ParamRef_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_admissionregistration_v1_ParamRef_selector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_admissionregistration_v1_ParamRef_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_admissionregistration_v1_ParamRef_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ParamRef_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1_ParamRef_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ParamRef_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1_ParamRef_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
			io_k8s_api_admissionregistration_v1_RuleWithOperations {doc 'RuleWithOperations is a tuple of Operations and Resources It is recommended to make sure that all the tuple expansions are valid'}
				mandatory
					io_k8s_api_admissionregistration_v1_RuleWithOperations_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
						mandatory
							String io_k8s_api_admissionregistration_v1_RuleWithOperations_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_admissionregistration_v1_RuleWithOperations_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
						mandatory
							String io_k8s_api_admissionregistration_v1_RuleWithOperations_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_admissionregistration_v1_RuleWithOperations_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
						mandatory
							String io_k8s_api_admissionregistration_v1_RuleWithOperations_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_admissionregistration_v1_RuleWithOperations_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
						mandatory
							String io_k8s_api_admissionregistration_v1_RuleWithOperations_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					io_k8s_api_admissionregistration_v1_RuleWithOperations_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
						alternative
							io_k8s_api_admissionregistration_v1_RuleWithOperations_scope_Cluster {doc 'Specific value: Cluster'}
							io_k8s_api_admissionregistration_v1_RuleWithOperations_scope_Namespaced {doc 'Specific value: Namespaced'}
							io_k8s_api_admissionregistration_v1_RuleWithOperations_scope_estrella {default, doc 'Specific value: estrella'}
			io_k8s_api_admissionregistration_v1_ServiceReference {doc 'ServiceReference holds a reference to Servicelegacyk8sio'}
				mandatory
					String io_k8s_api_admissionregistration_v1_ServiceReference_name {doc 'name is the name of the service Required'}
					String io_k8s_api_admissionregistration_v1_ServiceReference_namespace {doc 'namespace is the namespace of the service Required'}
				optional
					String io_k8s_api_admissionregistration_v1_ServiceReference_path {doc 'path is an optional URL path which will be sent in any request to this service'}
					Integer io_k8s_api_admissionregistration_v1_ServiceReference_port {default 443, doc 'If specified, the port on the service that hosting webhook Default to 443 for backward compatibility port should be a valid port number (1-65535, inclusive)'}
			io_k8s_api_admissionregistration_v1_TypeChecking {doc 'TypeChecking contains results of type checking the expressions in the ValidatingAdmissionPolicy'}
				optional
					io_k8s_api_admissionregistration_v1_TypeChecking_expressionWarnings cardinality [1..*] {doc 'The type checking warnings for each expression'}
						mandatory
							String io_k8s_api_admissionregistration_v1_TypeChecking_expressionWarnings_fieldRef {doc 'The path to the field that refers the expression For example, the reference to the expression of the first item of validations is specvalidations[0]expression'}
							String io_k8s_api_admissionregistration_v1_TypeChecking_expressionWarnings_warning {doc 'The content of type checking information in a human-readable form Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler'}
			io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy {doc 'ValidatingAdmissionPolicy describes the definition of an admission validation policy that accepts or rejects an object without changing it'}
				optional
					String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_kind {default 'ValidatingAdmissionPolicy', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata {doc 'Standard object metadata; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec {doc 'Specification of the desired behavior of the ValidatingAdmissionPolicy'}
						mandatory
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints {doc 'MatchConstraints specifies what resources this policy is designed to validate The AdmissionPolicy cares about a request if it matches _all_ Constraints However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding Required'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules cardinality [1..*] {doc 'ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
										mandatory
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
												alternative
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_scope_Cluster {doc 'Specific value: Cluster'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_scope_estrella {default, doc 'Specific value: estrella'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy {doc 'matchPolicy defines how the MatchResources list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicyDefaults to Equivalent'}
										alternative
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy_apps {doc 'Specific value: apps'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy_MatchResources {doc 'Specific value: MatchResources'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy_deployments {doc 'Specific value: deployments'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy_rules {doc 'Specific value: rules'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy_v1 {doc 'Specific value: v1'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy_Exact {doc 'Specific value: Exact'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector {doc 'NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the policyFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the policy on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector {doc 'ObjectSelector decides whether to run the validation based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules cardinality [1..*] {doc 'ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches The policy cares about an operation if it matches _any_ Rule'}
										mandatory
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
												alternative
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_scope_Cluster {doc 'Specific value: Cluster'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_scope_estrella {default, doc 'Specific value: estrella'}
						optional
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_auditAnnotations cardinality [1..*] {doc 'auditAnnotations contains CEL expressions which are used to produce audit annotations for the audit event of the API request validations and auditAnnotations may not both be empty; a least one of validations or auditAnnotations is required'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_auditAnnotations_key {doc 'key specifies the audit annotation key The audit annotation keys of a ValidatingAdmissionPolicy must be unique The key must be a qualified name ([A-Za-z0-9][-A-Za-z0-9_]*) no more than 63 bytes in lengthThe key is combined with the resource name of the ValidatingAdmissionPolicy to construct an audit annotation key: ValidatingAdmissionPolicy name/keyIf an admission webhook uses the same resource name as this ValidatingAdmissionPolicy and the same audit annotation key, the annotation key will be identical In this case, the first annotation written with the key will be included in the audit event and all subsequent annotations with the same key will be discardedRequired'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_auditAnnotations_valueExpression {doc 'valueExpression represents the expression which is evaluated by CEL to produce an audit annotation value The expression must evaluate to either a string or null value If the expression evaluates to a string, the audit annotation is included with the string value If the expression evaluates to null or empty string the audit annotation will be omitted The valueExpression may be no longer than 5kb in length If the result of the valueExpression is more than 10kb in length, it will be truncated to 10kbIf multiple ValidatingAdmissionPolicyBinding resources match an API request, then the valueExpression will be evaluated for each binding All unique values produced by the valueExpressions will be joined together in a comma-separated listRequired'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_failurePolicy {doc 'failurePolicy defines how to handle failures for the admission policy Failures can occur from CEL expression parse errors, type check errors, runtime errors and invalid or mis-configured policy definitions or bindingsA policy is invalid if specparamKind refers to a non-existent Kind A binding is invalid if specparamRefname refers to a non-existent resourcefailurePolicy does not define how validations that evaluate to false are handledWhen failurePolicy is set to Fail, ValidatingAdmissionPolicyBinding validationActions define how failures are enforcedAllowed values are Ignore or Fail Defaults to Fail'}
								alternative
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_failurePolicy_Fail {default, doc 'Specific value: Fail'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_failurePolicy_Ignore {doc 'Specific value: Ignore'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConditions cardinality [1..*] {doc 'MatchConditions is a list of conditions that must be met for a request to be validated Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector An empty list of matchConditions matches all requests There are a maximum of 64 match conditions allowedIf a parameter object is provided, it can be accessed via the params handle in the same manner as validation expressionsThe exact matching logic is (in order):  1 If ANY matchCondition evaluates to FALSE, the policy is skipped  2 If ALL matchConditions evaluate to TRUE, the policy is evaluated  3 If any matchCondition evaluates to an error (but none are FALSE):     - If failurePolicy=Fail, reject the request     - If failurePolicy=Ignore, the policy is skipped'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConditions_expression {doc 'Expression represents the expression which will be evaluated by CEL Must evaluate to bool CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:_object_ - The object from the incoming request The value is null for DELETE requests _oldObject_ - The existing object The value is null for CREATE requests _request_ - Attributes of the admission request(/pkg/apis/admission/typesgo#AdmissionRequest) _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz_authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceDocumentation on CEL: https:_kubernetesio/docs/reference/using-api/cel/Required'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConditions_name {doc 'Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes A good name should be descriptive of the associated expression Name must be a qualified name consisting of alphanumeric characters, _-_, ___ or __, and must start and end with an alphanumeric character (eg _MyName_,  or _myname_,  or _123-abc_, regex used for validation is _([A-Za-z0-9][-A-Za-z0-9_]*)?[A-Za-z0-9]_) with an optional DNS subdomain prefix and _/_ (eg _examplecom/MyName_)Required'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_paramKind {doc 'ParamKind specifies the kind of resources used to parameterize this policy If absent, there are no parameters for this policy and the param CEL variable will not be provided to validation expressions If ParamKind refers to a non-existent kind, this policy definition is mis-configured and the FailurePolicy is applied If paramKind is specified but paramRef is unset in ValidatingAdmissionPolicyBinding, the params variable will be null'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_paramKind_apiVersion {doc 'APIVersion is the API group version the resources belong to In format of group/version Required'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_paramKind_kind {doc 'Kind is the API kind the resources belong to Required'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_validations cardinality [1..*] {doc 'Validations contain CEL expressions which is used to apply the validation Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is required'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_validations_expression {doc 'Expression represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:- _object_ - The object from the incoming request The value is null for DELETE requests - _oldObject_ - The existing object The value is null for CREATE requests - _request_ - Attributes of the API request([ref](/pkg/apis/admission/typesgo#AdmissionRequest)) - _params_ - Parameter resource referred to by the policy binding being evaluated Only populated if the policy has a ParamKind - _namespaceObject_ - The namespace object that the incoming object belongs to The value is null for cluster-scoped resources - _variables_ - Map of composited variables, from its name to its lazily evaluated value  For example, a variable named _foo_ can be accessed as _variablesfoo_- _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz- _authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceThe apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object No other metadata properties are accessibleOnly 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, returnExamples:  - Expression accessing a property named namespace: Expression: object__namespace__ > 0  - Expression accessing a property named x-prop: Expression: objectx__dash__prop > 0  - Expression accessing a property named redact__d: Expression: objectredact__underscores__d > 0Equality on arrays with list type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderRequired'}
								optional
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_validations_message {doc 'Message represents the message displayed when validation fails The message is required if the Expression contains line breaks The message must not contain line breaks If unset, the message is failed rule: Rule eg must be a URL with the host matching spechost If the Expression contains line breaks Message is required The message must not contain line breaks If unset, the message is failed Expression: Expression'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_validations_messageExpression {doc '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 validation, 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 expression except for _authorizer_ and _authorizerrequestResource_ Example: objectx must be less than max (+string(paramsmax)+)'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_validations_reason {doc 'Reason represents a machine-readable description of why this validation failed If this is the first validation in the list to fail, this reason, as well as the corresponding HTTP response code, are used in the HTTP response to the client The currently supported reasons are: Unauthorized, Forbidden, Invalid, RequestEntityTooLarge If not set, StatusReasonInvalid is used in the response to the client'}
										alternative
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_validations_reason_Unauthorized {doc 'Specific value: Unauthorized'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_validations_reason_Forbidden {doc 'Specific value: Forbidden'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_validations_reason_Invalid {doc 'Specific value: Invalid'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_validations_reason_RequestEntityTooLarge {doc 'Specific value: RequestEntityTooLarge'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_variables cardinality [1..*] {doc 'Variables contain definitions of variables that can be used in composition of other expressions Each variable is defined as a named CEL expression The variables defined here will be available under variables in other expressions of the policy except MatchConditions because MatchConditions are evaluated before the rest of the policyThe expression of a variable can refer to other variables defined earlier in the list but not those after Thus, Variables must be sorted by the order of first appearance and acyclic'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_variables_expression {doc 'Expression is the expression that will be evaluated as the value of the variable The CEL expression has access to the same identifiers as the CEL expressions in Validation'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_variables_name {doc 'Name is the name of the variable The name must be a valid CEL identifier and unique among all variables The variable can be accessed in other expressions through variables For example, if name is foo, the variable will be available as variablesfoo'}
					io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_status {doc 'The status of the ValidatingAdmissionPolicy, including warnings that are useful to determine if the policy behaves in the expected way Populated by the system Read-only'}
						optional
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_status_conditions cardinality [1..*] {doc 'The conditions represent the latest available observations of a policy_s current state'}
								mandatory
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another This should be when the underlying condition changed  If that is not known, then using the time when the API field changed is acceptable'}
										optional
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_status_conditions_message {doc 'message is a human readable message indicating details about the transition This may be an empty string'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_status_conditions_reason {doc 'reason contains a programmatic identifier indicating the reason for the condition_s last transition Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API The value should be a CamelCase string This field may not be empty'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_status_conditions_status {doc 'status of the condition, one of True, False, Unknown'}
										alternative
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_status_conditions_status_True {doc 'Specific value: True'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_status_conditions_type {doc 'type of condition in CamelCase or in fooexamplecom/CamelCase'}
								optional
									Integer io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_status_conditions_observedGeneration {doc 'observedGeneration represents the metadatageneration that the condition was set based upon For instance, if metadatageneration is currently 12, but the statusconditions[x]observedGeneration is 9, the condition is out of date with respect to the current state of the instance'}
							Integer io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_status_observedGeneration {doc 'The generation observed by the controller'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_status_typeChecking {doc 'The results of type checking for each expression Presence of this field indicates the completion of the type checking'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_status_typeChecking_expressionWarnings cardinality [1..*] {doc 'The type checking warnings for each expression'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_status_typeChecking_expressionWarnings_fieldRef {doc 'The path to the field that refers the expression For example, the reference to the expression of the first item of validations is specvalidations[0]expression'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_status_typeChecking_expressionWarnings_warning {doc 'The content of type checking information in a human-readable form Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler'}
			io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding {doc 'ValidatingAdmissionPolicyBinding binds the ValidatingAdmissionPolicy with paramerized resources ValidatingAdmissionPolicyBinding and parameter CRDs together define how cluster administrators configure policies for clustersFor a given admission request, each binding will cause its policy to be evaluated N times, where N is 1 for policies/bindings that don_t use params, otherwise N is the number of parameters selected by the bindingThe CEL expressions of a policy must have a computed CEL cost below the maximum CEL budget Each evaluation of the policy is given an independent CEL cost budget Adding/removing policies, bindings, or params can not affect whether a given (policy, binding, param) combination is within its own CEL budget'}
				optional
					String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_kind {default 'ValidatingAdmissionPolicyBinding', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata {doc 'Standard object metadata; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec {doc 'Specification of the desired behavior of the ValidatingAdmissionPolicyBinding'}
						mandatory
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_policyName {doc 'PolicyName references a ValidatingAdmissionPolicy name which the ValidatingAdmissionPolicyBinding binds to If the referenced resource does not exist, this binding is considered invalid and will be ignored Required'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_validationActions cardinality [1..*] {doc 'validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced If a validation evaluates to false it is always enforced according to these actionsFailures defined by the ValidatingAdmissionPolicy_s FailurePolicy are enforced according to these actions only if the FailurePolicy is set to Fail, otherwise the failures are ignored This includes compilation errors, runtime errors and misconfigurations of the policyvalidationActions is declared as a set of action values Order does not matter validationActions may not contain duplicates of the same actionThe supported actions values are:Deny specifies that a validation failure results in a denied requestWarn specifies that a validation failure is reported to the request client in HTTP Warning headers, with a warning code of 299 Warnings can be sent both for allowed or denied admission responsesAudit specifies that a validation failure is included in the published audit event for the request The audit event will contain a validationpolicyadmissionk8sio/validation_failure audit annotation with a value containing the details of the validation failures, formatted as a JSON list of objects, each with the following fields: - message: The validation failure message string - policy: The resource name of the ValidatingAdmissionPolicy - binding: The resource name of the ValidatingAdmissionPolicyBinding - expressionIndex: The index of the failed validations in the ValidatingAdmissionPolicy - validationActions: The enforcement actions enacted for the validation failure Example audit annotation: validationpolicyadmissionk8sio/validation_failure: [message: Invalid value, policy: policyexamplecom, binding: policybindingexamplecom, expressionIndex: 1, validationActions: [Audit]]Clients should expect to handle additional values by ignoring any values not recognizedDeny and Warn may not be used together since this combination needlessly duplicates the validation failure both in the API response body and the HTTP warning headersRequired'}
								alternative
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_validationActions_Audit {doc 'Specific value: Audit'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_validationActions_expressionIndex {doc 'Specific value: expressionIndex'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_validationActions_policy {doc 'Specific value: policy'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_validationActions_Warn {doc 'Specific value: Warn'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_validationActions_message {doc 'Specific value: message'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_validationActions_Deny {doc 'Specific value: Deny'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_validationActions_validationActions {doc 'Specific value: validationActions'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_validationActions_binding {doc 'Specific value: binding'}
						optional
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources {doc 'MatchResources declares what resources match this binding and will be validated by it Note that this is intersected with the policy_s matchConstraints, so only requests that are matched by the policy can be selected by this If this is unset, all resources matched by the policy are validated by this binding When resourceRules is unset, it does not constrain resource matching If a resource is matched by the other fields of this object, it will be validated Note that this is differs from ValidatingAdmissionPolicy matchConstraints, where resourceRules are required'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules cardinality [1..*] {doc 'ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
										mandatory
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
												alternative
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_scope_Cluster {doc 'Specific value: Cluster'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_scope_estrella {default, doc 'Specific value: estrella'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy {doc 'matchPolicy defines how the MatchResources list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicyDefaults to Equivalent'}
										alternative
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy_apps {doc 'Specific value: apps'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy_MatchResources {doc 'Specific value: MatchResources'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy_deployments {doc 'Specific value: deployments'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy_rules {doc 'Specific value: rules'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy_v1 {doc 'Specific value: v1'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy_Exact {doc 'Specific value: Exact'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector {doc 'NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the policyFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the policy on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector {doc 'ObjectSelector decides whether to run the validation based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules cardinality [1..*] {doc 'ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches The policy cares about an operation if it matches _any_ Rule'}
										mandatory
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
												alternative
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_scope_Cluster {doc 'Specific value: Cluster'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_scope_estrella {default, doc 'Specific value: estrella'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef {doc 'paramRef specifies the parameter resource used to configure the admission control policy It should point to a resource of the type specified in ParamKind of the bound ValidatingAdmissionPolicy If the policy specifies a ParamKind and the resource referred to by ParamRef does not exist, this binding is considered mis-configured and the FailurePolicy of the ValidatingAdmissionPolicy applied If the policy does not specify a ParamKind then this field is ignored, and the rules are evaluated without a param'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_name {abstract, doc 'name is the name of the resource being referencedOne of name or selector must be set, but name and selector are mutually exclusive properties If one is set, the other must be unsetA single parameter used for all admission requests can be configured by setting the name field, leaving selector blank, and setting namespace if paramKind is namespace-scoped'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_name_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_namespace {doc 'namespace is the namespace of the referenced resource Allows limiting the search for params to a specific namespace Applies to both name and selector fieldsA per-namespace parameter may be used by specifying a namespace-scoped paramKind in the policy and leaving this field empty- If paramKind is cluster-scoped, this field MUST be unset Setting this field results in a configuration error- If paramKind is namespace-scoped, the namespace of the object being evaluated for admission will be used when this field is left unset Take care that if this is left empty the binding must not match any cluster-scoped resources, which will result in an error'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_parameterNotFoundAction {doc 'parameterNotFoundAction controls the behavior of the binding when the resource exists, and name or selector is valid, but there are no parameters matched by the binding If the value is set to Allow, then no matched parameters will be treated as successful validation by the binding If set to Deny, then no matched parameters will be subject to the failurePolicy of the policyAllowed values are Allow or DenyRequired'}
										alternative
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_parameterNotFoundAction_Allow {doc 'Specific value: Allow'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_parameterNotFoundAction_Deny {doc 'Specific value: Deny'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector {doc 'selector can be used to match multiple param objects based on their labels Supply selector:  to match all resources of the ParamKindIf multiple params are found, they are all evaluated with the policy expressions and the results are ANDed togetherOne of name or selector must be set, but name and selector are mutually exclusive properties If one is set, the other must be unset'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
			io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList {doc 'ValidatingAdmissionPolicyBindingList is a list of ValidatingAdmissionPolicyBinding'}
				optional
					String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items cardinality [1..*] {doc 'List of PolicyBinding'}
						optional
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_kind {default 'ValidatingAdmissionPolicyBinding', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata {doc 'Standard object metadata; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec {doc 'Specification of the desired behavior of the ValidatingAdmissionPolicyBinding'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_policyName {doc 'PolicyName references a ValidatingAdmissionPolicy name which the ValidatingAdmissionPolicyBinding binds to If the referenced resource does not exist, this binding is considered invalid and will be ignored Required'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions cardinality [1..*] {doc 'validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced If a validation evaluates to false it is always enforced according to these actionsFailures defined by the ValidatingAdmissionPolicy_s FailurePolicy are enforced according to these actions only if the FailurePolicy is set to Fail, otherwise the failures are ignored This includes compilation errors, runtime errors and misconfigurations of the policyvalidationActions is declared as a set of action values Order does not matter validationActions may not contain duplicates of the same actionThe supported actions values are:Deny specifies that a validation failure results in a denied requestWarn specifies that a validation failure is reported to the request client in HTTP Warning headers, with a warning code of 299 Warnings can be sent both for allowed or denied admission responsesAudit specifies that a validation failure is included in the published audit event for the request The audit event will contain a validationpolicyadmissionk8sio/validation_failure audit annotation with a value containing the details of the validation failures, formatted as a JSON list of objects, each with the following fields: - message: The validation failure message string - policy: The resource name of the ValidatingAdmissionPolicy - binding: The resource name of the ValidatingAdmissionPolicyBinding - expressionIndex: The index of the failed validations in the ValidatingAdmissionPolicy - validationActions: The enforcement actions enacted for the validation failure Example audit annotation: validationpolicyadmissionk8sio/validation_failure: [message: Invalid value, policy: policyexamplecom, binding: policybindingexamplecom, expressionIndex: 1, validationActions: [Audit]]Clients should expect to handle additional values by ignoring any values not recognizedDeny and Warn may not be used together since this combination needlessly duplicates the validation failure both in the API response body and the HTTP warning headersRequired'}
										alternative
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_Audit {doc 'Specific value: Audit'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_expressionIndex {doc 'Specific value: expressionIndex'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_policy {doc 'Specific value: policy'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_Warn {doc 'Specific value: Warn'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_message {doc 'Specific value: message'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_Deny {doc 'Specific value: Deny'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_validationActions {doc 'Specific value: validationActions'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_binding {doc 'Specific value: binding'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources {doc 'MatchResources declares what resources match this binding and will be validated by it Note that this is intersected with the policy_s matchConstraints, so only requests that are matched by the policy can be selected by this If this is unset, all resources matched by the policy are validated by this binding When resourceRules is unset, it does not constrain resource matching If a resource is matched by the other fields of this object, it will be validated Note that this is differs from ValidatingAdmissionPolicy matchConstraints, where resourceRules are required'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules cardinality [1..*] {doc 'ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
												mandatory
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
														alternative
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_scope_Cluster {doc 'Specific value: Cluster'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_scope_estrella {default, doc 'Specific value: estrella'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy {doc 'matchPolicy defines how the MatchResources list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicyDefaults to Equivalent'}
												alternative
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy_apps {doc 'Specific value: apps'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy_MatchResources {doc 'Specific value: MatchResources'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy_deployments {doc 'Specific value: deployments'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy_rules {doc 'Specific value: rules'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy_v1 {doc 'Specific value: v1'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy_Exact {doc 'Specific value: Exact'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector {doc 'NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the policyFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the policy on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
												optional
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector {doc 'ObjectSelector decides whether to run the validation based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
												optional
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules cardinality [1..*] {doc 'ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches The policy cares about an operation if it matches _any_ Rule'}
												mandatory
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
														alternative
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_scope_Cluster {doc 'Specific value: Cluster'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_scope_estrella {default, doc 'Specific value: estrella'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef {doc 'paramRef specifies the parameter resource used to configure the admission control policy It should point to a resource of the type specified in ParamKind of the bound ValidatingAdmissionPolicy If the policy specifies a ParamKind and the resource referred to by ParamRef does not exist, this binding is considered mis-configured and the FailurePolicy of the ValidatingAdmissionPolicy applied If the policy does not specify a ParamKind then this field is ignored, and the rules are evaluated without a param'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_name {abstract, doc 'name is the name of the resource being referencedOne of name or selector must be set, but name and selector are mutually exclusive properties If one is set, the other must be unsetA single parameter used for all admission requests can be configured by setting the name field, leaving selector blank, and setting namespace if paramKind is namespace-scoped'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_name_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_namespace {doc 'namespace is the namespace of the referenced resource Allows limiting the search for params to a specific namespace Applies to both name and selector fieldsA per-namespace parameter may be used by specifying a namespace-scoped paramKind in the policy and leaving this field empty- If paramKind is cluster-scoped, this field MUST be unset Setting this field results in a configuration error- If paramKind is namespace-scoped, the namespace of the object being evaluated for admission will be used when this field is left unset Take care that if this is left empty the binding must not match any cluster-scoped resources, which will result in an error'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_parameterNotFoundAction {doc 'parameterNotFoundAction controls the behavior of the binding when the resource exists, and name or selector is valid, but there are no parameters matched by the binding If the value is set to Allow, then no matched parameters will be treated as successful validation by the binding If set to Deny, then no matched parameters will be subject to the failurePolicy of the policyAllowed values are Allow or DenyRequired'}
												alternative
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_parameterNotFoundAction_Allow {doc 'Specific value: Allow'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_parameterNotFoundAction_Deny {doc 'Specific value: Deny'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector {doc 'selector can be used to match multiple param objects based on their labels Supply selector:  to match all resources of the ParamKindIf multiple params are found, they are all evaluated with the policy expressions and the results are ANDed togetherOne of name or selector must be set, but name and selector are mutually exclusive properties If one is set, the other must be unset'}
												optional
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_kind {default 'ValidatingAdmissionPolicyBindingList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec {doc 'ValidatingAdmissionPolicyBindingSpec is the specification of the ValidatingAdmissionPolicyBinding'}
				mandatory
					String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_policyName {doc 'PolicyName references a ValidatingAdmissionPolicy name which the ValidatingAdmissionPolicyBinding binds to If the referenced resource does not exist, this binding is considered invalid and will be ignored Required'}
					io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_validationActions cardinality [1..*] {doc 'validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced If a validation evaluates to false it is always enforced according to these actionsFailures defined by the ValidatingAdmissionPolicy_s FailurePolicy are enforced according to these actions only if the FailurePolicy is set to Fail, otherwise the failures are ignored This includes compilation errors, runtime errors and misconfigurations of the policyvalidationActions is declared as a set of action values Order does not matter validationActions may not contain duplicates of the same actionThe supported actions values are:Deny specifies that a validation failure results in a denied requestWarn specifies that a validation failure is reported to the request client in HTTP Warning headers, with a warning code of 299 Warnings can be sent both for allowed or denied admission responsesAudit specifies that a validation failure is included in the published audit event for the request The audit event will contain a validationpolicyadmissionk8sio/validation_failure audit annotation with a value containing the details of the validation failures, formatted as a JSON list of objects, each with the following fields: - message: The validation failure message string - policy: The resource name of the ValidatingAdmissionPolicy - binding: The resource name of the ValidatingAdmissionPolicyBinding - expressionIndex: The index of the failed validations in the ValidatingAdmissionPolicy - validationActions: The enforcement actions enacted for the validation failure Example audit annotation: validationpolicyadmissionk8sio/validation_failure: [message: Invalid value, policy: policyexamplecom, binding: policybindingexamplecom, expressionIndex: 1, validationActions: [Audit]]Clients should expect to handle additional values by ignoring any values not recognizedDeny and Warn may not be used together since this combination needlessly duplicates the validation failure both in the API response body and the HTTP warning headersRequired'}
						alternative
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_validationActions_Audit {doc 'Specific value: Audit'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_validationActions_expressionIndex {doc 'Specific value: expressionIndex'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_validationActions_policy {doc 'Specific value: policy'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_validationActions_Warn {doc 'Specific value: Warn'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_validationActions_message {doc 'Specific value: message'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_validationActions_Deny {doc 'Specific value: Deny'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_validationActions_validationActions {doc 'Specific value: validationActions'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_validationActions_binding {doc 'Specific value: binding'}
				optional
					io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources {doc 'MatchResources declares what resources match this binding and will be validated by it Note that this is intersected with the policy_s matchConstraints, so only requests that are matched by the policy can be selected by this If this is unset, all resources matched by the policy are validated by this binding When resourceRules is unset, it does not constrain resource matching If a resource is matched by the other fields of this object, it will be validated Note that this is differs from ValidatingAdmissionPolicy matchConstraints, where resourceRules are required'}
						optional
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules cardinality [1..*] {doc 'ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
								mandatory
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
										alternative
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_scope_Cluster {doc 'Specific value: Cluster'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_scope_estrella {default, doc 'Specific value: estrella'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy {doc 'matchPolicy defines how the MatchResources list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicyDefaults to Equivalent'}
								alternative
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy_apps {doc 'Specific value: apps'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy_MatchResources {doc 'Specific value: MatchResources'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy_deployments {doc 'Specific value: deployments'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy_rules {doc 'Specific value: rules'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy_v1 {doc 'Specific value: v1'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy_Exact {doc 'Specific value: Exact'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector {doc 'NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the policyFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the policy on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector {doc 'ObjectSelector decides whether to run the validation based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules cardinality [1..*] {doc 'ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches The policy cares about an operation if it matches _any_ Rule'}
								mandatory
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
										alternative
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_scope_Cluster {doc 'Specific value: Cluster'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_scope_estrella {default, doc 'Specific value: estrella'}
					io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef {doc 'paramRef specifies the parameter resource used to configure the admission control policy It should point to a resource of the type specified in ParamKind of the bound ValidatingAdmissionPolicy If the policy specifies a ParamKind and the resource referred to by ParamRef does not exist, this binding is considered mis-configured and the FailurePolicy of the ValidatingAdmissionPolicy applied If the policy does not specify a ParamKind then this field is ignored, and the rules are evaluated without a param'}
						optional
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_name {abstract, doc 'name is the name of the resource being referencedOne of name or selector must be set, but name and selector are mutually exclusive properties If one is set, the other must be unsetA single parameter used for all admission requests can be configured by setting the name field, leaving selector blank, and setting namespace if paramKind is namespace-scoped'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_name_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_namespace {doc 'namespace is the namespace of the referenced resource Allows limiting the search for params to a specific namespace Applies to both name and selector fieldsA per-namespace parameter may be used by specifying a namespace-scoped paramKind in the policy and leaving this field empty- If paramKind is cluster-scoped, this field MUST be unset Setting this field results in a configuration error- If paramKind is namespace-scoped, the namespace of the object being evaluated for admission will be used when this field is left unset Take care that if this is left empty the binding must not match any cluster-scoped resources, which will result in an error'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_parameterNotFoundAction {doc 'parameterNotFoundAction controls the behavior of the binding when the resource exists, and name or selector is valid, but there are no parameters matched by the binding If the value is set to Allow, then no matched parameters will be treated as successful validation by the binding If set to Deny, then no matched parameters will be subject to the failurePolicy of the policyAllowed values are Allow or DenyRequired'}
								alternative
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_parameterNotFoundAction_Allow {doc 'Specific value: Allow'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_parameterNotFoundAction_Deny {doc 'Specific value: Deny'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector {doc 'selector can be used to match multiple param objects based on their labels Supply selector:  to match all resources of the ParamKindIf multiple params are found, they are all evaluated with the policy expressions and the results are ANDed togetherOne of name or selector must be set, but name and selector are mutually exclusive properties If one is set, the other must be unset'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
			io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList {doc 'ValidatingAdmissionPolicyList is a list of ValidatingAdmissionPolicy'}
				optional
					String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items cardinality [1..*] {doc 'List of ValidatingAdmissionPolicy'}
						optional
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_kind {default 'ValidatingAdmissionPolicy', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata {doc 'Standard object metadata; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec {doc 'Specification of the desired behavior of the ValidatingAdmissionPolicy'}
								mandatory
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints {doc 'MatchConstraints specifies what resources this policy is designed to validate The AdmissionPolicy cares about a request if it matches _all_ Constraints However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding Required'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules cardinality [1..*] {doc 'ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
												mandatory
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
														alternative
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_scope_Cluster {doc 'Specific value: Cluster'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_scope_estrella {default, doc 'Specific value: estrella'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy {doc 'matchPolicy defines how the MatchResources list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicyDefaults to Equivalent'}
												alternative
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy_apps {doc 'Specific value: apps'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy_MatchResources {doc 'Specific value: MatchResources'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy_deployments {doc 'Specific value: deployments'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy_rules {doc 'Specific value: rules'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy_v1 {doc 'Specific value: v1'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy_Exact {doc 'Specific value: Exact'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector {doc 'NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the policyFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the policy on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
												optional
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector {doc 'ObjectSelector decides whether to run the validation based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
												optional
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules cardinality [1..*] {doc 'ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches The policy cares about an operation if it matches _any_ Rule'}
												mandatory
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
														alternative
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_scope_Cluster {doc 'Specific value: Cluster'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
															io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_scope_estrella {default, doc 'Specific value: estrella'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_auditAnnotations cardinality [1..*] {doc 'auditAnnotations contains CEL expressions which are used to produce audit annotations for the audit event of the API request validations and auditAnnotations may not both be empty; a least one of validations or auditAnnotations is required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_auditAnnotations_key {doc 'key specifies the audit annotation key The audit annotation keys of a ValidatingAdmissionPolicy must be unique The key must be a qualified name ([A-Za-z0-9][-A-Za-z0-9_]*) no more than 63 bytes in lengthThe key is combined with the resource name of the ValidatingAdmissionPolicy to construct an audit annotation key: ValidatingAdmissionPolicy name/keyIf an admission webhook uses the same resource name as this ValidatingAdmissionPolicy and the same audit annotation key, the annotation key will be identical In this case, the first annotation written with the key will be included in the audit event and all subsequent annotations with the same key will be discardedRequired'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_auditAnnotations_valueExpression {doc 'valueExpression represents the expression which is evaluated by CEL to produce an audit annotation value The expression must evaluate to either a string or null value If the expression evaluates to a string, the audit annotation is included with the string value If the expression evaluates to null or empty string the audit annotation will be omitted The valueExpression may be no longer than 5kb in length If the result of the valueExpression is more than 10kb in length, it will be truncated to 10kbIf multiple ValidatingAdmissionPolicyBinding resources match an API request, then the valueExpression will be evaluated for each binding All unique values produced by the valueExpressions will be joined together in a comma-separated listRequired'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_failurePolicy {doc 'failurePolicy defines how to handle failures for the admission policy Failures can occur from CEL expression parse errors, type check errors, runtime errors and invalid or mis-configured policy definitions or bindingsA policy is invalid if specparamKind refers to a non-existent Kind A binding is invalid if specparamRefname refers to a non-existent resourcefailurePolicy does not define how validations that evaluate to false are handledWhen failurePolicy is set to Fail, ValidatingAdmissionPolicyBinding validationActions define how failures are enforcedAllowed values are Ignore or Fail Defaults to Fail'}
										alternative
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_failurePolicy_Fail {default, doc 'Specific value: Fail'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_failurePolicy_Ignore {doc 'Specific value: Ignore'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConditions cardinality [1..*] {doc 'MatchConditions is a list of conditions that must be met for a request to be validated Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector An empty list of matchConditions matches all requests There are a maximum of 64 match conditions allowedIf a parameter object is provided, it can be accessed via the params handle in the same manner as validation expressionsThe exact matching logic is (in order):  1 If ANY matchCondition evaluates to FALSE, the policy is skipped  2 If ALL matchConditions evaluate to TRUE, the policy is evaluated  3 If any matchCondition evaluates to an error (but none are FALSE):     - If failurePolicy=Fail, reject the request     - If failurePolicy=Ignore, the policy is skipped'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConditions_expression {doc 'Expression represents the expression which will be evaluated by CEL Must evaluate to bool CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:_object_ - The object from the incoming request The value is null for DELETE requests _oldObject_ - The existing object The value is null for CREATE requests _request_ - Attributes of the admission request(/pkg/apis/admission/typesgo#AdmissionRequest) _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz_authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceDocumentation on CEL: https:_kubernetesio/docs/reference/using-api/cel/Required'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConditions_name {doc 'Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes A good name should be descriptive of the associated expression Name must be a qualified name consisting of alphanumeric characters, _-_, ___ or __, and must start and end with an alphanumeric character (eg _MyName_,  or _myname_,  or _123-abc_, regex used for validation is _([A-Za-z0-9][-A-Za-z0-9_]*)?[A-Za-z0-9]_) with an optional DNS subdomain prefix and _/_ (eg _examplecom/MyName_)Required'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_paramKind {doc 'ParamKind specifies the kind of resources used to parameterize this policy If absent, there are no parameters for this policy and the param CEL variable will not be provided to validation expressions If ParamKind refers to a non-existent kind, this policy definition is mis-configured and the FailurePolicy is applied If paramKind is specified but paramRef is unset in ValidatingAdmissionPolicyBinding, the params variable will be null'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_paramKind_apiVersion {doc 'APIVersion is the API group version the resources belong to In format of group/version Required'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_paramKind_kind {doc 'Kind is the API kind the resources belong to Required'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_validations cardinality [1..*] {doc 'Validations contain CEL expressions which is used to apply the validation Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_validations_expression {doc 'Expression represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:- _object_ - The object from the incoming request The value is null for DELETE requests - _oldObject_ - The existing object The value is null for CREATE requests - _request_ - Attributes of the API request([ref](/pkg/apis/admission/typesgo#AdmissionRequest)) - _params_ - Parameter resource referred to by the policy binding being evaluated Only populated if the policy has a ParamKind - _namespaceObject_ - The namespace object that the incoming object belongs to The value is null for cluster-scoped resources - _variables_ - Map of composited variables, from its name to its lazily evaluated value  For example, a variable named _foo_ can be accessed as _variablesfoo_- _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz- _authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceThe apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object No other metadata properties are accessibleOnly 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, returnExamples:  - Expression accessing a property named namespace: Expression: object__namespace__ > 0  - Expression accessing a property named x-prop: Expression: objectx__dash__prop > 0  - Expression accessing a property named redact__d: Expression: objectredact__underscores__d > 0Equality on arrays with list type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderRequired'}
										optional
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_validations_message {doc 'Message represents the message displayed when validation fails The message is required if the Expression contains line breaks The message must not contain line breaks If unset, the message is failed rule: Rule eg must be a URL with the host matching spechost If the Expression contains line breaks Message is required The message must not contain line breaks If unset, the message is failed Expression: Expression'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_validations_messageExpression {doc '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 validation, 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 expression except for _authorizer_ and _authorizerrequestResource_ Example: objectx must be less than max (+string(paramsmax)+)'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_validations_reason {doc 'Reason represents a machine-readable description of why this validation failed If this is the first validation in the list to fail, this reason, as well as the corresponding HTTP response code, are used in the HTTP response to the client The currently supported reasons are: Unauthorized, Forbidden, Invalid, RequestEntityTooLarge If not set, StatusReasonInvalid is used in the response to the client'}
												alternative
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_validations_reason_Unauthorized {doc 'Specific value: Unauthorized'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_validations_reason_Forbidden {doc 'Specific value: Forbidden'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_validations_reason_Invalid {doc 'Specific value: Invalid'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_validations_reason_RequestEntityTooLarge {doc 'Specific value: RequestEntityTooLarge'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_variables cardinality [1..*] {doc 'Variables contain definitions of variables that can be used in composition of other expressions Each variable is defined as a named CEL expression The variables defined here will be available under variables in other expressions of the policy except MatchConditions because MatchConditions are evaluated before the rest of the policyThe expression of a variable can refer to other variables defined earlier in the list but not those after Thus, Variables must be sorted by the order of first appearance and acyclic'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_variables_expression {doc 'Expression is the expression that will be evaluated as the value of the variable The CEL expression has access to the same identifiers as the CEL expressions in Validation'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_variables_name {doc 'Name is the name of the variable The name must be a valid CEL identifier and unique among all variables The variable can be accessed in other expressions through variables For example, if name is foo, the variable will be available as variablesfoo'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_status {doc 'The status of the ValidatingAdmissionPolicy, including warnings that are useful to determine if the policy behaves in the expected way Populated by the system Read-only'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_status_conditions cardinality [1..*] {doc 'The conditions represent the latest available observations of a policy_s current state'}
										mandatory
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another This should be when the underlying condition changed  If that is not known, then using the time when the API field changed is acceptable'}
												optional
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_status_conditions_message {doc 'message is a human readable message indicating details about the transition This may be an empty string'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_status_conditions_reason {doc 'reason contains a programmatic identifier indicating the reason for the condition_s last transition Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API The value should be a CamelCase string This field may not be empty'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_status_conditions_status {doc 'status of the condition, one of True, False, Unknown'}
												alternative
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_status_conditions_status_True {doc 'Specific value: True'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_status_conditions_type {doc 'type of condition in CamelCase or in fooexamplecom/CamelCase'}
										optional
											Integer io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_status_conditions_observedGeneration {doc 'observedGeneration represents the metadatageneration that the condition was set based upon For instance, if metadatageneration is currently 12, but the statusconditions[x]observedGeneration is 9, the condition is out of date with respect to the current state of the instance'}
									Integer io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_status_observedGeneration {doc 'The generation observed by the controller'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_status_typeChecking {doc 'The results of type checking for each expression Presence of this field indicates the completion of the type checking'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_status_typeChecking_expressionWarnings cardinality [1..*] {doc 'The type checking warnings for each expression'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_status_typeChecking_expressionWarnings_fieldRef {doc 'The path to the field that refers the expression For example, the reference to the expression of the first item of validations is specvalidations[0]expression'}
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_status_typeChecking_expressionWarnings_warning {doc 'The content of type checking information in a human-readable form Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler'}
					String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_kind {default 'ValidatingAdmissionPolicyList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec {doc 'ValidatingAdmissionPolicySpec is the specification of the desired behavior of the AdmissionPolicy'}
				mandatory
					io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints {doc 'MatchConstraints specifies what resources this policy is designed to validate The AdmissionPolicy cares about a request if it matches _all_ Constraints However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding Required'}
						optional
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules cardinality [1..*] {doc 'ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
								mandatory
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
										alternative
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_scope_Cluster {doc 'Specific value: Cluster'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_scope_estrella {default, doc 'Specific value: estrella'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy {doc 'matchPolicy defines how the MatchResources list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicyDefaults to Equivalent'}
								alternative
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy_apps {doc 'Specific value: apps'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy_MatchResources {doc 'Specific value: MatchResources'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy_deployments {doc 'Specific value: deployments'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy_rules {doc 'Specific value: rules'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy_v1 {doc 'Specific value: v1'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy_Exact {doc 'Specific value: Exact'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector {doc 'NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the policyFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the policy on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector {doc 'ObjectSelector decides whether to run the validation based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules cardinality [1..*] {doc 'ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches The policy cares about an operation if it matches _any_ Rule'}
								mandatory
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
										alternative
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_scope_Cluster {doc 'Specific value: Cluster'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
											io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_scope_estrella {default, doc 'Specific value: estrella'}
				optional
					io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_auditAnnotations cardinality [1..*] {doc 'auditAnnotations contains CEL expressions which are used to produce audit annotations for the audit event of the API request validations and auditAnnotations may not both be empty; a least one of validations or auditAnnotations is required'}
						mandatory
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_auditAnnotations_key {doc 'key specifies the audit annotation key The audit annotation keys of a ValidatingAdmissionPolicy must be unique The key must be a qualified name ([A-Za-z0-9][-A-Za-z0-9_]*) no more than 63 bytes in lengthThe key is combined with the resource name of the ValidatingAdmissionPolicy to construct an audit annotation key: ValidatingAdmissionPolicy name/keyIf an admission webhook uses the same resource name as this ValidatingAdmissionPolicy and the same audit annotation key, the annotation key will be identical In this case, the first annotation written with the key will be included in the audit event and all subsequent annotations with the same key will be discardedRequired'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_auditAnnotations_valueExpression {doc 'valueExpression represents the expression which is evaluated by CEL to produce an audit annotation value The expression must evaluate to either a string or null value If the expression evaluates to a string, the audit annotation is included with the string value If the expression evaluates to null or empty string the audit annotation will be omitted The valueExpression may be no longer than 5kb in length If the result of the valueExpression is more than 10kb in length, it will be truncated to 10kbIf multiple ValidatingAdmissionPolicyBinding resources match an API request, then the valueExpression will be evaluated for each binding All unique values produced by the valueExpressions will be joined together in a comma-separated listRequired'}
					io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_failurePolicy {doc 'failurePolicy defines how to handle failures for the admission policy Failures can occur from CEL expression parse errors, type check errors, runtime errors and invalid or mis-configured policy definitions or bindingsA policy is invalid if specparamKind refers to a non-existent Kind A binding is invalid if specparamRefname refers to a non-existent resourcefailurePolicy does not define how validations that evaluate to false are handledWhen failurePolicy is set to Fail, ValidatingAdmissionPolicyBinding validationActions define how failures are enforcedAllowed values are Ignore or Fail Defaults to Fail'}
						alternative
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_failurePolicy_Fail {default, doc 'Specific value: Fail'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_failurePolicy_Ignore {doc 'Specific value: Ignore'}
					io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConditions cardinality [1..*] {doc 'MatchConditions is a list of conditions that must be met for a request to be validated Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector An empty list of matchConditions matches all requests There are a maximum of 64 match conditions allowedIf a parameter object is provided, it can be accessed via the params handle in the same manner as validation expressionsThe exact matching logic is (in order):  1 If ANY matchCondition evaluates to FALSE, the policy is skipped  2 If ALL matchConditions evaluate to TRUE, the policy is evaluated  3 If any matchCondition evaluates to an error (but none are FALSE):     - If failurePolicy=Fail, reject the request     - If failurePolicy=Ignore, the policy is skipped'}
						mandatory
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConditions_expression {doc 'Expression represents the expression which will be evaluated by CEL Must evaluate to bool CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:_object_ - The object from the incoming request The value is null for DELETE requests _oldObject_ - The existing object The value is null for CREATE requests _request_ - Attributes of the admission request(/pkg/apis/admission/typesgo#AdmissionRequest) _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz_authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceDocumentation on CEL: https:_kubernetesio/docs/reference/using-api/cel/Required'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConditions_name {doc 'Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes A good name should be descriptive of the associated expression Name must be a qualified name consisting of alphanumeric characters, _-_, ___ or __, and must start and end with an alphanumeric character (eg _MyName_,  or _myname_,  or _123-abc_, regex used for validation is _([A-Za-z0-9][-A-Za-z0-9_]*)?[A-Za-z0-9]_) with an optional DNS subdomain prefix and _/_ (eg _examplecom/MyName_)Required'}
					io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_paramKind {doc 'ParamKind specifies the kind of resources used to parameterize this policy If absent, there are no parameters for this policy and the param CEL variable will not be provided to validation expressions If ParamKind refers to a non-existent kind, this policy definition is mis-configured and the FailurePolicy is applied If paramKind is specified but paramRef is unset in ValidatingAdmissionPolicyBinding, the params variable will be null'}
						mandatory
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_paramKind_apiVersion {doc 'APIVersion is the API group version the resources belong to In format of group/version Required'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_paramKind_kind {doc 'Kind is the API kind the resources belong to Required'}
					io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_validations cardinality [1..*] {doc 'Validations contain CEL expressions which is used to apply the validation Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is required'}
						mandatory
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_validations_expression {doc 'Expression represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:- _object_ - The object from the incoming request The value is null for DELETE requests - _oldObject_ - The existing object The value is null for CREATE requests - _request_ - Attributes of the API request([ref](/pkg/apis/admission/typesgo#AdmissionRequest)) - _params_ - Parameter resource referred to by the policy binding being evaluated Only populated if the policy has a ParamKind - _namespaceObject_ - The namespace object that the incoming object belongs to The value is null for cluster-scoped resources - _variables_ - Map of composited variables, from its name to its lazily evaluated value  For example, a variable named _foo_ can be accessed as _variablesfoo_- _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz- _authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceThe apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object No other metadata properties are accessibleOnly 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, returnExamples:  - Expression accessing a property named namespace: Expression: object__namespace__ > 0  - Expression accessing a property named x-prop: Expression: objectx__dash__prop > 0  - Expression accessing a property named redact__d: Expression: objectredact__underscores__d > 0Equality on arrays with list type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderRequired'}
						optional
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_validations_message {doc 'Message represents the message displayed when validation fails The message is required if the Expression contains line breaks The message must not contain line breaks If unset, the message is failed rule: Rule eg must be a URL with the host matching spechost If the Expression contains line breaks Message is required The message must not contain line breaks If unset, the message is failed Expression: Expression'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_validations_messageExpression {doc '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 validation, 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 expression except for _authorizer_ and _authorizerrequestResource_ Example: objectx must be less than max (+string(paramsmax)+)'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_validations_reason {doc 'Reason represents a machine-readable description of why this validation failed If this is the first validation in the list to fail, this reason, as well as the corresponding HTTP response code, are used in the HTTP response to the client The currently supported reasons are: Unauthorized, Forbidden, Invalid, RequestEntityTooLarge If not set, StatusReasonInvalid is used in the response to the client'}
								alternative
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_validations_reason_Unauthorized {doc 'Specific value: Unauthorized'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_validations_reason_Forbidden {doc 'Specific value: Forbidden'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_validations_reason_Invalid {doc 'Specific value: Invalid'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_validations_reason_RequestEntityTooLarge {doc 'Specific value: RequestEntityTooLarge'}
					io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_variables cardinality [1..*] {doc 'Variables contain definitions of variables that can be used in composition of other expressions Each variable is defined as a named CEL expression The variables defined here will be available under variables in other expressions of the policy except MatchConditions because MatchConditions are evaluated before the rest of the policyThe expression of a variable can refer to other variables defined earlier in the list but not those after Thus, Variables must be sorted by the order of first appearance and acyclic'}
						mandatory
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_variables_expression {doc 'Expression is the expression that will be evaluated as the value of the variable The CEL expression has access to the same identifiers as the CEL expressions in Validation'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_variables_name {doc 'Name is the name of the variable The name must be a valid CEL identifier and unique among all variables The variable can be accessed in other expressions through variables For example, if name is foo, the variable will be available as variablesfoo'}
			io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyStatus {doc 'ValidatingAdmissionPolicyStatus represents the status of an admission validation policy'}
				optional
					io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyStatus_conditions cardinality [1..*] {doc 'The conditions represent the latest available observations of a policy_s current state'}
						mandatory
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyStatus_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another This should be when the underlying condition changed  If that is not known, then using the time when the API field changed is acceptable'}
								optional
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyStatus_conditions_message {doc 'message is a human readable message indicating details about the transition This may be an empty string'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyStatus_conditions_reason {doc 'reason contains a programmatic identifier indicating the reason for the condition_s last transition Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API The value should be a CamelCase string This field may not be empty'}
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyStatus_conditions_status {doc 'status of the condition, one of True, False, Unknown'}
								alternative
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyStatus_conditions_status_True {doc 'Specific value: True'}
							String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyStatus_conditions_type {doc 'type of condition in CamelCase or in fooexamplecom/CamelCase'}
						optional
							Integer io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyStatus_conditions_observedGeneration {doc 'observedGeneration represents the metadatageneration that the condition was set based upon For instance, if metadatageneration is currently 12, but the statusconditions[x]observedGeneration is 9, the condition is out of date with respect to the current state of the instance'}
					Integer io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyStatus_observedGeneration {doc 'The generation observed by the controller'}
					io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyStatus_typeChecking {doc 'The results of type checking for each expression Presence of this field indicates the completion of the type checking'}
						optional
							io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyStatus_typeChecking_expressionWarnings cardinality [1..*] {doc 'The type checking warnings for each expression'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyStatus_typeChecking_expressionWarnings_fieldRef {doc 'The path to the field that refers the expression For example, the reference to the expression of the first item of validations is specvalidations[0]expression'}
									String io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyStatus_typeChecking_expressionWarnings_warning {doc 'The content of type checking information in a human-readable form Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler'}
			io_k8s_api_admissionregistration_v1_ValidatingWebhook {doc 'ValidatingWebhook describes an admission webhook and the resources and operations it applies to'}
				mandatory
					io_k8s_api_admissionregistration_v1_ValidatingWebhook_admissionReviewVersions cardinality [1..*] {doc 'AdmissionReviewVersions is an ordered list of preferred AdmissionReview versions the Webhook expects API server will try to use first version in the list which it supports If none of the versions specified in this list supported by API server, validation will fail for this object 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 and be subject to the failure policy'}
						mandatory
							String io_k8s_api_admissionregistration_v1_ValidatingWebhook_admissionReviewVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_admissionregistration_v1_ValidatingWebhook_clientConfig {doc 'ClientConfig defines how to communicate with the hook Required'}
						optional
							String io_k8s_api_admissionregistration_v1_ValidatingWebhook_clientConfig_caBundle {doc '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'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhook_clientConfig_service {doc 'service is a reference to the service for this webhook Either service or url must be specifiedIf the webhook is running within the cluster, then you should use service'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingWebhook_clientConfig_service_name {doc 'name is the name of the service Required'}
									String io_k8s_api_admissionregistration_v1_ValidatingWebhook_clientConfig_service_namespace {doc 'namespace is the namespace of the service Required'}
								optional
									String io_k8s_api_admissionregistration_v1_ValidatingWebhook_clientConfig_service_path {doc 'path is an optional URL path which will be sent in any request to this service'}
									Integer io_k8s_api_admissionregistration_v1_ValidatingWebhook_clientConfig_service_port {default 443, doc 'If specified, the port on the service that hosting webhook Default to 443 for backward compatibility port should be a valid port number (1-65535, inclusive)'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhook_clientConfig_url {abstract, doc 'url gives the location of the webhook, in standard URL form (scheme:_host:port/path) Exactly one of url or service must be specifiedThe host should not refer to a service running in the cluster; use the service field instead The host might be resolved via external DNS in some apiservers (eg, kube-apiserver cannot resolve in-cluster DNS as that would be a layering violation) host may also be an IP addressPlease note that using localhost or 127001 as a host is 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, ie, not easy to turn up in a new clusterThe 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 identifierAttempting to use a user or basic auth eg user:password@ is not allowed Fragments (#) and query parameters (?) are not allowed, either'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingWebhook_clientConfig_url_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
					String io_k8s_api_admissionregistration_v1_ValidatingWebhook_name {doc 'The name of the admission webhook Name should be fully qualified, eg, imagepolicykubernetesio, where imagepolicy is the name of the webhook, and kubernetesio is the name of the organization Required'}
					io_k8s_api_admissionregistration_v1_ValidatingWebhook_sideEffects {doc 'SideEffects states whether this webhook has side effects Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown) Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission chain and the side effects therefore need to be undone Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some'}
						alternative
							io_k8s_api_admissionregistration_v1_ValidatingWebhook_sideEffects_None {doc 'Specific value: None'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhook_sideEffects_NoneOnDryRun {doc 'Specific value: NoneOnDryRun'}
				optional
					io_k8s_api_admissionregistration_v1_ValidatingWebhook_failurePolicy {doc 'FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail Defaults to Fail'}
						alternative
							io_k8s_api_admissionregistration_v1_ValidatingWebhook_failurePolicy_Fail {default, doc 'Specific value: Fail'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhook_failurePolicy_Ignore {doc 'Specific value: Ignore'}
					io_k8s_api_admissionregistration_v1_ValidatingWebhook_matchConditions cardinality [1..*] {doc 'MatchConditions is a list of conditions that must be met for a request to be sent to this webhook Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector An empty list of matchConditions matches all requests There are a maximum of 64 match conditions allowedThe exact matching logic is (in order):  1 If ANY matchCondition evaluates to FALSE, the webhook is skipped  2 If ALL matchConditions evaluate to TRUE, the webhook is called  3 If any matchCondition evaluates to an error (but none are FALSE):     - If failurePolicy=Fail, reject the request     - If failurePolicy=Ignore, the error is ignored and the webhook is skipped'}
						mandatory
							String io_k8s_api_admissionregistration_v1_ValidatingWebhook_matchConditions_expression {doc 'Expression represents the expression which will be evaluated by CEL Must evaluate to bool CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:_object_ - The object from the incoming request The value is null for DELETE requests _oldObject_ - The existing object The value is null for CREATE requests _request_ - Attributes of the admission request(/pkg/apis/admission/typesgo#AdmissionRequest) _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz_authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceDocumentation on CEL: https:_kubernetesio/docs/reference/using-api/cel/Required'}
							String io_k8s_api_admissionregistration_v1_ValidatingWebhook_matchConditions_name {doc 'Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes A good name should be descriptive of the associated expression Name must be a qualified name consisting of alphanumeric characters, _-_, ___ or __, and must start and end with an alphanumeric character (eg _MyName_,  or _myname_,  or _123-abc_, regex used for validation is _([A-Za-z0-9][-A-Za-z0-9_]*)?[A-Za-z0-9]_) with an optional DNS subdomain prefix and _/_ (eg _examplecom/MyName_)Required'}
					io_k8s_api_admissionregistration_v1_ValidatingWebhook_matchPolicy {doc 'matchPolicy defines how the rules list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhookDefaults to Equivalent'}
						alternative
							io_k8s_api_admissionregistration_v1_ValidatingWebhook_matchPolicy_apps {doc 'Specific value: apps'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhook_matchPolicy_deployments {doc 'Specific value: deployments'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhook_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhook_matchPolicy_rules {doc 'Specific value: rules'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhook_matchPolicy_v1 {doc 'Specific value: v1'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhook_matchPolicy_Exact {doc 'Specific value: Exact'}
					io_k8s_api_admissionregistration_v1_ValidatingWebhook_namespaceSelector {doc 'NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the webhookFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the webhook on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
						optional
							io_k8s_api_admissionregistration_v1_ValidatingWebhook_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingWebhook_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhook_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_admissionregistration_v1_ValidatingWebhook_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhook_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhook_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhook_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingWebhook_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingWebhook_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhook_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingWebhook_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1_ValidatingWebhook_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_admissionregistration_v1_ValidatingWebhook_objectSelector {doc 'ObjectSelector decides whether to run the webhook based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
						optional
							io_k8s_api_admissionregistration_v1_ValidatingWebhook_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingWebhook_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhook_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_admissionregistration_v1_ValidatingWebhook_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhook_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhook_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhook_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingWebhook_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingWebhook_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhook_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingWebhook_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1_ValidatingWebhook_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_admissionregistration_v1_ValidatingWebhook_rules cardinality [1..*] {doc 'Rules describes what operations on what resources/subresources the webhook cares about The webhook cares about an operation if it matches _any_ Rule However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects'}
						mandatory
							io_k8s_api_admissionregistration_v1_ValidatingWebhook_rules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingWebhook_rules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhook_rules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingWebhook_rules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhook_rules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingWebhook_rules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhook_rules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingWebhook_rules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							io_k8s_api_admissionregistration_v1_ValidatingWebhook_rules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
								alternative
									io_k8s_api_admissionregistration_v1_ValidatingWebhook_rules_scope_Cluster {doc 'Specific value: Cluster'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhook_rules_scope_Namespaced {doc 'Specific value: Namespaced'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhook_rules_scope_estrella {default, doc 'Specific value: estrella'}
					Integer io_k8s_api_admissionregistration_v1_ValidatingWebhook_timeoutSeconds {default 10, doc 'TimeoutSeconds specifies the timeout for this webhook After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy The timeout value must be between 1 and 30 seconds Default to 10 seconds'}
			io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration {doc 'ValidatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and object without changing it'}
				optional
					String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_kind {default 'ValidatingWebhookConfiguration', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata {doc 'Standard object metadata; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks cardinality [1..*] {doc 'Webhooks is a list of webhooks and the affected resources and operations'}
						mandatory
							io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_admissionReviewVersions cardinality [1..*] {doc 'AdmissionReviewVersions is an ordered list of preferred AdmissionReview versions the Webhook expects API server will try to use first version in the list which it supports If none of the versions specified in this list supported by API server, validation will fail for this object 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 and be subject to the failure policy'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_admissionReviewVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_clientConfig {doc 'ClientConfig defines how to communicate with the hook Required'}
								optional
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_clientConfig_caBundle {doc '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'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_clientConfig_service {doc 'service is a reference to the service for this webhook Either service or url must be specifiedIf the webhook is running within the cluster, then you should use service'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_clientConfig_service_name {doc 'name is the name of the service Required'}
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_clientConfig_service_namespace {doc 'namespace is the namespace of the service Required'}
										optional
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_clientConfig_service_path {doc 'path is an optional URL path which will be sent in any request to this service'}
											Integer io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_clientConfig_service_port {default 443, doc 'If specified, the port on the service that hosting webhook Default to 443 for backward compatibility port should be a valid port number (1-65535, inclusive)'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_clientConfig_url {abstract, doc 'url gives the location of the webhook, in standard URL form (scheme:_host:port/path) Exactly one of url or service must be specifiedThe host should not refer to a service running in the cluster; use the service field instead The host might be resolved via external DNS in some apiservers (eg, kube-apiserver cannot resolve in-cluster DNS as that would be a layering violation) host may also be an IP addressPlease note that using localhost or 127001 as a host is 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, ie, not easy to turn up in a new clusterThe 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 identifierAttempting to use a user or basic auth eg user:password@ is not allowed Fragments (#) and query parameters (?) are not allowed, either'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_clientConfig_url_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_name {doc 'The name of the admission webhook Name should be fully qualified, eg, imagepolicykubernetesio, where imagepolicy is the name of the webhook, and kubernetesio is the name of the organization Required'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_sideEffects {doc 'SideEffects states whether this webhook has side effects Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown) Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission chain and the side effects therefore need to be undone Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some'}
								alternative
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_sideEffects_None {doc 'Specific value: None'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_sideEffects_NoneOnDryRun {doc 'Specific value: NoneOnDryRun'}
						optional
							io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_failurePolicy {doc 'FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail Defaults to Fail'}
								alternative
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_failurePolicy_Fail {default, doc 'Specific value: Fail'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_failurePolicy_Ignore {doc 'Specific value: Ignore'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_matchConditions cardinality [1..*] {doc 'MatchConditions is a list of conditions that must be met for a request to be sent to this webhook Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector An empty list of matchConditions matches all requests There are a maximum of 64 match conditions allowedThe exact matching logic is (in order):  1 If ANY matchCondition evaluates to FALSE, the webhook is skipped  2 If ALL matchConditions evaluate to TRUE, the webhook is called  3 If any matchCondition evaluates to an error (but none are FALSE):     - If failurePolicy=Fail, reject the request     - If failurePolicy=Ignore, the error is ignored and the webhook is skipped'}
								mandatory
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_matchConditions_expression {doc 'Expression represents the expression which will be evaluated by CEL Must evaluate to bool CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:_object_ - The object from the incoming request The value is null for DELETE requests _oldObject_ - The existing object The value is null for CREATE requests _request_ - Attributes of the admission request(/pkg/apis/admission/typesgo#AdmissionRequest) _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz_authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceDocumentation on CEL: https:_kubernetesio/docs/reference/using-api/cel/Required'}
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_matchConditions_name {doc 'Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes A good name should be descriptive of the associated expression Name must be a qualified name consisting of alphanumeric characters, _-_, ___ or __, and must start and end with an alphanumeric character (eg _MyName_,  or _myname_,  or _123-abc_, regex used for validation is _([A-Za-z0-9][-A-Za-z0-9_]*)?[A-Za-z0-9]_) with an optional DNS subdomain prefix and _/_ (eg _examplecom/MyName_)Required'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_matchPolicy {doc 'matchPolicy defines how the rules list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhookDefaults to Equivalent'}
								alternative
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_matchPolicy_apps {doc 'Specific value: apps'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_matchPolicy_deployments {doc 'Specific value: deployments'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_matchPolicy_rules {doc 'Specific value: rules'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_matchPolicy_v1 {doc 'Specific value: v1'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_matchPolicy_Exact {doc 'Specific value: Exact'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_namespaceSelector {doc 'NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the webhookFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the webhook on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_objectSelector {doc 'ObjectSelector decides whether to run the webhook based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_rules cardinality [1..*] {doc 'Rules describes what operations on what resources/subresources the webhook cares about The webhook cares about an operation if it matches _any_ Rule However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects'}
								mandatory
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_rules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_rules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_rules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_rules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_rules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_rules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_rules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_rules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_rules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
										alternative
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_rules_scope_Cluster {doc 'Specific value: Cluster'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_rules_scope_Namespaced {doc 'Specific value: Namespaced'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_rules_scope_estrella {default, doc 'Specific value: estrella'}
							Integer io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_timeoutSeconds {default 10, doc 'TimeoutSeconds specifies the timeout for this webhook After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy The timeout value must be between 1 and 30 seconds Default to 10 seconds'}
			io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList {doc 'ValidatingWebhookConfigurationList is a list of ValidatingWebhookConfiguration'}
				mandatory
					io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items cardinality [1..*] {doc 'List of ValidatingWebhookConfiguration'}
						optional
							String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_kind {default 'ValidatingWebhookConfiguration', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata {doc 'Standard object metadata; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks cardinality [1..*] {doc 'Webhooks is a list of webhooks and the affected resources and operations'}
								mandatory
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_admissionReviewVersions cardinality [1..*] {doc 'AdmissionReviewVersions is an ordered list of preferred AdmissionReview versions the Webhook expects API server will try to use first version in the list which it supports If none of the versions specified in this list supported by API server, validation will fail for this object 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 and be subject to the failure policy'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_admissionReviewVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_clientConfig {doc 'ClientConfig defines how to communicate with the hook Required'}
										optional
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_clientConfig_caBundle {doc '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'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_clientConfig_service {doc 'service is a reference to the service for this webhook Either service or url must be specifiedIf the webhook is running within the cluster, then you should use service'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_clientConfig_service_name {doc 'name is the name of the service Required'}
													String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_clientConfig_service_namespace {doc 'namespace is the namespace of the service Required'}
												optional
													String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_clientConfig_service_path {doc 'path is an optional URL path which will be sent in any request to this service'}
													Integer io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_clientConfig_service_port {default 443, doc 'If specified, the port on the service that hosting webhook Default to 443 for backward compatibility port should be a valid port number (1-65535, inclusive)'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_clientConfig_url {abstract, doc 'url gives the location of the webhook, in standard URL form (scheme:_host:port/path) Exactly one of url or service must be specifiedThe host should not refer to a service running in the cluster; use the service field instead The host might be resolved via external DNS in some apiservers (eg, kube-apiserver cannot resolve in-cluster DNS as that would be a layering violation) host may also be an IP addressPlease note that using localhost or 127001 as a host is 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, ie, not easy to turn up in a new clusterThe 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 identifierAttempting to use a user or basic auth eg user:password@ is not allowed Fragments (#) and query parameters (?) are not allowed, either'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_clientConfig_url_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_name {doc 'The name of the admission webhook Name should be fully qualified, eg, imagepolicykubernetesio, where imagepolicy is the name of the webhook, and kubernetesio is the name of the organization Required'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_sideEffects {doc 'SideEffects states whether this webhook has side effects Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown) Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission chain and the side effects therefore need to be undone Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some'}
										alternative
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_sideEffects_None {doc 'Specific value: None'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_sideEffects_NoneOnDryRun {doc 'Specific value: NoneOnDryRun'}
								optional
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_failurePolicy {doc 'FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail Defaults to Fail'}
										alternative
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_failurePolicy_Fail {default, doc 'Specific value: Fail'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_failurePolicy_Ignore {doc 'Specific value: Ignore'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_matchConditions cardinality [1..*] {doc 'MatchConditions is a list of conditions that must be met for a request to be sent to this webhook Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector An empty list of matchConditions matches all requests There are a maximum of 64 match conditions allowedThe exact matching logic is (in order):  1 If ANY matchCondition evaluates to FALSE, the webhook is skipped  2 If ALL matchConditions evaluate to TRUE, the webhook is called  3 If any matchCondition evaluates to an error (but none are FALSE):     - If failurePolicy=Fail, reject the request     - If failurePolicy=Ignore, the error is ignored and the webhook is skipped'}
										mandatory
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_matchConditions_expression {doc 'Expression represents the expression which will be evaluated by CEL Must evaluate to bool CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:_object_ - The object from the incoming request The value is null for DELETE requests _oldObject_ - The existing object The value is null for CREATE requests _request_ - Attributes of the admission request(/pkg/apis/admission/typesgo#AdmissionRequest) _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz_authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceDocumentation on CEL: https:_kubernetesio/docs/reference/using-api/cel/Required'}
											String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_matchConditions_name {doc 'Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes A good name should be descriptive of the associated expression Name must be a qualified name consisting of alphanumeric characters, _-_, ___ or __, and must start and end with an alphanumeric character (eg _MyName_,  or _myname_,  or _123-abc_, regex used for validation is _([A-Za-z0-9][-A-Za-z0-9_]*)?[A-Za-z0-9]_) with an optional DNS subdomain prefix and _/_ (eg _examplecom/MyName_)Required'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_matchPolicy {doc 'matchPolicy defines how the rules list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhookDefaults to Equivalent'}
										alternative
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_matchPolicy_apps {doc 'Specific value: apps'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_matchPolicy_deployments {doc 'Specific value: deployments'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_matchPolicy_rules {doc 'Specific value: rules'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_matchPolicy_v1 {doc 'Specific value: v1'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_matchPolicy_Exact {doc 'Specific value: Exact'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_namespaceSelector {doc 'NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the webhookFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the webhook on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_objectSelector {doc 'ObjectSelector decides whether to run the webhook based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the webhook, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_rules cardinality [1..*] {doc 'Rules describes what operations on what resources/subresources the webhook cares about The webhook cares about an operation if it matches _any_ Rule However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects'}
										mandatory
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_rules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_rules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_rules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_rules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_rules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_rules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_rules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_rules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_rules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
												alternative
													io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_rules_scope_Cluster {doc 'Specific value: Cluster'}
													io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_rules_scope_Namespaced {doc 'Specific value: Namespaced'}
													io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_rules_scope_estrella {default, doc 'Specific value: estrella'}
									Integer io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_timeoutSeconds {default 10, doc 'TimeoutSeconds specifies the timeout for this webhook After the timeout passes, the webhook call will be ignored or the API call will fail based on the failure policy The timeout value must be between 1 and 30 seconds Default to 10 seconds'}
				optional
					String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_kind {default 'ValidatingWebhookConfigurationList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_admissionregistration_v1_Validation {doc 'Validation specifies the CEL expression which is used to apply the validation'}
				mandatory
					String io_k8s_api_admissionregistration_v1_Validation_expression {doc 'Expression represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:- _object_ - The object from the incoming request The value is null for DELETE requests - _oldObject_ - The existing object The value is null for CREATE requests - _request_ - Attributes of the API request([ref](/pkg/apis/admission/typesgo#AdmissionRequest)) - _params_ - Parameter resource referred to by the policy binding being evaluated Only populated if the policy has a ParamKind - _namespaceObject_ - The namespace object that the incoming object belongs to The value is null for cluster-scoped resources - _variables_ - Map of composited variables, from its name to its lazily evaluated value  For example, a variable named _foo_ can be accessed as _variablesfoo_- _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz- _authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceThe apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object No other metadata properties are accessibleOnly 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, returnExamples:  - Expression accessing a property named namespace: Expression: object__namespace__ > 0  - Expression accessing a property named x-prop: Expression: objectx__dash__prop > 0  - Expression accessing a property named redact__d: Expression: objectredact__underscores__d > 0Equality on arrays with list type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderRequired'}
				optional
					String io_k8s_api_admissionregistration_v1_Validation_message {doc 'Message represents the message displayed when validation fails The message is required if the Expression contains line breaks The message must not contain line breaks If unset, the message is failed rule: Rule eg must be a URL with the host matching spechost If the Expression contains line breaks Message is required The message must not contain line breaks If unset, the message is failed Expression: Expression'}
					String io_k8s_api_admissionregistration_v1_Validation_messageExpression {doc '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 validation, 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 expression except for _authorizer_ and _authorizerrequestResource_ Example: objectx must be less than max (+string(paramsmax)+)'}
					io_k8s_api_admissionregistration_v1_Validation_reason {doc 'Reason represents a machine-readable description of why this validation failed If this is the first validation in the list to fail, this reason, as well as the corresponding HTTP response code, are used in the HTTP response to the client The currently supported reasons are: Unauthorized, Forbidden, Invalid, RequestEntityTooLarge If not set, StatusReasonInvalid is used in the response to the client'}
						alternative
							io_k8s_api_admissionregistration_v1_Validation_reason_Unauthorized {doc 'Specific value: Unauthorized'}
							io_k8s_api_admissionregistration_v1_Validation_reason_Forbidden {doc 'Specific value: Forbidden'}
							io_k8s_api_admissionregistration_v1_Validation_reason_Invalid {doc 'Specific value: Invalid'}
							io_k8s_api_admissionregistration_v1_Validation_reason_RequestEntityTooLarge {doc 'Specific value: RequestEntityTooLarge'}
			io_k8s_api_admissionregistration_v1_Variable {doc 'Variable is the definition of a variable that is used for composition A variable is defined as a named expression'}
				mandatory
					String io_k8s_api_admissionregistration_v1_Variable_expression {doc 'Expression is the expression that will be evaluated as the value of the variable The CEL expression has access to the same identifiers as the CEL expressions in Validation'}
					String io_k8s_api_admissionregistration_v1_Variable_name {doc 'Name is the name of the variable The name must be a valid CEL identifier and unique among all variables The variable can be accessed in other expressions through variables For example, if name is foo, the variable will be available as variablesfoo'}
			io_k8s_api_admissionregistration_v1_WebhookClientConfig {doc 'WebhookClientConfig contains the information to make a TLS connection with the webhook'}
				optional
					String io_k8s_api_admissionregistration_v1_WebhookClientConfig_caBundle {doc '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'}
					io_k8s_api_admissionregistration_v1_WebhookClientConfig_service {doc 'service is a reference to the service for this webhook Either service or url must be specifiedIf the webhook is running within the cluster, then you should use service'}
						mandatory
							String io_k8s_api_admissionregistration_v1_WebhookClientConfig_service_name {doc 'name is the name of the service Required'}
							String io_k8s_api_admissionregistration_v1_WebhookClientConfig_service_namespace {doc 'namespace is the namespace of the service Required'}
						optional
							String io_k8s_api_admissionregistration_v1_WebhookClientConfig_service_path {doc 'path is an optional URL path which will be sent in any request to this service'}
							Integer io_k8s_api_admissionregistration_v1_WebhookClientConfig_service_port {default 443, doc 'If specified, the port on the service that hosting webhook Default to 443 for backward compatibility port should be a valid port number (1-65535, inclusive)'}
					io_k8s_api_admissionregistration_v1_WebhookClientConfig_url {abstract, doc 'url gives the location of the webhook, in standard URL form (scheme:_host:port/path) Exactly one of url or service must be specifiedThe host should not refer to a service running in the cluster; use the service field instead The host might be resolved via external DNS in some apiservers (eg, kube-apiserver cannot resolve in-cluster DNS as that would be a layering violation) host may also be an IP addressPlease note that using localhost or 127001 as a host is 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, ie, not easy to turn up in a new clusterThe 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 identifierAttempting to use a user or basic auth eg user:password@ is not allowed Fragments (#) and query parameters (?) are not allowed, either'}
						mandatory
							String io_k8s_api_admissionregistration_v1_WebhookClientConfig_url_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
			io_k8s_api_admissionregistration_v1alpha1_AuditAnnotation {doc 'AuditAnnotation describes how to produce an audit annotation for an API request'}
				mandatory
					String io_k8s_api_admissionregistration_v1alpha1_AuditAnnotation_key {doc 'key specifies the audit annotation key The audit annotation keys of a ValidatingAdmissionPolicy must be unique The key must be a qualified name ([A-Za-z0-9][-A-Za-z0-9_]*) no more than 63 bytes in lengthThe key is combined with the resource name of the ValidatingAdmissionPolicy to construct an audit annotation key: ValidatingAdmissionPolicy name/keyIf an admission webhook uses the same resource name as this ValidatingAdmissionPolicy and the same audit annotation key, the annotation key will be identical In this case, the first annotation written with the key will be included in the audit event and all subsequent annotations with the same key will be discardedRequired'}
					String io_k8s_api_admissionregistration_v1alpha1_AuditAnnotation_valueExpression {doc 'valueExpression represents the expression which is evaluated by CEL to produce an audit annotation value The expression must evaluate to either a string or null value If the expression evaluates to a string, the audit annotation is included with the string value If the expression evaluates to null or empty string the audit annotation will be omitted The valueExpression may be no longer than 5kb in length If the result of the valueExpression is more than 10kb in length, it will be truncated to 10kbIf multiple ValidatingAdmissionPolicyBinding resources match an API request, then the valueExpression will be evaluated for each binding All unique values produced by the valueExpressions will be joined together in a comma-separated listRequired'}
			io_k8s_api_admissionregistration_v1alpha1_ExpressionWarning {doc 'ExpressionWarning is a warning information that targets a specific expression'}
				mandatory
					String io_k8s_api_admissionregistration_v1alpha1_ExpressionWarning_fieldRef {doc 'The path to the field that refers the expression For example, the reference to the expression of the first item of validations is specvalidations[0]expression'}
					String io_k8s_api_admissionregistration_v1alpha1_ExpressionWarning_warning {doc 'The content of type checking information in a human-readable form Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler'}
			io_k8s_api_admissionregistration_v1alpha1_MatchCondition {doc 'Auto doc generate for not add empty Strings No descripcion in schemas JSON'}
				mandatory
					String io_k8s_api_admissionregistration_v1alpha1_MatchCondition_expression {doc 'Expression represents the expression which will be evaluated by CEL Must evaluate to bool CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:_object_ - The object from the incoming request The value is null for DELETE requests _oldObject_ - The existing object The value is null for CREATE requests _request_ - Attributes of the admission request(/pkg/apis/admission/typesgo#AdmissionRequest) _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz_authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceDocumentation on CEL: https:_kubernetesio/docs/reference/using-api/cel/Required'}
					String io_k8s_api_admissionregistration_v1alpha1_MatchCondition_name {doc 'Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes A good name should be descriptive of the associated expression Name must be a qualified name consisting of alphanumeric characters, _-_, ___ or __, and must start and end with an alphanumeric character (eg _MyName_,  or _myname_,  or _123-abc_, regex used for validation is _([A-Za-z0-9][-A-Za-z0-9_]*)?[A-Za-z0-9]_) with an optional DNS subdomain prefix and _/_ (eg _examplecom/MyName_)Required'}
			io_k8s_api_admissionregistration_v1alpha1_MatchResources {doc 'MatchResources decides whether to run the admission control policy on an object based on whether it meets the match criteria The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
				optional
					io_k8s_api_admissionregistration_v1alpha1_MatchResources_excludeResourceRules cardinality [1..*] {doc 'ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
						mandatory
							io_k8s_api_admissionregistration_v1alpha1_MatchResources_excludeResourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_MatchResources_excludeResourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1alpha1_MatchResources_excludeResourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_MatchResources_excludeResourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1alpha1_MatchResources_excludeResourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_MatchResources_excludeResourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1alpha1_MatchResources_excludeResourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_MatchResources_excludeResourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							io_k8s_api_admissionregistration_v1alpha1_MatchResources_excludeResourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_MatchResources_excludeResourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1alpha1_MatchResources_excludeResourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
								alternative
									io_k8s_api_admissionregistration_v1alpha1_MatchResources_excludeResourceRules_scope_Cluster {doc 'Specific value: Cluster'}
									io_k8s_api_admissionregistration_v1alpha1_MatchResources_excludeResourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
									io_k8s_api_admissionregistration_v1alpha1_MatchResources_excludeResourceRules_scope_estrella {default, doc 'Specific value: estrella'}
					io_k8s_api_admissionregistration_v1alpha1_MatchResources_matchPolicy {doc 'matchPolicy defines how the MatchResources list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicyDefaults to Equivalent'}
						alternative
							io_k8s_api_admissionregistration_v1alpha1_MatchResources_matchPolicy_apps {doc 'Specific value: apps'}
							io_k8s_api_admissionregistration_v1alpha1_MatchResources_matchPolicy_MatchResources {doc 'Specific value: MatchResources'}
							io_k8s_api_admissionregistration_v1alpha1_MatchResources_matchPolicy_deployments {doc 'Specific value: deployments'}
							io_k8s_api_admissionregistration_v1alpha1_MatchResources_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
							io_k8s_api_admissionregistration_v1alpha1_MatchResources_matchPolicy_rules {doc 'Specific value: rules'}
							io_k8s_api_admissionregistration_v1alpha1_MatchResources_matchPolicy_v1 {doc 'Specific value: v1'}
							io_k8s_api_admissionregistration_v1alpha1_MatchResources_matchPolicy_Exact {doc 'Specific value: Exact'}
					io_k8s_api_admissionregistration_v1alpha1_MatchResources_namespaceSelector {doc 'NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the policyFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the policy on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
						optional
							io_k8s_api_admissionregistration_v1alpha1_MatchResources_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_MatchResources_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_admissionregistration_v1alpha1_MatchResources_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_admissionregistration_v1alpha1_MatchResources_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_admissionregistration_v1alpha1_MatchResources_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_admissionregistration_v1alpha1_MatchResources_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_admissionregistration_v1alpha1_MatchResources_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_admissionregistration_v1alpha1_MatchResources_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_MatchResources_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1alpha1_MatchResources_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_MatchResources_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1alpha1_MatchResources_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_admissionregistration_v1alpha1_MatchResources_objectSelector {doc 'ObjectSelector decides whether to run the validation based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
						optional
							io_k8s_api_admissionregistration_v1alpha1_MatchResources_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_MatchResources_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_admissionregistration_v1alpha1_MatchResources_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_admissionregistration_v1alpha1_MatchResources_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_admissionregistration_v1alpha1_MatchResources_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_admissionregistration_v1alpha1_MatchResources_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_admissionregistration_v1alpha1_MatchResources_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_admissionregistration_v1alpha1_MatchResources_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_MatchResources_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1alpha1_MatchResources_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_MatchResources_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1alpha1_MatchResources_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_admissionregistration_v1alpha1_MatchResources_resourceRules cardinality [1..*] {doc 'ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches The policy cares about an operation if it matches _any_ Rule'}
						mandatory
							io_k8s_api_admissionregistration_v1alpha1_MatchResources_resourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_MatchResources_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1alpha1_MatchResources_resourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_MatchResources_resourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1alpha1_MatchResources_resourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_MatchResources_resourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1alpha1_MatchResources_resourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_MatchResources_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							io_k8s_api_admissionregistration_v1alpha1_MatchResources_resourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_MatchResources_resourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1alpha1_MatchResources_resourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
								alternative
									io_k8s_api_admissionregistration_v1alpha1_MatchResources_resourceRules_scope_Cluster {doc 'Specific value: Cluster'}
									io_k8s_api_admissionregistration_v1alpha1_MatchResources_resourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
									io_k8s_api_admissionregistration_v1alpha1_MatchResources_resourceRules_scope_estrella {default, doc 'Specific value: estrella'}
			io_k8s_api_admissionregistration_v1alpha1_NamedRuleWithOperations {doc 'NamedRuleWithOperations is a tuple of Operations and Resources with ResourceNames'}
				mandatory
					io_k8s_api_admissionregistration_v1alpha1_NamedRuleWithOperations_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
						mandatory
							String io_k8s_api_admissionregistration_v1alpha1_NamedRuleWithOperations_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_admissionregistration_v1alpha1_NamedRuleWithOperations_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
						mandatory
							String io_k8s_api_admissionregistration_v1alpha1_NamedRuleWithOperations_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_admissionregistration_v1alpha1_NamedRuleWithOperations_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
						mandatory
							String io_k8s_api_admissionregistration_v1alpha1_NamedRuleWithOperations_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_admissionregistration_v1alpha1_NamedRuleWithOperations_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
						mandatory
							String io_k8s_api_admissionregistration_v1alpha1_NamedRuleWithOperations_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					io_k8s_api_admissionregistration_v1alpha1_NamedRuleWithOperations_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
						mandatory
							String io_k8s_api_admissionregistration_v1alpha1_NamedRuleWithOperations_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_admissionregistration_v1alpha1_NamedRuleWithOperations_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
						alternative
							io_k8s_api_admissionregistration_v1alpha1_NamedRuleWithOperations_scope_Cluster {doc 'Specific value: Cluster'}
							io_k8s_api_admissionregistration_v1alpha1_NamedRuleWithOperations_scope_Namespaced {doc 'Specific value: Namespaced'}
							io_k8s_api_admissionregistration_v1alpha1_NamedRuleWithOperations_scope_estrella {default, doc 'Specific value: estrella'}
			io_k8s_api_admissionregistration_v1alpha1_ParamKind {doc 'ParamKind is a tuple of Group Kind and Version'}
				mandatory
					String io_k8s_api_admissionregistration_v1alpha1_ParamKind_apiVersion {doc 'APIVersion is the API group version the resources belong to In format of group/version Required'}
					String io_k8s_api_admissionregistration_v1alpha1_ParamKind_kind {doc 'Kind is the API kind the resources belong to Required'}
			io_k8s_api_admissionregistration_v1alpha1_ParamRef {doc 'ParamRef describes how to locate the params to be used as input to expressions of rules applied by a policy binding'}
				optional
					io_k8s_api_admissionregistration_v1alpha1_ParamRef_name {abstract, doc 'name is the name of the resource being referencedname and selector are mutually exclusive properties If one is set, the other must be unset'}
						mandatory
							String io_k8s_api_admissionregistration_v1alpha1_ParamRef_name_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
					String io_k8s_api_admissionregistration_v1alpha1_ParamRef_namespace {doc 'namespace is the namespace of the referenced resource Allows limiting the search for params to a specific namespace Applies to both name and selector fieldsA per-namespace parameter may be used by specifying a namespace-scoped paramKind in the policy and leaving this field empty- If paramKind is cluster-scoped, this field MUST be unset Setting this field results in a configuration error- If paramKind is namespace-scoped, the namespace of the object being evaluated for admission will be used when this field is left unset Take care that if this is left empty the binding must not match any cluster-scoped resources, which will result in an error'}
					String io_k8s_api_admissionregistration_v1alpha1_ParamRef_parameterNotFoundAction {doc 'parameterNotFoundAction controls the behavior of the binding when the resource exists, and name or selector is valid, but there are no parameters matched by the binding If the value is set to Allow, then no matched parameters will be treated as successful validation by the binding If set to Deny, then no matched parameters will be subject to the failurePolicy of the policyAllowed values are Allow or Deny Default to Deny'}
					io_k8s_api_admissionregistration_v1alpha1_ParamRef_selector {doc 'selector can be used to match multiple param objects based on their labels Supply selector:  to match all resources of the ParamKindIf multiple params are found, they are all evaluated with the policy expressions and the results are ANDed togetherOne of name or selector must be set, but name and selector are mutually exclusive properties If one is set, the other must be unset'}
						optional
							io_k8s_api_admissionregistration_v1alpha1_ParamRef_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_ParamRef_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_admissionregistration_v1alpha1_ParamRef_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_admissionregistration_v1alpha1_ParamRef_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_admissionregistration_v1alpha1_ParamRef_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_admissionregistration_v1alpha1_ParamRef_selector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_admissionregistration_v1alpha1_ParamRef_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_admissionregistration_v1alpha1_ParamRef_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ParamRef_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1alpha1_ParamRef_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_ParamRef_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1alpha1_ParamRef_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
			io_k8s_api_admissionregistration_v1alpha1_TypeChecking {doc 'TypeChecking contains results of type checking the expressions in the ValidatingAdmissionPolicy'}
				optional
					io_k8s_api_admissionregistration_v1alpha1_TypeChecking_expressionWarnings cardinality [1..*] {doc 'The type checking warnings for each expression'}
						mandatory
							String io_k8s_api_admissionregistration_v1alpha1_TypeChecking_expressionWarnings_fieldRef {doc 'The path to the field that refers the expression For example, the reference to the expression of the first item of validations is specvalidations[0]expression'}
							String io_k8s_api_admissionregistration_v1alpha1_TypeChecking_expressionWarnings_warning {doc 'The content of type checking information in a human-readable form Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler'}
			io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy {doc 'ValidatingAdmissionPolicy describes the definition of an admission validation policy that accepts or rejects an object without changing it'}
				optional
					String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_kind {default 'ValidatingAdmissionPolicy', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata {doc 'Standard object metadata; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec {doc 'Specification of the desired behavior of the ValidatingAdmissionPolicy'}
						mandatory
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints {doc 'MatchConstraints specifies what resources this policy is designed to validate The AdmissionPolicy cares about a request if it matches _all_ Constraints However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding Required'}
								optional
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules cardinality [1..*] {doc 'ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
										mandatory
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
												alternative
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_scope_Cluster {doc 'Specific value: Cluster'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_scope_estrella {default, doc 'Specific value: estrella'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy {doc 'matchPolicy defines how the MatchResources list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicyDefaults to Equivalent'}
										alternative
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy_apps {doc 'Specific value: apps'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy_MatchResources {doc 'Specific value: MatchResources'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy_deployments {doc 'Specific value: deployments'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy_rules {doc 'Specific value: rules'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy_v1 {doc 'Specific value: v1'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy_Exact {doc 'Specific value: Exact'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector {doc 'NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the policyFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the policy on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
										optional
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector {doc 'ObjectSelector decides whether to run the validation based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
										optional
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules cardinality [1..*] {doc 'ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches The policy cares about an operation if it matches _any_ Rule'}
										mandatory
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
												alternative
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_scope_Cluster {doc 'Specific value: Cluster'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_scope_estrella {default, doc 'Specific value: estrella'}
						optional
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_auditAnnotations cardinality [1..*] {doc 'auditAnnotations contains CEL expressions which are used to produce audit annotations for the audit event of the API request validations and auditAnnotations may not both be empty; a least one of validations or auditAnnotations is required'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_auditAnnotations_key {doc 'key specifies the audit annotation key The audit annotation keys of a ValidatingAdmissionPolicy must be unique The key must be a qualified name ([A-Za-z0-9][-A-Za-z0-9_]*) no more than 63 bytes in lengthThe key is combined with the resource name of the ValidatingAdmissionPolicy to construct an audit annotation key: ValidatingAdmissionPolicy name/keyIf an admission webhook uses the same resource name as this ValidatingAdmissionPolicy and the same audit annotation key, the annotation key will be identical In this case, the first annotation written with the key will be included in the audit event and all subsequent annotations with the same key will be discardedRequired'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_auditAnnotations_valueExpression {doc 'valueExpression represents the expression which is evaluated by CEL to produce an audit annotation value The expression must evaluate to either a string or null value If the expression evaluates to a string, the audit annotation is included with the string value If the expression evaluates to null or empty string the audit annotation will be omitted The valueExpression may be no longer than 5kb in length If the result of the valueExpression is more than 10kb in length, it will be truncated to 10kbIf multiple ValidatingAdmissionPolicyBinding resources match an API request, then the valueExpression will be evaluated for each binding All unique values produced by the valueExpressions will be joined together in a comma-separated listRequired'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_failurePolicy {doc 'failurePolicy defines how to handle failures for the admission policy Failures can occur from CEL expression parse errors, type check errors, runtime errors and invalid or mis-configured policy definitions or bindingsA policy is invalid if specparamKind refers to a non-existent Kind A binding is invalid if specparamRefname refers to a non-existent resourcefailurePolicy does not define how validations that evaluate to false are handledWhen failurePolicy is set to Fail, ValidatingAdmissionPolicyBinding validationActions define how failures are enforcedAllowed values are Ignore or Fail Defaults to Fail'}
								alternative
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_failurePolicy_Fail {default, doc 'Specific value: Fail'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_failurePolicy_Ignore {doc 'Specific value: Ignore'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConditions cardinality [1..*] {doc 'MatchConditions is a list of conditions that must be met for a request to be validated Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector An empty list of matchConditions matches all requests There are a maximum of 64 match conditions allowedIf a parameter object is provided, it can be accessed via the params handle in the same manner as validation expressionsThe exact matching logic is (in order):  1 If ANY matchCondition evaluates to FALSE, the policy is skipped  2 If ALL matchConditions evaluate to TRUE, the policy is evaluated  3 If any matchCondition evaluates to an error (but none are FALSE):     - If failurePolicy=Fail, reject the request     - If failurePolicy=Ignore, the policy is skipped'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConditions_expression {doc 'Expression represents the expression which will be evaluated by CEL Must evaluate to bool CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:_object_ - The object from the incoming request The value is null for DELETE requests _oldObject_ - The existing object The value is null for CREATE requests _request_ - Attributes of the admission request(/pkg/apis/admission/typesgo#AdmissionRequest) _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz_authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceDocumentation on CEL: https:_kubernetesio/docs/reference/using-api/cel/Required'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConditions_name {doc 'Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes A good name should be descriptive of the associated expression Name must be a qualified name consisting of alphanumeric characters, _-_, ___ or __, and must start and end with an alphanumeric character (eg _MyName_,  or _myname_,  or _123-abc_, regex used for validation is _([A-Za-z0-9][-A-Za-z0-9_]*)?[A-Za-z0-9]_) with an optional DNS subdomain prefix and _/_ (eg _examplecom/MyName_)Required'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_paramKind {doc 'ParamKind specifies the kind of resources used to parameterize this policy If absent, there are no parameters for this policy and the param CEL variable will not be provided to validation expressions If ParamKind refers to a non-existent kind, this policy definition is mis-configured and the FailurePolicy is applied If paramKind is specified but paramRef is unset in ValidatingAdmissionPolicyBinding, the params variable will be null'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_paramKind_apiVersion {doc 'APIVersion is the API group version the resources belong to In format of group/version Required'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_paramKind_kind {doc 'Kind is the API kind the resources belong to Required'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_validations cardinality [1..*] {doc 'Validations contain CEL expressions which is used to apply the validation Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is required'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_validations_expression {doc 'Expression represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:- _object_ - The object from the incoming request The value is null for DELETE requests - _oldObject_ - The existing object The value is null for CREATE requests - _request_ - Attributes of the API request([ref](/pkg/apis/admission/typesgo#AdmissionRequest)) - _params_ - Parameter resource referred to by the policy binding being evaluated Only populated if the policy has a ParamKind - _namespaceObject_ - The namespace object that the incoming object belongs to The value is null for cluster-scoped resources - _variables_ - Map of composited variables, from its name to its lazily evaluated value  For example, a variable named _foo_ can be accessed as _variablesfoo_- _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz- _authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceThe apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object No other metadata properties are accessibleOnly 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, returnExamples:  - Expression accessing a property named namespace: Expression: object__namespace__ > 0  - Expression accessing a property named x-prop: Expression: objectx__dash__prop > 0  - Expression accessing a property named redact__d: Expression: objectredact__underscores__d > 0Equality on arrays with list type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderRequired'}
								optional
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_validations_message {doc 'Message represents the message displayed when validation fails The message is required if the Expression contains line breaks The message must not contain line breaks If unset, the message is failed rule: Rule eg must be a URL with the host matching spechost If the Expression contains line breaks Message is required The message must not contain line breaks If unset, the message is failed Expression: Expression'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_validations_messageExpression {doc '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 validation, 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 expression except for _authorizer_ and _authorizerrequestResource_ Example: objectx must be less than max (+string(paramsmax)+)'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_validations_reason {doc 'Reason represents a machine-readable description of why this validation failed If this is the first validation in the list to fail, this reason, as well as the corresponding HTTP response code, are used in the HTTP response to the client The currently supported reasons are: Unauthorized, Forbidden, Invalid, RequestEntityTooLarge If not set, StatusReasonInvalid is used in the response to the client'}
										alternative
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_validations_reason_Unauthorized {doc 'Specific value: Unauthorized'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_validations_reason_Forbidden {doc 'Specific value: Forbidden'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_validations_reason_Invalid {doc 'Specific value: Invalid'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_validations_reason_RequestEntityTooLarge {doc 'Specific value: RequestEntityTooLarge'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_variables cardinality [1..*] {doc 'Variables contain definitions of variables that can be used in composition of other expressions Each variable is defined as a named CEL expression The variables defined here will be available under variables in other expressions of the policy except MatchConditions because MatchConditions are evaluated before the rest of the policyThe expression of a variable can refer to other variables defined earlier in the list but not those after Thus, Variables must be sorted by the order of first appearance and acyclic'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_variables_expression {doc 'Expression is the expression that will be evaluated as the value of the variable The CEL expression has access to the same identifiers as the CEL expressions in Validation'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_variables_name {doc 'Name is the name of the variable The name must be a valid CEL identifier and unique among all variables The variable can be accessed in other expressions through variables For example, if name is foo, the variable will be available as variablesfoo'}
					io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_status {doc 'The status of the ValidatingAdmissionPolicy, including warnings that are useful to determine if the policy behaves in the expected way Populated by the system Read-only'}
						optional
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_status_conditions cardinality [1..*] {doc 'The conditions represent the latest available observations of a policy_s current state'}
								mandatory
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another This should be when the underlying condition changed  If that is not known, then using the time when the API field changed is acceptable'}
										optional
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_status_conditions_message {doc 'message is a human readable message indicating details about the transition This may be an empty string'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_status_conditions_reason {doc 'reason contains a programmatic identifier indicating the reason for the condition_s last transition Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API The value should be a CamelCase string This field may not be empty'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_status_conditions_status {doc 'status of the condition, one of True, False, Unknown'}
										alternative
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_status_conditions_status_True {doc 'Specific value: True'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_status_conditions_type {doc 'type of condition in CamelCase or in fooexamplecom/CamelCase'}
								optional
									Integer io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_status_conditions_observedGeneration {doc 'observedGeneration represents the metadatageneration that the condition was set based upon For instance, if metadatageneration is currently 12, but the statusconditions[x]observedGeneration is 9, the condition is out of date with respect to the current state of the instance'}
							Integer io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_status_observedGeneration {doc 'The generation observed by the controller'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_status_typeChecking {doc 'The results of type checking for each expression Presence of this field indicates the completion of the type checking'}
								optional
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_status_typeChecking_expressionWarnings cardinality [1..*] {doc 'The type checking warnings for each expression'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_status_typeChecking_expressionWarnings_fieldRef {doc 'The path to the field that refers the expression For example, the reference to the expression of the first item of validations is specvalidations[0]expression'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_status_typeChecking_expressionWarnings_warning {doc 'The content of type checking information in a human-readable form Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler'}
			io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding {doc 'ValidatingAdmissionPolicyBinding binds the ValidatingAdmissionPolicy with paramerized resources ValidatingAdmissionPolicyBinding and parameter CRDs together define how cluster administrators configure policies for clustersFor a given admission request, each binding will cause its policy to be evaluated N times, where N is 1 for policies/bindings that don_t use params, otherwise N is the number of parameters selected by the bindingThe CEL expressions of a policy must have a computed CEL cost below the maximum CEL budget Each evaluation of the policy is given an independent CEL cost budget Adding/removing policies, bindings, or params can not affect whether a given (policy, binding, param) combination is within its own CEL budget'}
				optional
					String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_kind {default 'ValidatingAdmissionPolicyBinding', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata {doc 'Standard object metadata; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec {doc 'Specification of the desired behavior of the ValidatingAdmissionPolicyBinding'}
						mandatory
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_policyName {doc 'PolicyName references a ValidatingAdmissionPolicy name which the ValidatingAdmissionPolicyBinding binds to If the referenced resource does not exist, this binding is considered invalid and will be ignored Required'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_validationActions cardinality [1..*] {doc 'validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced If a validation evaluates to false it is always enforced according to these actionsFailures defined by the ValidatingAdmissionPolicy_s FailurePolicy are enforced according to these actions only if the FailurePolicy is set to Fail, otherwise the failures are ignored This includes compilation errors, runtime errors and misconfigurations of the policyvalidationActions is declared as a set of action values Order does not matter validationActions may not contain duplicates of the same actionThe supported actions values are:Deny specifies that a validation failure results in a denied requestWarn specifies that a validation failure is reported to the request client in HTTP Warning headers, with a warning code of 299 Warnings can be sent both for allowed or denied admission responsesAudit specifies that a validation failure is included in the published audit event for the request The audit event will contain a validationpolicyadmissionk8sio/validation_failure audit annotation with a value containing the details of the validation failures, formatted as a JSON list of objects, each with the following fields: - message: The validation failure message string - policy: The resource name of the ValidatingAdmissionPolicy - binding: The resource name of the ValidatingAdmissionPolicyBinding - expressionIndex: The index of the failed validations in the ValidatingAdmissionPolicy - validationActions: The enforcement actions enacted for the validation failure Example audit annotation: validationpolicyadmissionk8sio/validation_failure: [message: Invalid value, policy: policyexamplecom, binding: policybindingexamplecom, expressionIndex: 1, validationActions: [Audit]]Clients should expect to handle additional values by ignoring any values not recognizedDeny and Warn may not be used together since this combination needlessly duplicates the validation failure both in the API response body and the HTTP warning headersRequired'}
								alternative
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_validationActions_Audit {doc 'Specific value: Audit'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_validationActions_expressionIndex {doc 'Specific value: expressionIndex'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_validationActions_policy {doc 'Specific value: policy'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_validationActions_Warn {doc 'Specific value: Warn'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_validationActions_message {doc 'Specific value: message'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_validationActions_Deny {doc 'Specific value: Deny'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_validationActions_validationActions {doc 'Specific value: validationActions'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_validationActions_binding {doc 'Specific value: binding'}
						optional
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources {doc 'MatchResources declares what resources match this binding and will be validated by it Note that this is intersected with the policy_s matchConstraints, so only requests that are matched by the policy can be selected by this If this is unset, all resources matched by the policy are validated by this binding When resourceRules is unset, it does not constrain resource matching If a resource is matched by the other fields of this object, it will be validated Note that this is differs from ValidatingAdmissionPolicy matchConstraints, where resourceRules are required'}
								optional
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules cardinality [1..*] {doc 'ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
										mandatory
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
												alternative
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_scope_Cluster {doc 'Specific value: Cluster'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_scope_estrella {default, doc 'Specific value: estrella'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy {doc 'matchPolicy defines how the MatchResources list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicyDefaults to Equivalent'}
										alternative
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy_apps {doc 'Specific value: apps'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy_MatchResources {doc 'Specific value: MatchResources'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy_deployments {doc 'Specific value: deployments'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy_rules {doc 'Specific value: rules'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy_v1 {doc 'Specific value: v1'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy_Exact {doc 'Specific value: Exact'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector {doc 'NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the policyFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the policy on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
										optional
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector {doc 'ObjectSelector decides whether to run the validation based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
										optional
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules cardinality [1..*] {doc 'ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches The policy cares about an operation if it matches _any_ Rule'}
										mandatory
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
												alternative
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_scope_Cluster {doc 'Specific value: Cluster'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_scope_estrella {default, doc 'Specific value: estrella'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef {doc 'paramRef specifies the parameter resource used to configure the admission control policy It should point to a resource of the type specified in ParamKind of the bound ValidatingAdmissionPolicy If the policy specifies a ParamKind and the resource referred to by ParamRef does not exist, this binding is considered mis-configured and the FailurePolicy of the ValidatingAdmissionPolicy applied If the policy does not specify a ParamKind then this field is ignored, and the rules are evaluated without a param'}
								optional
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_name {abstract, doc 'name is the name of the resource being referencedname and selector are mutually exclusive properties If one is set, the other must be unset'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_name_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_namespace {doc 'namespace is the namespace of the referenced resource Allows limiting the search for params to a specific namespace Applies to both name and selector fieldsA per-namespace parameter may be used by specifying a namespace-scoped paramKind in the policy and leaving this field empty- If paramKind is cluster-scoped, this field MUST be unset Setting this field results in a configuration error- If paramKind is namespace-scoped, the namespace of the object being evaluated for admission will be used when this field is left unset Take care that if this is left empty the binding must not match any cluster-scoped resources, which will result in an error'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_parameterNotFoundAction {doc 'parameterNotFoundAction controls the behavior of the binding when the resource exists, and name or selector is valid, but there are no parameters matched by the binding If the value is set to Allow, then no matched parameters will be treated as successful validation by the binding If set to Deny, then no matched parameters will be subject to the failurePolicy of the policyAllowed values are Allow or Deny Default to Deny'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector {doc 'selector can be used to match multiple param objects based on their labels Supply selector:  to match all resources of the ParamKindIf multiple params are found, they are all evaluated with the policy expressions and the results are ANDed togetherOne of name or selector must be set, but name and selector are mutually exclusive properties If one is set, the other must be unset'}
										optional
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
			io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList {doc 'ValidatingAdmissionPolicyBindingList is a list of ValidatingAdmissionPolicyBinding'}
				optional
					String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items cardinality [1..*] {doc 'List of PolicyBinding'}
						optional
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_kind {default 'ValidatingAdmissionPolicyBinding', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata {doc 'Standard object metadata; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec {doc 'Specification of the desired behavior of the ValidatingAdmissionPolicyBinding'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_policyName {doc 'PolicyName references a ValidatingAdmissionPolicy name which the ValidatingAdmissionPolicyBinding binds to If the referenced resource does not exist, this binding is considered invalid and will be ignored Required'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions cardinality [1..*] {doc 'validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced If a validation evaluates to false it is always enforced according to these actionsFailures defined by the ValidatingAdmissionPolicy_s FailurePolicy are enforced according to these actions only if the FailurePolicy is set to Fail, otherwise the failures are ignored This includes compilation errors, runtime errors and misconfigurations of the policyvalidationActions is declared as a set of action values Order does not matter validationActions may not contain duplicates of the same actionThe supported actions values are:Deny specifies that a validation failure results in a denied requestWarn specifies that a validation failure is reported to the request client in HTTP Warning headers, with a warning code of 299 Warnings can be sent both for allowed or denied admission responsesAudit specifies that a validation failure is included in the published audit event for the request The audit event will contain a validationpolicyadmissionk8sio/validation_failure audit annotation with a value containing the details of the validation failures, formatted as a JSON list of objects, each with the following fields: - message: The validation failure message string - policy: The resource name of the ValidatingAdmissionPolicy - binding: The resource name of the ValidatingAdmissionPolicyBinding - expressionIndex: The index of the failed validations in the ValidatingAdmissionPolicy - validationActions: The enforcement actions enacted for the validation failure Example audit annotation: validationpolicyadmissionk8sio/validation_failure: [message: Invalid value, policy: policyexamplecom, binding: policybindingexamplecom, expressionIndex: 1, validationActions: [Audit]]Clients should expect to handle additional values by ignoring any values not recognizedDeny and Warn may not be used together since this combination needlessly duplicates the validation failure both in the API response body and the HTTP warning headersRequired'}
										alternative
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_Audit {doc 'Specific value: Audit'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_expressionIndex {doc 'Specific value: expressionIndex'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_policy {doc 'Specific value: policy'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_Warn {doc 'Specific value: Warn'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_message {doc 'Specific value: message'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_Deny {doc 'Specific value: Deny'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_validationActions {doc 'Specific value: validationActions'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_binding {doc 'Specific value: binding'}
								optional
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources {doc 'MatchResources declares what resources match this binding and will be validated by it Note that this is intersected with the policy_s matchConstraints, so only requests that are matched by the policy can be selected by this If this is unset, all resources matched by the policy are validated by this binding When resourceRules is unset, it does not constrain resource matching If a resource is matched by the other fields of this object, it will be validated Note that this is differs from ValidatingAdmissionPolicy matchConstraints, where resourceRules are required'}
										optional
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules cardinality [1..*] {doc 'ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
												mandatory
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
														alternative
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_scope_Cluster {doc 'Specific value: Cluster'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_scope_estrella {default, doc 'Specific value: estrella'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy {doc 'matchPolicy defines how the MatchResources list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicyDefaults to Equivalent'}
												alternative
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy_apps {doc 'Specific value: apps'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy_MatchResources {doc 'Specific value: MatchResources'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy_deployments {doc 'Specific value: deployments'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy_rules {doc 'Specific value: rules'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy_v1 {doc 'Specific value: v1'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy_Exact {doc 'Specific value: Exact'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector {doc 'NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the policyFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the policy on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
												optional
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector {doc 'ObjectSelector decides whether to run the validation based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
												optional
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules cardinality [1..*] {doc 'ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches The policy cares about an operation if it matches _any_ Rule'}
												mandatory
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
														alternative
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_scope_Cluster {doc 'Specific value: Cluster'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_scope_estrella {default, doc 'Specific value: estrella'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef {doc 'paramRef specifies the parameter resource used to configure the admission control policy It should point to a resource of the type specified in ParamKind of the bound ValidatingAdmissionPolicy If the policy specifies a ParamKind and the resource referred to by ParamRef does not exist, this binding is considered mis-configured and the FailurePolicy of the ValidatingAdmissionPolicy applied If the policy does not specify a ParamKind then this field is ignored, and the rules are evaluated without a param'}
										optional
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_name {abstract, doc 'name is the name of the resource being referencedname and selector are mutually exclusive properties If one is set, the other must be unset'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_name_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_namespace {doc 'namespace is the namespace of the referenced resource Allows limiting the search for params to a specific namespace Applies to both name and selector fieldsA per-namespace parameter may be used by specifying a namespace-scoped paramKind in the policy and leaving this field empty- If paramKind is cluster-scoped, this field MUST be unset Setting this field results in a configuration error- If paramKind is namespace-scoped, the namespace of the object being evaluated for admission will be used when this field is left unset Take care that if this is left empty the binding must not match any cluster-scoped resources, which will result in an error'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_parameterNotFoundAction {doc 'parameterNotFoundAction controls the behavior of the binding when the resource exists, and name or selector is valid, but there are no parameters matched by the binding If the value is set to Allow, then no matched parameters will be treated as successful validation by the binding If set to Deny, then no matched parameters will be subject to the failurePolicy of the policyAllowed values are Allow or Deny Default to Deny'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector {doc 'selector can be used to match multiple param objects based on their labels Supply selector:  to match all resources of the ParamKindIf multiple params are found, they are all evaluated with the policy expressions and the results are ANDed togetherOne of name or selector must be set, but name and selector are mutually exclusive properties If one is set, the other must be unset'}
												optional
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_kind {default 'ValidatingAdmissionPolicyBindingList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec {doc 'ValidatingAdmissionPolicyBindingSpec is the specification of the ValidatingAdmissionPolicyBinding'}
				mandatory
					String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_policyName {doc 'PolicyName references a ValidatingAdmissionPolicy name which the ValidatingAdmissionPolicyBinding binds to If the referenced resource does not exist, this binding is considered invalid and will be ignored Required'}
					io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_validationActions cardinality [1..*] {doc 'validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced If a validation evaluates to false it is always enforced according to these actionsFailures defined by the ValidatingAdmissionPolicy_s FailurePolicy are enforced according to these actions only if the FailurePolicy is set to Fail, otherwise the failures are ignored This includes compilation errors, runtime errors and misconfigurations of the policyvalidationActions is declared as a set of action values Order does not matter validationActions may not contain duplicates of the same actionThe supported actions values are:Deny specifies that a validation failure results in a denied requestWarn specifies that a validation failure is reported to the request client in HTTP Warning headers, with a warning code of 299 Warnings can be sent both for allowed or denied admission responsesAudit specifies that a validation failure is included in the published audit event for the request The audit event will contain a validationpolicyadmissionk8sio/validation_failure audit annotation with a value containing the details of the validation failures, formatted as a JSON list of objects, each with the following fields: - message: The validation failure message string - policy: The resource name of the ValidatingAdmissionPolicy - binding: The resource name of the ValidatingAdmissionPolicyBinding - expressionIndex: The index of the failed validations in the ValidatingAdmissionPolicy - validationActions: The enforcement actions enacted for the validation failure Example audit annotation: validationpolicyadmissionk8sio/validation_failure: [message: Invalid value, policy: policyexamplecom, binding: policybindingexamplecom, expressionIndex: 1, validationActions: [Audit]]Clients should expect to handle additional values by ignoring any values not recognizedDeny and Warn may not be used together since this combination needlessly duplicates the validation failure both in the API response body and the HTTP warning headersRequired'}
						alternative
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_validationActions_Audit {doc 'Specific value: Audit'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_validationActions_expressionIndex {doc 'Specific value: expressionIndex'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_validationActions_policy {doc 'Specific value: policy'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_validationActions_Warn {doc 'Specific value: Warn'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_validationActions_message {doc 'Specific value: message'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_validationActions_Deny {doc 'Specific value: Deny'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_validationActions_validationActions {doc 'Specific value: validationActions'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_validationActions_binding {doc 'Specific value: binding'}
				optional
					io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources {doc 'MatchResources declares what resources match this binding and will be validated by it Note that this is intersected with the policy_s matchConstraints, so only requests that are matched by the policy can be selected by this If this is unset, all resources matched by the policy are validated by this binding When resourceRules is unset, it does not constrain resource matching If a resource is matched by the other fields of this object, it will be validated Note that this is differs from ValidatingAdmissionPolicy matchConstraints, where resourceRules are required'}
						optional
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules cardinality [1..*] {doc 'ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
								mandatory
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
										alternative
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_scope_Cluster {doc 'Specific value: Cluster'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_scope_estrella {default, doc 'Specific value: estrella'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy {doc 'matchPolicy defines how the MatchResources list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicyDefaults to Equivalent'}
								alternative
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy_apps {doc 'Specific value: apps'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy_MatchResources {doc 'Specific value: MatchResources'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy_deployments {doc 'Specific value: deployments'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy_rules {doc 'Specific value: rules'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy_v1 {doc 'Specific value: v1'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy_Exact {doc 'Specific value: Exact'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector {doc 'NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the policyFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the policy on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
								optional
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector {doc 'ObjectSelector decides whether to run the validation based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
								optional
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules cardinality [1..*] {doc 'ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches The policy cares about an operation if it matches _any_ Rule'}
								mandatory
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
										alternative
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_scope_Cluster {doc 'Specific value: Cluster'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_scope_estrella {default, doc 'Specific value: estrella'}
					io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef {doc 'paramRef specifies the parameter resource used to configure the admission control policy It should point to a resource of the type specified in ParamKind of the bound ValidatingAdmissionPolicy If the policy specifies a ParamKind and the resource referred to by ParamRef does not exist, this binding is considered mis-configured and the FailurePolicy of the ValidatingAdmissionPolicy applied If the policy does not specify a ParamKind then this field is ignored, and the rules are evaluated without a param'}
						optional
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_name {abstract, doc 'name is the name of the resource being referencedname and selector are mutually exclusive properties If one is set, the other must be unset'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_name_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_namespace {doc 'namespace is the namespace of the referenced resource Allows limiting the search for params to a specific namespace Applies to both name and selector fieldsA per-namespace parameter may be used by specifying a namespace-scoped paramKind in the policy and leaving this field empty- If paramKind is cluster-scoped, this field MUST be unset Setting this field results in a configuration error- If paramKind is namespace-scoped, the namespace of the object being evaluated for admission will be used when this field is left unset Take care that if this is left empty the binding must not match any cluster-scoped resources, which will result in an error'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_parameterNotFoundAction {doc 'parameterNotFoundAction controls the behavior of the binding when the resource exists, and name or selector is valid, but there are no parameters matched by the binding If the value is set to Allow, then no matched parameters will be treated as successful validation by the binding If set to Deny, then no matched parameters will be subject to the failurePolicy of the policyAllowed values are Allow or Deny Default to Deny'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector {doc 'selector can be used to match multiple param objects based on their labels Supply selector:  to match all resources of the ParamKindIf multiple params are found, they are all evaluated with the policy expressions and the results are ANDed togetherOne of name or selector must be set, but name and selector are mutually exclusive properties If one is set, the other must be unset'}
								optional
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
			io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList {doc 'ValidatingAdmissionPolicyList is a list of ValidatingAdmissionPolicy'}
				optional
					String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items cardinality [1..*] {doc 'List of ValidatingAdmissionPolicy'}
						optional
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_kind {default 'ValidatingAdmissionPolicy', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata {doc 'Standard object metadata; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec {doc 'Specification of the desired behavior of the ValidatingAdmissionPolicy'}
								mandatory
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints {doc 'MatchConstraints specifies what resources this policy is designed to validate The AdmissionPolicy cares about a request if it matches _all_ Constraints However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding Required'}
										optional
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules cardinality [1..*] {doc 'ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
												mandatory
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
														alternative
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_scope_Cluster {doc 'Specific value: Cluster'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_scope_estrella {default, doc 'Specific value: estrella'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy {doc 'matchPolicy defines how the MatchResources list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicyDefaults to Equivalent'}
												alternative
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy_apps {doc 'Specific value: apps'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy_MatchResources {doc 'Specific value: MatchResources'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy_deployments {doc 'Specific value: deployments'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy_rules {doc 'Specific value: rules'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy_v1 {doc 'Specific value: v1'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy_Exact {doc 'Specific value: Exact'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector {doc 'NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the policyFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the policy on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
												optional
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector {doc 'ObjectSelector decides whether to run the validation based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
												optional
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules cardinality [1..*] {doc 'ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches The policy cares about an operation if it matches _any_ Rule'}
												mandatory
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
														mandatory
															String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
														alternative
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_scope_Cluster {doc 'Specific value: Cluster'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
															io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_scope_estrella {default, doc 'Specific value: estrella'}
								optional
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_auditAnnotations cardinality [1..*] {doc 'auditAnnotations contains CEL expressions which are used to produce audit annotations for the audit event of the API request validations and auditAnnotations may not both be empty; a least one of validations or auditAnnotations is required'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_auditAnnotations_key {doc 'key specifies the audit annotation key The audit annotation keys of a ValidatingAdmissionPolicy must be unique The key must be a qualified name ([A-Za-z0-9][-A-Za-z0-9_]*) no more than 63 bytes in lengthThe key is combined with the resource name of the ValidatingAdmissionPolicy to construct an audit annotation key: ValidatingAdmissionPolicy name/keyIf an admission webhook uses the same resource name as this ValidatingAdmissionPolicy and the same audit annotation key, the annotation key will be identical In this case, the first annotation written with the key will be included in the audit event and all subsequent annotations with the same key will be discardedRequired'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_auditAnnotations_valueExpression {doc 'valueExpression represents the expression which is evaluated by CEL to produce an audit annotation value The expression must evaluate to either a string or null value If the expression evaluates to a string, the audit annotation is included with the string value If the expression evaluates to null or empty string the audit annotation will be omitted The valueExpression may be no longer than 5kb in length If the result of the valueExpression is more than 10kb in length, it will be truncated to 10kbIf multiple ValidatingAdmissionPolicyBinding resources match an API request, then the valueExpression will be evaluated for each binding All unique values produced by the valueExpressions will be joined together in a comma-separated listRequired'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_failurePolicy {doc 'failurePolicy defines how to handle failures for the admission policy Failures can occur from CEL expression parse errors, type check errors, runtime errors and invalid or mis-configured policy definitions or bindingsA policy is invalid if specparamKind refers to a non-existent Kind A binding is invalid if specparamRefname refers to a non-existent resourcefailurePolicy does not define how validations that evaluate to false are handledWhen failurePolicy is set to Fail, ValidatingAdmissionPolicyBinding validationActions define how failures are enforcedAllowed values are Ignore or Fail Defaults to Fail'}
										alternative
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_failurePolicy_Fail {default, doc 'Specific value: Fail'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_failurePolicy_Ignore {doc 'Specific value: Ignore'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConditions cardinality [1..*] {doc 'MatchConditions is a list of conditions that must be met for a request to be validated Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector An empty list of matchConditions matches all requests There are a maximum of 64 match conditions allowedIf a parameter object is provided, it can be accessed via the params handle in the same manner as validation expressionsThe exact matching logic is (in order):  1 If ANY matchCondition evaluates to FALSE, the policy is skipped  2 If ALL matchConditions evaluate to TRUE, the policy is evaluated  3 If any matchCondition evaluates to an error (but none are FALSE):     - If failurePolicy=Fail, reject the request     - If failurePolicy=Ignore, the policy is skipped'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConditions_expression {doc 'Expression represents the expression which will be evaluated by CEL Must evaluate to bool CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:_object_ - The object from the incoming request The value is null for DELETE requests _oldObject_ - The existing object The value is null for CREATE requests _request_ - Attributes of the admission request(/pkg/apis/admission/typesgo#AdmissionRequest) _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz_authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceDocumentation on CEL: https:_kubernetesio/docs/reference/using-api/cel/Required'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConditions_name {doc 'Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes A good name should be descriptive of the associated expression Name must be a qualified name consisting of alphanumeric characters, _-_, ___ or __, and must start and end with an alphanumeric character (eg _MyName_,  or _myname_,  or _123-abc_, regex used for validation is _([A-Za-z0-9][-A-Za-z0-9_]*)?[A-Za-z0-9]_) with an optional DNS subdomain prefix and _/_ (eg _examplecom/MyName_)Required'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_paramKind {doc 'ParamKind specifies the kind of resources used to parameterize this policy If absent, there are no parameters for this policy and the param CEL variable will not be provided to validation expressions If ParamKind refers to a non-existent kind, this policy definition is mis-configured and the FailurePolicy is applied If paramKind is specified but paramRef is unset in ValidatingAdmissionPolicyBinding, the params variable will be null'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_paramKind_apiVersion {doc 'APIVersion is the API group version the resources belong to In format of group/version Required'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_paramKind_kind {doc 'Kind is the API kind the resources belong to Required'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_validations cardinality [1..*] {doc 'Validations contain CEL expressions which is used to apply the validation Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is required'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_validations_expression {doc 'Expression represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:- _object_ - The object from the incoming request The value is null for DELETE requests - _oldObject_ - The existing object The value is null for CREATE requests - _request_ - Attributes of the API request([ref](/pkg/apis/admission/typesgo#AdmissionRequest)) - _params_ - Parameter resource referred to by the policy binding being evaluated Only populated if the policy has a ParamKind - _namespaceObject_ - The namespace object that the incoming object belongs to The value is null for cluster-scoped resources - _variables_ - Map of composited variables, from its name to its lazily evaluated value  For example, a variable named _foo_ can be accessed as _variablesfoo_- _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz- _authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceThe apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object No other metadata properties are accessibleOnly 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, returnExamples:  - Expression accessing a property named namespace: Expression: object__namespace__ > 0  - Expression accessing a property named x-prop: Expression: objectx__dash__prop > 0  - Expression accessing a property named redact__d: Expression: objectredact__underscores__d > 0Equality on arrays with list type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderRequired'}
										optional
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_validations_message {doc 'Message represents the message displayed when validation fails The message is required if the Expression contains line breaks The message must not contain line breaks If unset, the message is failed rule: Rule eg must be a URL with the host matching spechost If the Expression contains line breaks Message is required The message must not contain line breaks If unset, the message is failed Expression: Expression'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_validations_messageExpression {doc '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 validation, 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 expression except for _authorizer_ and _authorizerrequestResource_ Example: objectx must be less than max (+string(paramsmax)+)'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_validations_reason {doc 'Reason represents a machine-readable description of why this validation failed If this is the first validation in the list to fail, this reason, as well as the corresponding HTTP response code, are used in the HTTP response to the client The currently supported reasons are: Unauthorized, Forbidden, Invalid, RequestEntityTooLarge If not set, StatusReasonInvalid is used in the response to the client'}
												alternative
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_validations_reason_Unauthorized {doc 'Specific value: Unauthorized'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_validations_reason_Forbidden {doc 'Specific value: Forbidden'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_validations_reason_Invalid {doc 'Specific value: Invalid'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_validations_reason_RequestEntityTooLarge {doc 'Specific value: RequestEntityTooLarge'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_variables cardinality [1..*] {doc 'Variables contain definitions of variables that can be used in composition of other expressions Each variable is defined as a named CEL expression The variables defined here will be available under variables in other expressions of the policy except MatchConditions because MatchConditions are evaluated before the rest of the policyThe expression of a variable can refer to other variables defined earlier in the list but not those after Thus, Variables must be sorted by the order of first appearance and acyclic'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_variables_expression {doc 'Expression is the expression that will be evaluated as the value of the variable The CEL expression has access to the same identifiers as the CEL expressions in Validation'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_variables_name {doc 'Name is the name of the variable The name must be a valid CEL identifier and unique among all variables The variable can be accessed in other expressions through variables For example, if name is foo, the variable will be available as variablesfoo'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_status {doc 'The status of the ValidatingAdmissionPolicy, including warnings that are useful to determine if the policy behaves in the expected way Populated by the system Read-only'}
								optional
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_status_conditions cardinality [1..*] {doc 'The conditions represent the latest available observations of a policy_s current state'}
										mandatory
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another This should be when the underlying condition changed  If that is not known, then using the time when the API field changed is acceptable'}
												optional
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_status_conditions_message {doc 'message is a human readable message indicating details about the transition This may be an empty string'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_status_conditions_reason {doc 'reason contains a programmatic identifier indicating the reason for the condition_s last transition Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API The value should be a CamelCase string This field may not be empty'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_status_conditions_status {doc 'status of the condition, one of True, False, Unknown'}
												alternative
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_status_conditions_status_True {doc 'Specific value: True'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_status_conditions_type {doc 'type of condition in CamelCase or in fooexamplecom/CamelCase'}
										optional
											Integer io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_status_conditions_observedGeneration {doc 'observedGeneration represents the metadatageneration that the condition was set based upon For instance, if metadatageneration is currently 12, but the statusconditions[x]observedGeneration is 9, the condition is out of date with respect to the current state of the instance'}
									Integer io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_status_observedGeneration {doc 'The generation observed by the controller'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_status_typeChecking {doc 'The results of type checking for each expression Presence of this field indicates the completion of the type checking'}
										optional
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_status_typeChecking_expressionWarnings cardinality [1..*] {doc 'The type checking warnings for each expression'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_status_typeChecking_expressionWarnings_fieldRef {doc 'The path to the field that refers the expression For example, the reference to the expression of the first item of validations is specvalidations[0]expression'}
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_status_typeChecking_expressionWarnings_warning {doc 'The content of type checking information in a human-readable form Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler'}
					String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_kind {default 'ValidatingAdmissionPolicyList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec {doc 'ValidatingAdmissionPolicySpec is the specification of the desired behavior of the AdmissionPolicy'}
				mandatory
					io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints {doc 'MatchConstraints specifies what resources this policy is designed to validate The AdmissionPolicy cares about a request if it matches _all_ Constraints However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding Required'}
						optional
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules cardinality [1..*] {doc 'ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
								mandatory
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
										alternative
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_scope_Cluster {doc 'Specific value: Cluster'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_scope_estrella {default, doc 'Specific value: estrella'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy {doc 'matchPolicy defines how the MatchResources list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicyDefaults to Equivalent'}
								alternative
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy_apps {doc 'Specific value: apps'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy_MatchResources {doc 'Specific value: MatchResources'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy_deployments {doc 'Specific value: deployments'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy_rules {doc 'Specific value: rules'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy_v1 {doc 'Specific value: v1'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy_Exact {doc 'Specific value: Exact'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector {doc 'NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the policyFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the policy on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
								optional
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector {doc 'ObjectSelector decides whether to run the validation based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
								optional
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules cardinality [1..*] {doc 'ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches The policy cares about an operation if it matches _any_ Rule'}
								mandatory
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
										mandatory
											String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
										alternative
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_scope_Cluster {doc 'Specific value: Cluster'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
											io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_scope_estrella {default, doc 'Specific value: estrella'}
				optional
					io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_auditAnnotations cardinality [1..*] {doc 'auditAnnotations contains CEL expressions which are used to produce audit annotations for the audit event of the API request validations and auditAnnotations may not both be empty; a least one of validations or auditAnnotations is required'}
						mandatory
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_auditAnnotations_key {doc 'key specifies the audit annotation key The audit annotation keys of a ValidatingAdmissionPolicy must be unique The key must be a qualified name ([A-Za-z0-9][-A-Za-z0-9_]*) no more than 63 bytes in lengthThe key is combined with the resource name of the ValidatingAdmissionPolicy to construct an audit annotation key: ValidatingAdmissionPolicy name/keyIf an admission webhook uses the same resource name as this ValidatingAdmissionPolicy and the same audit annotation key, the annotation key will be identical In this case, the first annotation written with the key will be included in the audit event and all subsequent annotations with the same key will be discardedRequired'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_auditAnnotations_valueExpression {doc 'valueExpression represents the expression which is evaluated by CEL to produce an audit annotation value The expression must evaluate to either a string or null value If the expression evaluates to a string, the audit annotation is included with the string value If the expression evaluates to null or empty string the audit annotation will be omitted The valueExpression may be no longer than 5kb in length If the result of the valueExpression is more than 10kb in length, it will be truncated to 10kbIf multiple ValidatingAdmissionPolicyBinding resources match an API request, then the valueExpression will be evaluated for each binding All unique values produced by the valueExpressions will be joined together in a comma-separated listRequired'}
					io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_failurePolicy {doc 'failurePolicy defines how to handle failures for the admission policy Failures can occur from CEL expression parse errors, type check errors, runtime errors and invalid or mis-configured policy definitions or bindingsA policy is invalid if specparamKind refers to a non-existent Kind A binding is invalid if specparamRefname refers to a non-existent resourcefailurePolicy does not define how validations that evaluate to false are handledWhen failurePolicy is set to Fail, ValidatingAdmissionPolicyBinding validationActions define how failures are enforcedAllowed values are Ignore or Fail Defaults to Fail'}
						alternative
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_failurePolicy_Fail {default, doc 'Specific value: Fail'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_failurePolicy_Ignore {doc 'Specific value: Ignore'}
					io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConditions cardinality [1..*] {doc 'MatchConditions is a list of conditions that must be met for a request to be validated Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector An empty list of matchConditions matches all requests There are a maximum of 64 match conditions allowedIf a parameter object is provided, it can be accessed via the params handle in the same manner as validation expressionsThe exact matching logic is (in order):  1 If ANY matchCondition evaluates to FALSE, the policy is skipped  2 If ALL matchConditions evaluate to TRUE, the policy is evaluated  3 If any matchCondition evaluates to an error (but none are FALSE):     - If failurePolicy=Fail, reject the request     - If failurePolicy=Ignore, the policy is skipped'}
						mandatory
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConditions_expression {doc 'Expression represents the expression which will be evaluated by CEL Must evaluate to bool CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:_object_ - The object from the incoming request The value is null for DELETE requests _oldObject_ - The existing object The value is null for CREATE requests _request_ - Attributes of the admission request(/pkg/apis/admission/typesgo#AdmissionRequest) _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz_authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceDocumentation on CEL: https:_kubernetesio/docs/reference/using-api/cel/Required'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConditions_name {doc 'Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes A good name should be descriptive of the associated expression Name must be a qualified name consisting of alphanumeric characters, _-_, ___ or __, and must start and end with an alphanumeric character (eg _MyName_,  or _myname_,  or _123-abc_, regex used for validation is _([A-Za-z0-9][-A-Za-z0-9_]*)?[A-Za-z0-9]_) with an optional DNS subdomain prefix and _/_ (eg _examplecom/MyName_)Required'}
					io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_paramKind {doc 'ParamKind specifies the kind of resources used to parameterize this policy If absent, there are no parameters for this policy and the param CEL variable will not be provided to validation expressions If ParamKind refers to a non-existent kind, this policy definition is mis-configured and the FailurePolicy is applied If paramKind is specified but paramRef is unset in ValidatingAdmissionPolicyBinding, the params variable will be null'}
						mandatory
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_paramKind_apiVersion {doc 'APIVersion is the API group version the resources belong to In format of group/version Required'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_paramKind_kind {doc 'Kind is the API kind the resources belong to Required'}
					io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_validations cardinality [1..*] {doc 'Validations contain CEL expressions which is used to apply the validation Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is required'}
						mandatory
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_validations_expression {doc 'Expression represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:- _object_ - The object from the incoming request The value is null for DELETE requests - _oldObject_ - The existing object The value is null for CREATE requests - _request_ - Attributes of the API request([ref](/pkg/apis/admission/typesgo#AdmissionRequest)) - _params_ - Parameter resource referred to by the policy binding being evaluated Only populated if the policy has a ParamKind - _namespaceObject_ - The namespace object that the incoming object belongs to The value is null for cluster-scoped resources - _variables_ - Map of composited variables, from its name to its lazily evaluated value  For example, a variable named _foo_ can be accessed as _variablesfoo_- _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz- _authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceThe apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object No other metadata properties are accessibleOnly 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, returnExamples:  - Expression accessing a property named namespace: Expression: object__namespace__ > 0  - Expression accessing a property named x-prop: Expression: objectx__dash__prop > 0  - Expression accessing a property named redact__d: Expression: objectredact__underscores__d > 0Equality on arrays with list type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderRequired'}
						optional
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_validations_message {doc 'Message represents the message displayed when validation fails The message is required if the Expression contains line breaks The message must not contain line breaks If unset, the message is failed rule: Rule eg must be a URL with the host matching spechost If the Expression contains line breaks Message is required The message must not contain line breaks If unset, the message is failed Expression: Expression'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_validations_messageExpression {doc '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 validation, 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 expression except for _authorizer_ and _authorizerrequestResource_ Example: objectx must be less than max (+string(paramsmax)+)'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_validations_reason {doc 'Reason represents a machine-readable description of why this validation failed If this is the first validation in the list to fail, this reason, as well as the corresponding HTTP response code, are used in the HTTP response to the client The currently supported reasons are: Unauthorized, Forbidden, Invalid, RequestEntityTooLarge If not set, StatusReasonInvalid is used in the response to the client'}
								alternative
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_validations_reason_Unauthorized {doc 'Specific value: Unauthorized'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_validations_reason_Forbidden {doc 'Specific value: Forbidden'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_validations_reason_Invalid {doc 'Specific value: Invalid'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_validations_reason_RequestEntityTooLarge {doc 'Specific value: RequestEntityTooLarge'}
					io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_variables cardinality [1..*] {doc 'Variables contain definitions of variables that can be used in composition of other expressions Each variable is defined as a named CEL expression The variables defined here will be available under variables in other expressions of the policy except MatchConditions because MatchConditions are evaluated before the rest of the policyThe expression of a variable can refer to other variables defined earlier in the list but not those after Thus, Variables must be sorted by the order of first appearance and acyclic'}
						mandatory
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_variables_expression {doc 'Expression is the expression that will be evaluated as the value of the variable The CEL expression has access to the same identifiers as the CEL expressions in Validation'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_variables_name {doc 'Name is the name of the variable The name must be a valid CEL identifier and unique among all variables The variable can be accessed in other expressions through variables For example, if name is foo, the variable will be available as variablesfoo'}
			io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyStatus {doc 'ValidatingAdmissionPolicyStatus represents the status of a ValidatingAdmissionPolicy'}
				optional
					io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyStatus_conditions cardinality [1..*] {doc 'The conditions represent the latest available observations of a policy_s current state'}
						mandatory
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyStatus_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another This should be when the underlying condition changed  If that is not known, then using the time when the API field changed is acceptable'}
								optional
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyStatus_conditions_message {doc 'message is a human readable message indicating details about the transition This may be an empty string'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyStatus_conditions_reason {doc 'reason contains a programmatic identifier indicating the reason for the condition_s last transition Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API The value should be a CamelCase string This field may not be empty'}
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyStatus_conditions_status {doc 'status of the condition, one of True, False, Unknown'}
								alternative
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyStatus_conditions_status_True {doc 'Specific value: True'}
							String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyStatus_conditions_type {doc 'type of condition in CamelCase or in fooexamplecom/CamelCase'}
						optional
							Integer io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyStatus_conditions_observedGeneration {doc 'observedGeneration represents the metadatageneration that the condition was set based upon For instance, if metadatageneration is currently 12, but the statusconditions[x]observedGeneration is 9, the condition is out of date with respect to the current state of the instance'}
					Integer io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyStatus_observedGeneration {doc 'The generation observed by the controller'}
					io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyStatus_typeChecking {doc 'The results of type checking for each expression Presence of this field indicates the completion of the type checking'}
						optional
							io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyStatus_typeChecking_expressionWarnings cardinality [1..*] {doc 'The type checking warnings for each expression'}
								mandatory
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyStatus_typeChecking_expressionWarnings_fieldRef {doc 'The path to the field that refers the expression For example, the reference to the expression of the first item of validations is specvalidations[0]expression'}
									String io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyStatus_typeChecking_expressionWarnings_warning {doc 'The content of type checking information in a human-readable form Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler'}
			io_k8s_api_admissionregistration_v1alpha1_Validation {doc 'Validation specifies the CEL expression which is used to apply the validation'}
				mandatory
					String io_k8s_api_admissionregistration_v1alpha1_Validation_expression {doc 'Expression represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:- _object_ - The object from the incoming request The value is null for DELETE requests - _oldObject_ - The existing object The value is null for CREATE requests - _request_ - Attributes of the API request([ref](/pkg/apis/admission/typesgo#AdmissionRequest)) - _params_ - Parameter resource referred to by the policy binding being evaluated Only populated if the policy has a ParamKind - _namespaceObject_ - The namespace object that the incoming object belongs to The value is null for cluster-scoped resources - _variables_ - Map of composited variables, from its name to its lazily evaluated value  For example, a variable named _foo_ can be accessed as _variablesfoo_- _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz- _authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceThe apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object No other metadata properties are accessibleOnly 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, returnExamples:  - Expression accessing a property named namespace: Expression: object__namespace__ > 0  - Expression accessing a property named x-prop: Expression: objectx__dash__prop > 0  - Expression accessing a property named redact__d: Expression: objectredact__underscores__d > 0Equality on arrays with list type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderRequired'}
				optional
					String io_k8s_api_admissionregistration_v1alpha1_Validation_message {doc 'Message represents the message displayed when validation fails The message is required if the Expression contains line breaks The message must not contain line breaks If unset, the message is failed rule: Rule eg must be a URL with the host matching spechost If the Expression contains line breaks Message is required The message must not contain line breaks If unset, the message is failed Expression: Expression'}
					String io_k8s_api_admissionregistration_v1alpha1_Validation_messageExpression {doc '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 validation, 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 expression except for _authorizer_ and _authorizerrequestResource_ Example: objectx must be less than max (+string(paramsmax)+)'}
					io_k8s_api_admissionregistration_v1alpha1_Validation_reason {doc 'Reason represents a machine-readable description of why this validation failed If this is the first validation in the list to fail, this reason, as well as the corresponding HTTP response code, are used in the HTTP response to the client The currently supported reasons are: Unauthorized, Forbidden, Invalid, RequestEntityTooLarge If not set, StatusReasonInvalid is used in the response to the client'}
						alternative
							io_k8s_api_admissionregistration_v1alpha1_Validation_reason_Unauthorized {doc 'Specific value: Unauthorized'}
							io_k8s_api_admissionregistration_v1alpha1_Validation_reason_Forbidden {doc 'Specific value: Forbidden'}
							io_k8s_api_admissionregistration_v1alpha1_Validation_reason_Invalid {doc 'Specific value: Invalid'}
							io_k8s_api_admissionregistration_v1alpha1_Validation_reason_RequestEntityTooLarge {doc 'Specific value: RequestEntityTooLarge'}
			io_k8s_api_admissionregistration_v1alpha1_Variable {doc 'Variable is the definition of a variable that is used for composition'}
				mandatory
					String io_k8s_api_admissionregistration_v1alpha1_Variable_expression {doc 'Expression is the expression that will be evaluated as the value of the variable The CEL expression has access to the same identifiers as the CEL expressions in Validation'}
					String io_k8s_api_admissionregistration_v1alpha1_Variable_name {doc 'Name is the name of the variable The name must be a valid CEL identifier and unique among all variables The variable can be accessed in other expressions through variables For example, if name is foo, the variable will be available as variablesfoo'}
			io_k8s_api_admissionregistration_v1beta1_AuditAnnotation {doc 'AuditAnnotation describes how to produce an audit annotation for an API request'}
				mandatory
					String io_k8s_api_admissionregistration_v1beta1_AuditAnnotation_key {doc 'key specifies the audit annotation key The audit annotation keys of a ValidatingAdmissionPolicy must be unique The key must be a qualified name ([A-Za-z0-9][-A-Za-z0-9_]*) no more than 63 bytes in lengthThe key is combined with the resource name of the ValidatingAdmissionPolicy to construct an audit annotation key: ValidatingAdmissionPolicy name/keyIf an admission webhook uses the same resource name as this ValidatingAdmissionPolicy and the same audit annotation key, the annotation key will be identical In this case, the first annotation written with the key will be included in the audit event and all subsequent annotations with the same key will be discardedRequired'}
					String io_k8s_api_admissionregistration_v1beta1_AuditAnnotation_valueExpression {doc 'valueExpression represents the expression which is evaluated by CEL to produce an audit annotation value The expression must evaluate to either a string or null value If the expression evaluates to a string, the audit annotation is included with the string value If the expression evaluates to null or empty string the audit annotation will be omitted The valueExpression may be no longer than 5kb in length If the result of the valueExpression is more than 10kb in length, it will be truncated to 10kbIf multiple ValidatingAdmissionPolicyBinding resources match an API request, then the valueExpression will be evaluated for each binding All unique values produced by the valueExpressions will be joined together in a comma-separated listRequired'}
			io_k8s_api_admissionregistration_v1beta1_ExpressionWarning {doc 'ExpressionWarning is a warning information that targets a specific expression'}
				mandatory
					String io_k8s_api_admissionregistration_v1beta1_ExpressionWarning_fieldRef {doc 'The path to the field that refers the expression For example, the reference to the expression of the first item of validations is specvalidations[0]expression'}
					String io_k8s_api_admissionregistration_v1beta1_ExpressionWarning_warning {doc 'The content of type checking information in a human-readable form Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler'}
			io_k8s_api_admissionregistration_v1beta1_MatchCondition {doc 'MatchCondition represents a condition which must be fulfilled for a request to be sent to a webhook'}
				mandatory
					String io_k8s_api_admissionregistration_v1beta1_MatchCondition_expression {doc 'Expression represents the expression which will be evaluated by CEL Must evaluate to bool CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:_object_ - The object from the incoming request The value is null for DELETE requests _oldObject_ - The existing object The value is null for CREATE requests _request_ - Attributes of the admission request(/pkg/apis/admission/typesgo#AdmissionRequest) _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz_authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceDocumentation on CEL: https:_kubernetesio/docs/reference/using-api/cel/Required'}
					String io_k8s_api_admissionregistration_v1beta1_MatchCondition_name {doc 'Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes A good name should be descriptive of the associated expression Name must be a qualified name consisting of alphanumeric characters, _-_, ___ or __, and must start and end with an alphanumeric character (eg _MyName_,  or _myname_,  or _123-abc_, regex used for validation is _([A-Za-z0-9][-A-Za-z0-9_]*)?[A-Za-z0-9]_) with an optional DNS subdomain prefix and _/_ (eg _examplecom/MyName_)Required'}
			io_k8s_api_admissionregistration_v1beta1_MatchResources {doc 'MatchResources decides whether to run the admission control policy on an object based on whether it meets the match criteria The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
				optional
					io_k8s_api_admissionregistration_v1beta1_MatchResources_excludeResourceRules cardinality [1..*] {doc 'ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
						mandatory
							io_k8s_api_admissionregistration_v1beta1_MatchResources_excludeResourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_MatchResources_excludeResourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1beta1_MatchResources_excludeResourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_MatchResources_excludeResourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1beta1_MatchResources_excludeResourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_MatchResources_excludeResourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1beta1_MatchResources_excludeResourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_MatchResources_excludeResourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							io_k8s_api_admissionregistration_v1beta1_MatchResources_excludeResourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_MatchResources_excludeResourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1beta1_MatchResources_excludeResourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
								alternative
									io_k8s_api_admissionregistration_v1beta1_MatchResources_excludeResourceRules_scope_Cluster {doc 'Specific value: Cluster'}
									io_k8s_api_admissionregistration_v1beta1_MatchResources_excludeResourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
									io_k8s_api_admissionregistration_v1beta1_MatchResources_excludeResourceRules_scope_estrella {default, doc 'Specific value: estrella'}
					io_k8s_api_admissionregistration_v1beta1_MatchResources_matchPolicy {doc 'matchPolicy defines how the MatchResources list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicyDefaults to Equivalent'}
						alternative
							io_k8s_api_admissionregistration_v1beta1_MatchResources_matchPolicy_apps {doc 'Specific value: apps'}
							io_k8s_api_admissionregistration_v1beta1_MatchResources_matchPolicy_MatchResources {doc 'Specific value: MatchResources'}
							io_k8s_api_admissionregistration_v1beta1_MatchResources_matchPolicy_deployments {doc 'Specific value: deployments'}
							io_k8s_api_admissionregistration_v1beta1_MatchResources_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
							io_k8s_api_admissionregistration_v1beta1_MatchResources_matchPolicy_rules {doc 'Specific value: rules'}
							io_k8s_api_admissionregistration_v1beta1_MatchResources_matchPolicy_v1 {doc 'Specific value: v1'}
							io_k8s_api_admissionregistration_v1beta1_MatchResources_matchPolicy_Exact {doc 'Specific value: Exact'}
					io_k8s_api_admissionregistration_v1beta1_MatchResources_namespaceSelector {doc 'NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the policyFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the policy on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
						optional
							io_k8s_api_admissionregistration_v1beta1_MatchResources_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_MatchResources_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_admissionregistration_v1beta1_MatchResources_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_admissionregistration_v1beta1_MatchResources_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_admissionregistration_v1beta1_MatchResources_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_admissionregistration_v1beta1_MatchResources_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_admissionregistration_v1beta1_MatchResources_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_admissionregistration_v1beta1_MatchResources_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_MatchResources_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1beta1_MatchResources_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_MatchResources_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1beta1_MatchResources_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_admissionregistration_v1beta1_MatchResources_objectSelector {doc 'ObjectSelector decides whether to run the validation based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
						optional
							io_k8s_api_admissionregistration_v1beta1_MatchResources_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_MatchResources_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_admissionregistration_v1beta1_MatchResources_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_admissionregistration_v1beta1_MatchResources_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_admissionregistration_v1beta1_MatchResources_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_admissionregistration_v1beta1_MatchResources_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_admissionregistration_v1beta1_MatchResources_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_admissionregistration_v1beta1_MatchResources_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_MatchResources_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1beta1_MatchResources_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_MatchResources_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1beta1_MatchResources_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_admissionregistration_v1beta1_MatchResources_resourceRules cardinality [1..*] {doc 'ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches The policy cares about an operation if it matches _any_ Rule'}
						mandatory
							io_k8s_api_admissionregistration_v1beta1_MatchResources_resourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_MatchResources_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1beta1_MatchResources_resourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_MatchResources_resourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1beta1_MatchResources_resourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_MatchResources_resourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1beta1_MatchResources_resourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_MatchResources_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							io_k8s_api_admissionregistration_v1beta1_MatchResources_resourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_MatchResources_resourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1beta1_MatchResources_resourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
								alternative
									io_k8s_api_admissionregistration_v1beta1_MatchResources_resourceRules_scope_Cluster {doc 'Specific value: Cluster'}
									io_k8s_api_admissionregistration_v1beta1_MatchResources_resourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
									io_k8s_api_admissionregistration_v1beta1_MatchResources_resourceRules_scope_estrella {default, doc 'Specific value: estrella'}
			io_k8s_api_admissionregistration_v1beta1_NamedRuleWithOperations {doc 'NamedRuleWithOperations is a tuple of Operations and Resources with ResourceNames'}
				mandatory
					io_k8s_api_admissionregistration_v1beta1_NamedRuleWithOperations_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
						mandatory
							String io_k8s_api_admissionregistration_v1beta1_NamedRuleWithOperations_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_admissionregistration_v1beta1_NamedRuleWithOperations_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
						mandatory
							String io_k8s_api_admissionregistration_v1beta1_NamedRuleWithOperations_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_admissionregistration_v1beta1_NamedRuleWithOperations_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
						mandatory
							String io_k8s_api_admissionregistration_v1beta1_NamedRuleWithOperations_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_admissionregistration_v1beta1_NamedRuleWithOperations_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
						mandatory
							String io_k8s_api_admissionregistration_v1beta1_NamedRuleWithOperations_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					io_k8s_api_admissionregistration_v1beta1_NamedRuleWithOperations_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
						mandatory
							String io_k8s_api_admissionregistration_v1beta1_NamedRuleWithOperations_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_admissionregistration_v1beta1_NamedRuleWithOperations_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
						alternative
							io_k8s_api_admissionregistration_v1beta1_NamedRuleWithOperations_scope_Cluster {doc 'Specific value: Cluster'}
							io_k8s_api_admissionregistration_v1beta1_NamedRuleWithOperations_scope_Namespaced {doc 'Specific value: Namespaced'}
							io_k8s_api_admissionregistration_v1beta1_NamedRuleWithOperations_scope_estrella {default, doc 'Specific value: estrella'}
			io_k8s_api_admissionregistration_v1beta1_ParamKind {doc 'ParamKind is a tuple of Group Kind and Version'}
				mandatory
					String io_k8s_api_admissionregistration_v1beta1_ParamKind_apiVersion {doc 'APIVersion is the API group version the resources belong to In format of group/version Required'}
					String io_k8s_api_admissionregistration_v1beta1_ParamKind_kind {doc 'Kind is the API kind the resources belong to Required'}
			io_k8s_api_admissionregistration_v1beta1_ParamRef {doc 'ParamRef describes how to locate the params to be used as input to expressions of rules applied by a policy binding'}
				optional
					io_k8s_api_admissionregistration_v1beta1_ParamRef_name {abstract, doc 'name is the name of the resource being referencedOne of name or selector must be set, but name and selector are mutually exclusive properties If one is set, the other must be unsetA single parameter used for all admission requests can be configured by setting the name field, leaving selector blank, and setting namespace if paramKind is namespace-scoped'}
						mandatory
							String io_k8s_api_admissionregistration_v1beta1_ParamRef_name_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
					String io_k8s_api_admissionregistration_v1beta1_ParamRef_namespace {doc 'namespace is the namespace of the referenced resource Allows limiting the search for params to a specific namespace Applies to both name and selector fieldsA per-namespace parameter may be used by specifying a namespace-scoped paramKind in the policy and leaving this field empty- If paramKind is cluster-scoped, this field MUST be unset Setting this field results in a configuration error- If paramKind is namespace-scoped, the namespace of the object being evaluated for admission will be used when this field is left unset Take care that if this is left empty the binding must not match any cluster-scoped resources, which will result in an error'}
					io_k8s_api_admissionregistration_v1beta1_ParamRef_parameterNotFoundAction {doc 'parameterNotFoundAction controls the behavior of the binding when the resource exists, and name or selector is valid, but there are no parameters matched by the binding If the value is set to Allow, then no matched parameters will be treated as successful validation by the binding If set to Deny, then no matched parameters will be subject to the failurePolicy of the policyAllowed values are Allow or DenyRequired'}
						alternative
							io_k8s_api_admissionregistration_v1beta1_ParamRef_parameterNotFoundAction_Allow {doc 'Specific value: Allow'}
							io_k8s_api_admissionregistration_v1beta1_ParamRef_parameterNotFoundAction_Deny {doc 'Specific value: Deny'}
					io_k8s_api_admissionregistration_v1beta1_ParamRef_selector {doc 'selector can be used to match multiple param objects based on their labels Supply selector:  to match all resources of the ParamKindIf multiple params are found, they are all evaluated with the policy expressions and the results are ANDed togetherOne of name or selector must be set, but name and selector are mutually exclusive properties If one is set, the other must be unset'}
						optional
							io_k8s_api_admissionregistration_v1beta1_ParamRef_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_ParamRef_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_admissionregistration_v1beta1_ParamRef_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_admissionregistration_v1beta1_ParamRef_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_admissionregistration_v1beta1_ParamRef_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_admissionregistration_v1beta1_ParamRef_selector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_admissionregistration_v1beta1_ParamRef_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_admissionregistration_v1beta1_ParamRef_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ParamRef_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_admissionregistration_v1beta1_ParamRef_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_ParamRef_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1beta1_ParamRef_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
			io_k8s_api_admissionregistration_v1beta1_TypeChecking {doc 'TypeChecking contains results of type checking the expressions in the ValidatingAdmissionPolicy'}
				optional
					io_k8s_api_admissionregistration_v1beta1_TypeChecking_expressionWarnings cardinality [1..*] {doc 'The type checking warnings for each expression'}
						mandatory
							String io_k8s_api_admissionregistration_v1beta1_TypeChecking_expressionWarnings_fieldRef {doc 'The path to the field that refers the expression For example, the reference to the expression of the first item of validations is specvalidations[0]expression'}
							String io_k8s_api_admissionregistration_v1beta1_TypeChecking_expressionWarnings_warning {doc 'The content of type checking information in a human-readable form Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler'}
			io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy {doc 'ValidatingAdmissionPolicy describes the definition of an admission validation policy that accepts or rejects an object without changing it'}
				optional
					String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_kind {default 'ValidatingAdmissionPolicy', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata {doc 'Standard object metadata; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec {doc 'Specification of the desired behavior of the ValidatingAdmissionPolicy'}
						mandatory
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints {doc 'MatchConstraints specifies what resources this policy is designed to validate The AdmissionPolicy cares about a request if it matches _all_ Constraints However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding Required'}
								optional
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules cardinality [1..*] {doc 'ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
										mandatory
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
												alternative
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_scope_Cluster {doc 'Specific value: Cluster'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_excludeResourceRules_scope_estrella {default, doc 'Specific value: estrella'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy {doc 'matchPolicy defines how the MatchResources list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicyDefaults to Equivalent'}
										alternative
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy_apps {doc 'Specific value: apps'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy_MatchResources {doc 'Specific value: MatchResources'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy_deployments {doc 'Specific value: deployments'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy_rules {doc 'Specific value: rules'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy_v1 {doc 'Specific value: v1'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_matchPolicy_Exact {doc 'Specific value: Exact'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector {doc 'NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the policyFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the policy on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
										optional
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector {doc 'ObjectSelector decides whether to run the validation based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
										optional
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules cardinality [1..*] {doc 'ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches The policy cares about an operation if it matches _any_ Rule'}
										mandatory
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
												alternative
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_scope_Cluster {doc 'Specific value: Cluster'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_resourceRules_scope_estrella {default, doc 'Specific value: estrella'}
						optional
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_auditAnnotations cardinality [1..*] {doc 'auditAnnotations contains CEL expressions which are used to produce audit annotations for the audit event of the API request validations and auditAnnotations may not both be empty; a least one of validations or auditAnnotations is required'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_auditAnnotations_key {doc 'key specifies the audit annotation key The audit annotation keys of a ValidatingAdmissionPolicy must be unique The key must be a qualified name ([A-Za-z0-9][-A-Za-z0-9_]*) no more than 63 bytes in lengthThe key is combined with the resource name of the ValidatingAdmissionPolicy to construct an audit annotation key: ValidatingAdmissionPolicy name/keyIf an admission webhook uses the same resource name as this ValidatingAdmissionPolicy and the same audit annotation key, the annotation key will be identical In this case, the first annotation written with the key will be included in the audit event and all subsequent annotations with the same key will be discardedRequired'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_auditAnnotations_valueExpression {doc 'valueExpression represents the expression which is evaluated by CEL to produce an audit annotation value The expression must evaluate to either a string or null value If the expression evaluates to a string, the audit annotation is included with the string value If the expression evaluates to null or empty string the audit annotation will be omitted The valueExpression may be no longer than 5kb in length If the result of the valueExpression is more than 10kb in length, it will be truncated to 10kbIf multiple ValidatingAdmissionPolicyBinding resources match an API request, then the valueExpression will be evaluated for each binding All unique values produced by the valueExpressions will be joined together in a comma-separated listRequired'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_failurePolicy {doc 'failurePolicy defines how to handle failures for the admission policy Failures can occur from CEL expression parse errors, type check errors, runtime errors and invalid or mis-configured policy definitions or bindingsA policy is invalid if specparamKind refers to a non-existent Kind A binding is invalid if specparamRefname refers to a non-existent resourcefailurePolicy does not define how validations that evaluate to false are handledWhen failurePolicy is set to Fail, ValidatingAdmissionPolicyBinding validationActions define how failures are enforcedAllowed values are Ignore or Fail Defaults to Fail'}
								alternative
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_failurePolicy_Fail {default, doc 'Specific value: Fail'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_failurePolicy_Ignore {doc 'Specific value: Ignore'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConditions cardinality [1..*] {doc 'MatchConditions is a list of conditions that must be met for a request to be validated Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector An empty list of matchConditions matches all requests There are a maximum of 64 match conditions allowedIf a parameter object is provided, it can be accessed via the params handle in the same manner as validation expressionsThe exact matching logic is (in order):  1 If ANY matchCondition evaluates to FALSE, the policy is skipped  2 If ALL matchConditions evaluate to TRUE, the policy is evaluated  3 If any matchCondition evaluates to an error (but none are FALSE):     - If failurePolicy=Fail, reject the request     - If failurePolicy=Ignore, the policy is skipped'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConditions_expression {doc 'Expression represents the expression which will be evaluated by CEL Must evaluate to bool CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:_object_ - The object from the incoming request The value is null for DELETE requests _oldObject_ - The existing object The value is null for CREATE requests _request_ - Attributes of the admission request(/pkg/apis/admission/typesgo#AdmissionRequest) _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz_authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceDocumentation on CEL: https:_kubernetesio/docs/reference/using-api/cel/Required'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConditions_name {doc 'Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes A good name should be descriptive of the associated expression Name must be a qualified name consisting of alphanumeric characters, _-_, ___ or __, and must start and end with an alphanumeric character (eg _MyName_,  or _myname_,  or _123-abc_, regex used for validation is _([A-Za-z0-9][-A-Za-z0-9_]*)?[A-Za-z0-9]_) with an optional DNS subdomain prefix and _/_ (eg _examplecom/MyName_)Required'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_paramKind {doc 'ParamKind specifies the kind of resources used to parameterize this policy If absent, there are no parameters for this policy and the param CEL variable will not be provided to validation expressions If ParamKind refers to a non-existent kind, this policy definition is mis-configured and the FailurePolicy is applied If paramKind is specified but paramRef is unset in ValidatingAdmissionPolicyBinding, the params variable will be null'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_paramKind_apiVersion {doc 'APIVersion is the API group version the resources belong to In format of group/version Required'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_paramKind_kind {doc 'Kind is the API kind the resources belong to Required'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_validations cardinality [1..*] {doc 'Validations contain CEL expressions which is used to apply the validation Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is required'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_validations_expression {doc 'Expression represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:- _object_ - The object from the incoming request The value is null for DELETE requests - _oldObject_ - The existing object The value is null for CREATE requests - _request_ - Attributes of the API request([ref](/pkg/apis/admission/typesgo#AdmissionRequest)) - _params_ - Parameter resource referred to by the policy binding being evaluated Only populated if the policy has a ParamKind - _namespaceObject_ - The namespace object that the incoming object belongs to The value is null for cluster-scoped resources - _variables_ - Map of composited variables, from its name to its lazily evaluated value  For example, a variable named _foo_ can be accessed as _variablesfoo_- _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz- _authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceThe apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object No other metadata properties are accessibleOnly 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, returnExamples:  - Expression accessing a property named namespace: Expression: object__namespace__ > 0  - Expression accessing a property named x-prop: Expression: objectx__dash__prop > 0  - Expression accessing a property named redact__d: Expression: objectredact__underscores__d > 0Equality on arrays with list type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderRequired'}
								optional
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_validations_message {doc 'Message represents the message displayed when validation fails The message is required if the Expression contains line breaks The message must not contain line breaks If unset, the message is failed rule: Rule eg must be a URL with the host matching spechost If the Expression contains line breaks Message is required The message must not contain line breaks If unset, the message is failed Expression: Expression'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_validations_messageExpression {doc '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 validation, 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 expression except for _authorizer_ and _authorizerrequestResource_ Example: objectx must be less than max (+string(paramsmax)+)'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_validations_reason {doc 'Reason represents a machine-readable description of why this validation failed If this is the first validation in the list to fail, this reason, as well as the corresponding HTTP response code, are used in the HTTP response to the client The currently supported reasons are: Unauthorized, Forbidden, Invalid, RequestEntityTooLarge If not set, StatusReasonInvalid is used in the response to the client'}
										alternative
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_validations_reason_Unauthorized {doc 'Specific value: Unauthorized'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_validations_reason_Forbidden {doc 'Specific value: Forbidden'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_validations_reason_Invalid {doc 'Specific value: Invalid'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_validations_reason_RequestEntityTooLarge {doc 'Specific value: RequestEntityTooLarge'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_variables cardinality [1..*] {doc 'Variables contain definitions of variables that can be used in composition of other expressions Each variable is defined as a named CEL expression The variables defined here will be available under variables in other expressions of the policy except MatchConditions because MatchConditions are evaluated before the rest of the policyThe expression of a variable can refer to other variables defined earlier in the list but not those after Thus, Variables must be sorted by the order of first appearance and acyclic'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_variables_expression {doc 'Expression is the expression that will be evaluated as the value of the variable The CEL expression has access to the same identifiers as the CEL expressions in Validation'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_variables_name {doc 'Name is the name of the variable The name must be a valid CEL identifier and unique among all variables The variable can be accessed in other expressions through variables For example, if name is foo, the variable will be available as variablesfoo'}
					io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_status {doc 'The status of the ValidatingAdmissionPolicy, including warnings that are useful to determine if the policy behaves in the expected way Populated by the system Read-only'}
						optional
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_status_conditions cardinality [1..*] {doc 'The conditions represent the latest available observations of a policy_s current state'}
								mandatory
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another This should be when the underlying condition changed  If that is not known, then using the time when the API field changed is acceptable'}
										optional
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_status_conditions_message {doc 'message is a human readable message indicating details about the transition This may be an empty string'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_status_conditions_reason {doc 'reason contains a programmatic identifier indicating the reason for the condition_s last transition Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API The value should be a CamelCase string This field may not be empty'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_status_conditions_status {doc 'status of the condition, one of True, False, Unknown'}
										alternative
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_status_conditions_status_True {doc 'Specific value: True'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_status_conditions_type {doc 'type of condition in CamelCase or in fooexamplecom/CamelCase'}
								optional
									Integer io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_status_conditions_observedGeneration {doc 'observedGeneration represents the metadatageneration that the condition was set based upon For instance, if metadatageneration is currently 12, but the statusconditions[x]observedGeneration is 9, the condition is out of date with respect to the current state of the instance'}
							Integer io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_status_observedGeneration {doc 'The generation observed by the controller'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_status_typeChecking {doc 'The results of type checking for each expression Presence of this field indicates the completion of the type checking'}
								optional
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_status_typeChecking_expressionWarnings cardinality [1..*] {doc 'The type checking warnings for each expression'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_status_typeChecking_expressionWarnings_fieldRef {doc 'The path to the field that refers the expression For example, the reference to the expression of the first item of validations is specvalidations[0]expression'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_status_typeChecking_expressionWarnings_warning {doc 'The content of type checking information in a human-readable form Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler'}
			io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding {doc 'ValidatingAdmissionPolicyBinding binds the ValidatingAdmissionPolicy with paramerized resources ValidatingAdmissionPolicyBinding and parameter CRDs together define how cluster administrators configure policies for clustersFor a given admission request, each binding will cause its policy to be evaluated N times, where N is 1 for policies/bindings that don_t use params, otherwise N is the number of parameters selected by the bindingThe CEL expressions of a policy must have a computed CEL cost below the maximum CEL budget Each evaluation of the policy is given an independent CEL cost budget Adding/removing policies, bindings, or params can not affect whether a given (policy, binding, param) combination is within its own CEL budget'}
				optional
					String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_kind {default 'ValidatingAdmissionPolicyBinding', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata {doc 'Standard object metadata; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec {doc 'Specification of the desired behavior of the ValidatingAdmissionPolicyBinding'}
						mandatory
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_policyName {doc 'PolicyName references a ValidatingAdmissionPolicy name which the ValidatingAdmissionPolicyBinding binds to If the referenced resource does not exist, this binding is considered invalid and will be ignored Required'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_validationActions cardinality [1..*] {doc 'validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced If a validation evaluates to false it is always enforced according to these actionsFailures defined by the ValidatingAdmissionPolicy_s FailurePolicy are enforced according to these actions only if the FailurePolicy is set to Fail, otherwise the failures are ignored This includes compilation errors, runtime errors and misconfigurations of the policyvalidationActions is declared as a set of action values Order does not matter validationActions may not contain duplicates of the same actionThe supported actions values are:Deny specifies that a validation failure results in a denied requestWarn specifies that a validation failure is reported to the request client in HTTP Warning headers, with a warning code of 299 Warnings can be sent both for allowed or denied admission responsesAudit specifies that a validation failure is included in the published audit event for the request The audit event will contain a validationpolicyadmissionk8sio/validation_failure audit annotation with a value containing the details of the validation failures, formatted as a JSON list of objects, each with the following fields: - message: The validation failure message string - policy: The resource name of the ValidatingAdmissionPolicy - binding: The resource name of the ValidatingAdmissionPolicyBinding - expressionIndex: The index of the failed validations in the ValidatingAdmissionPolicy - validationActions: The enforcement actions enacted for the validation failure Example audit annotation: validationpolicyadmissionk8sio/validation_failure: [message: Invalid value, policy: policyexamplecom, binding: policybindingexamplecom, expressionIndex: 1, validationActions: [Audit]]Clients should expect to handle additional values by ignoring any values not recognizedDeny and Warn may not be used together since this combination needlessly duplicates the validation failure both in the API response body and the HTTP warning headersRequired'}
								alternative
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_validationActions_Audit {doc 'Specific value: Audit'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_validationActions_expressionIndex {doc 'Specific value: expressionIndex'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_validationActions_policy {doc 'Specific value: policy'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_validationActions_Warn {doc 'Specific value: Warn'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_validationActions_message {doc 'Specific value: message'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_validationActions_Deny {doc 'Specific value: Deny'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_validationActions_validationActions {doc 'Specific value: validationActions'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_validationActions_binding {doc 'Specific value: binding'}
						optional
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources {doc 'MatchResources declares what resources match this binding and will be validated by it Note that this is intersected with the policy_s matchConstraints, so only requests that are matched by the policy can be selected by this If this is unset, all resources matched by the policy are validated by this binding When resourceRules is unset, it does not constrain resource matching If a resource is matched by the other fields of this object, it will be validated Note that this is differs from ValidatingAdmissionPolicy matchConstraints, where resourceRules are required'}
								optional
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules cardinality [1..*] {doc 'ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
										mandatory
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
												alternative
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_scope_Cluster {doc 'Specific value: Cluster'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_excludeResourceRules_scope_estrella {default, doc 'Specific value: estrella'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy {doc 'matchPolicy defines how the MatchResources list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicyDefaults to Equivalent'}
										alternative
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy_apps {doc 'Specific value: apps'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy_MatchResources {doc 'Specific value: MatchResources'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy_deployments {doc 'Specific value: deployments'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy_rules {doc 'Specific value: rules'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy_v1 {doc 'Specific value: v1'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_matchPolicy_Exact {doc 'Specific value: Exact'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector {doc 'NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the policyFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the policy on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
										optional
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector {doc 'ObjectSelector decides whether to run the validation based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
										optional
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules cardinality [1..*] {doc 'ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches The policy cares about an operation if it matches _any_ Rule'}
										mandatory
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
												alternative
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_scope_Cluster {doc 'Specific value: Cluster'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_resourceRules_scope_estrella {default, doc 'Specific value: estrella'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef {doc 'paramRef specifies the parameter resource used to configure the admission control policy It should point to a resource of the type specified in ParamKind of the bound ValidatingAdmissionPolicy If the policy specifies a ParamKind and the resource referred to by ParamRef does not exist, this binding is considered mis-configured and the FailurePolicy of the ValidatingAdmissionPolicy applied If the policy does not specify a ParamKind then this field is ignored, and the rules are evaluated without a param'}
								optional
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_name {abstract, doc 'name is the name of the resource being referencedOne of name or selector must be set, but name and selector are mutually exclusive properties If one is set, the other must be unsetA single parameter used for all admission requests can be configured by setting the name field, leaving selector blank, and setting namespace if paramKind is namespace-scoped'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_name_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_namespace {doc 'namespace is the namespace of the referenced resource Allows limiting the search for params to a specific namespace Applies to both name and selector fieldsA per-namespace parameter may be used by specifying a namespace-scoped paramKind in the policy and leaving this field empty- If paramKind is cluster-scoped, this field MUST be unset Setting this field results in a configuration error- If paramKind is namespace-scoped, the namespace of the object being evaluated for admission will be used when this field is left unset Take care that if this is left empty the binding must not match any cluster-scoped resources, which will result in an error'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_parameterNotFoundAction {doc 'parameterNotFoundAction controls the behavior of the binding when the resource exists, and name or selector is valid, but there are no parameters matched by the binding If the value is set to Allow, then no matched parameters will be treated as successful validation by the binding If set to Deny, then no matched parameters will be subject to the failurePolicy of the policyAllowed values are Allow or DenyRequired'}
										alternative
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_parameterNotFoundAction_Allow {doc 'Specific value: Allow'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_parameterNotFoundAction_Deny {doc 'Specific value: Deny'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector {doc 'selector can be used to match multiple param objects based on their labels Supply selector:  to match all resources of the ParamKindIf multiple params are found, they are all evaluated with the policy expressions and the results are ANDed togetherOne of name or selector must be set, but name and selector are mutually exclusive properties If one is set, the other must be unset'}
										optional
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
			io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList {doc 'ValidatingAdmissionPolicyBindingList is a list of ValidatingAdmissionPolicyBinding'}
				optional
					String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items cardinality [1..*] {doc 'List of PolicyBinding'}
						optional
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_kind {default 'ValidatingAdmissionPolicyBinding', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata {doc 'Standard object metadata; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec {doc 'Specification of the desired behavior of the ValidatingAdmissionPolicyBinding'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_policyName {doc 'PolicyName references a ValidatingAdmissionPolicy name which the ValidatingAdmissionPolicyBinding binds to If the referenced resource does not exist, this binding is considered invalid and will be ignored Required'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions cardinality [1..*] {doc 'validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced If a validation evaluates to false it is always enforced according to these actionsFailures defined by the ValidatingAdmissionPolicy_s FailurePolicy are enforced according to these actions only if the FailurePolicy is set to Fail, otherwise the failures are ignored This includes compilation errors, runtime errors and misconfigurations of the policyvalidationActions is declared as a set of action values Order does not matter validationActions may not contain duplicates of the same actionThe supported actions values are:Deny specifies that a validation failure results in a denied requestWarn specifies that a validation failure is reported to the request client in HTTP Warning headers, with a warning code of 299 Warnings can be sent both for allowed or denied admission responsesAudit specifies that a validation failure is included in the published audit event for the request The audit event will contain a validationpolicyadmissionk8sio/validation_failure audit annotation with a value containing the details of the validation failures, formatted as a JSON list of objects, each with the following fields: - message: The validation failure message string - policy: The resource name of the ValidatingAdmissionPolicy - binding: The resource name of the ValidatingAdmissionPolicyBinding - expressionIndex: The index of the failed validations in the ValidatingAdmissionPolicy - validationActions: The enforcement actions enacted for the validation failure Example audit annotation: validationpolicyadmissionk8sio/validation_failure: [message: Invalid value, policy: policyexamplecom, binding: policybindingexamplecom, expressionIndex: 1, validationActions: [Audit]]Clients should expect to handle additional values by ignoring any values not recognizedDeny and Warn may not be used together since this combination needlessly duplicates the validation failure both in the API response body and the HTTP warning headersRequired'}
										alternative
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_Audit {doc 'Specific value: Audit'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_expressionIndex {doc 'Specific value: expressionIndex'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_policy {doc 'Specific value: policy'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_Warn {doc 'Specific value: Warn'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_message {doc 'Specific value: message'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_Deny {doc 'Specific value: Deny'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_validationActions {doc 'Specific value: validationActions'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_validationActions_binding {doc 'Specific value: binding'}
								optional
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources {doc 'MatchResources declares what resources match this binding and will be validated by it Note that this is intersected with the policy_s matchConstraints, so only requests that are matched by the policy can be selected by this If this is unset, all resources matched by the policy are validated by this binding When resourceRules is unset, it does not constrain resource matching If a resource is matched by the other fields of this object, it will be validated Note that this is differs from ValidatingAdmissionPolicy matchConstraints, where resourceRules are required'}
										optional
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules cardinality [1..*] {doc 'ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
												mandatory
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
														alternative
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_scope_Cluster {doc 'Specific value: Cluster'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_excludeResourceRules_scope_estrella {default, doc 'Specific value: estrella'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy {doc 'matchPolicy defines how the MatchResources list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicyDefaults to Equivalent'}
												alternative
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy_apps {doc 'Specific value: apps'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy_MatchResources {doc 'Specific value: MatchResources'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy_deployments {doc 'Specific value: deployments'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy_rules {doc 'Specific value: rules'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy_v1 {doc 'Specific value: v1'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_matchPolicy_Exact {doc 'Specific value: Exact'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector {doc 'NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the policyFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the policy on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
												optional
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector {doc 'ObjectSelector decides whether to run the validation based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
												optional
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules cardinality [1..*] {doc 'ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches The policy cares about an operation if it matches _any_ Rule'}
												mandatory
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
														alternative
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_scope_Cluster {doc 'Specific value: Cluster'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_resourceRules_scope_estrella {default, doc 'Specific value: estrella'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef {doc 'paramRef specifies the parameter resource used to configure the admission control policy It should point to a resource of the type specified in ParamKind of the bound ValidatingAdmissionPolicy If the policy specifies a ParamKind and the resource referred to by ParamRef does not exist, this binding is considered mis-configured and the FailurePolicy of the ValidatingAdmissionPolicy applied If the policy does not specify a ParamKind then this field is ignored, and the rules are evaluated without a param'}
										optional
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_name {abstract, doc 'name is the name of the resource being referencedOne of name or selector must be set, but name and selector are mutually exclusive properties If one is set, the other must be unsetA single parameter used for all admission requests can be configured by setting the name field, leaving selector blank, and setting namespace if paramKind is namespace-scoped'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_name_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_namespace {doc 'namespace is the namespace of the referenced resource Allows limiting the search for params to a specific namespace Applies to both name and selector fieldsA per-namespace parameter may be used by specifying a namespace-scoped paramKind in the policy and leaving this field empty- If paramKind is cluster-scoped, this field MUST be unset Setting this field results in a configuration error- If paramKind is namespace-scoped, the namespace of the object being evaluated for admission will be used when this field is left unset Take care that if this is left empty the binding must not match any cluster-scoped resources, which will result in an error'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_parameterNotFoundAction {doc 'parameterNotFoundAction controls the behavior of the binding when the resource exists, and name or selector is valid, but there are no parameters matched by the binding If the value is set to Allow, then no matched parameters will be treated as successful validation by the binding If set to Deny, then no matched parameters will be subject to the failurePolicy of the policyAllowed values are Allow or DenyRequired'}
												alternative
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_parameterNotFoundAction_Allow {doc 'Specific value: Allow'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_parameterNotFoundAction_Deny {doc 'Specific value: Deny'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector {doc 'selector can be used to match multiple param objects based on their labels Supply selector:  to match all resources of the ParamKindIf multiple params are found, they are all evaluated with the policy expressions and the results are ANDed togetherOne of name or selector must be set, but name and selector are mutually exclusive properties If one is set, the other must be unset'}
												optional
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_kind {default 'ValidatingAdmissionPolicyBindingList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec {doc 'ValidatingAdmissionPolicyBindingSpec is the specification of the ValidatingAdmissionPolicyBinding'}
				mandatory
					String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_policyName {doc 'PolicyName references a ValidatingAdmissionPolicy name which the ValidatingAdmissionPolicyBinding binds to If the referenced resource does not exist, this binding is considered invalid and will be ignored Required'}
					io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_validationActions cardinality [1..*] {doc 'validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced If a validation evaluates to false it is always enforced according to these actionsFailures defined by the ValidatingAdmissionPolicy_s FailurePolicy are enforced according to these actions only if the FailurePolicy is set to Fail, otherwise the failures are ignored This includes compilation errors, runtime errors and misconfigurations of the policyvalidationActions is declared as a set of action values Order does not matter validationActions may not contain duplicates of the same actionThe supported actions values are:Deny specifies that a validation failure results in a denied requestWarn specifies that a validation failure is reported to the request client in HTTP Warning headers, with a warning code of 299 Warnings can be sent both for allowed or denied admission responsesAudit specifies that a validation failure is included in the published audit event for the request The audit event will contain a validationpolicyadmissionk8sio/validation_failure audit annotation with a value containing the details of the validation failures, formatted as a JSON list of objects, each with the following fields: - message: The validation failure message string - policy: The resource name of the ValidatingAdmissionPolicy - binding: The resource name of the ValidatingAdmissionPolicyBinding - expressionIndex: The index of the failed validations in the ValidatingAdmissionPolicy - validationActions: The enforcement actions enacted for the validation failure Example audit annotation: validationpolicyadmissionk8sio/validation_failure: [message: Invalid value, policy: policyexamplecom, binding: policybindingexamplecom, expressionIndex: 1, validationActions: [Audit]]Clients should expect to handle additional values by ignoring any values not recognizedDeny and Warn may not be used together since this combination needlessly duplicates the validation failure both in the API response body and the HTTP warning headersRequired'}
						alternative
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_validationActions_Audit {doc 'Specific value: Audit'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_validationActions_expressionIndex {doc 'Specific value: expressionIndex'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_validationActions_policy {doc 'Specific value: policy'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_validationActions_Warn {doc 'Specific value: Warn'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_validationActions_message {doc 'Specific value: message'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_validationActions_Deny {doc 'Specific value: Deny'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_validationActions_validationActions {doc 'Specific value: validationActions'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_validationActions_binding {doc 'Specific value: binding'}
				optional
					io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources {doc 'MatchResources declares what resources match this binding and will be validated by it Note that this is intersected with the policy_s matchConstraints, so only requests that are matched by the policy can be selected by this If this is unset, all resources matched by the policy are validated by this binding When resourceRules is unset, it does not constrain resource matching If a resource is matched by the other fields of this object, it will be validated Note that this is differs from ValidatingAdmissionPolicy matchConstraints, where resourceRules are required'}
						optional
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules cardinality [1..*] {doc 'ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
								mandatory
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
										alternative
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_scope_Cluster {doc 'Specific value: Cluster'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_excludeResourceRules_scope_estrella {default, doc 'Specific value: estrella'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy {doc 'matchPolicy defines how the MatchResources list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicyDefaults to Equivalent'}
								alternative
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy_apps {doc 'Specific value: apps'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy_MatchResources {doc 'Specific value: MatchResources'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy_deployments {doc 'Specific value: deployments'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy_rules {doc 'Specific value: rules'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy_v1 {doc 'Specific value: v1'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_matchPolicy_Exact {doc 'Specific value: Exact'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector {doc 'NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the policyFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the policy on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
								optional
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector {doc 'ObjectSelector decides whether to run the validation based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
								optional
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules cardinality [1..*] {doc 'ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches The policy cares about an operation if it matches _any_ Rule'}
								mandatory
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
										alternative
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_scope_Cluster {doc 'Specific value: Cluster'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_resourceRules_scope_estrella {default, doc 'Specific value: estrella'}
					io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef {doc 'paramRef specifies the parameter resource used to configure the admission control policy It should point to a resource of the type specified in ParamKind of the bound ValidatingAdmissionPolicy If the policy specifies a ParamKind and the resource referred to by ParamRef does not exist, this binding is considered mis-configured and the FailurePolicy of the ValidatingAdmissionPolicy applied If the policy does not specify a ParamKind then this field is ignored, and the rules are evaluated without a param'}
						optional
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_name {abstract, doc 'name is the name of the resource being referencedOne of name or selector must be set, but name and selector are mutually exclusive properties If one is set, the other must be unsetA single parameter used for all admission requests can be configured by setting the name field, leaving selector blank, and setting namespace if paramKind is namespace-scoped'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_name_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_namespace {doc 'namespace is the namespace of the referenced resource Allows limiting the search for params to a specific namespace Applies to both name and selector fieldsA per-namespace parameter may be used by specifying a namespace-scoped paramKind in the policy and leaving this field empty- If paramKind is cluster-scoped, this field MUST be unset Setting this field results in a configuration error- If paramKind is namespace-scoped, the namespace of the object being evaluated for admission will be used when this field is left unset Take care that if this is left empty the binding must not match any cluster-scoped resources, which will result in an error'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_parameterNotFoundAction {doc 'parameterNotFoundAction controls the behavior of the binding when the resource exists, and name or selector is valid, but there are no parameters matched by the binding If the value is set to Allow, then no matched parameters will be treated as successful validation by the binding If set to Deny, then no matched parameters will be subject to the failurePolicy of the policyAllowed values are Allow or DenyRequired'}
								alternative
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_parameterNotFoundAction_Allow {doc 'Specific value: Allow'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_parameterNotFoundAction_Deny {doc 'Specific value: Deny'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector {doc 'selector can be used to match multiple param objects based on their labels Supply selector:  to match all resources of the ParamKindIf multiple params are found, they are all evaluated with the policy expressions and the results are ANDed togetherOne of name or selector must be set, but name and selector are mutually exclusive properties If one is set, the other must be unset'}
								optional
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
			io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList {doc 'ValidatingAdmissionPolicyList is a list of ValidatingAdmissionPolicy'}
				optional
					String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items cardinality [1..*] {doc 'List of ValidatingAdmissionPolicy'}
						optional
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_kind {default 'ValidatingAdmissionPolicy', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata {doc 'Standard object metadata; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec {doc 'Specification of the desired behavior of the ValidatingAdmissionPolicy'}
								mandatory
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints {doc 'MatchConstraints specifies what resources this policy is designed to validate The AdmissionPolicy cares about a request if it matches _all_ Constraints However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding Required'}
										optional
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules cardinality [1..*] {doc 'ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
												mandatory
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
														alternative
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_scope_Cluster {doc 'Specific value: Cluster'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_excludeResourceRules_scope_estrella {default, doc 'Specific value: estrella'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy {doc 'matchPolicy defines how the MatchResources list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicyDefaults to Equivalent'}
												alternative
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy_apps {doc 'Specific value: apps'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy_MatchResources {doc 'Specific value: MatchResources'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy_deployments {doc 'Specific value: deployments'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy_rules {doc 'Specific value: rules'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy_v1 {doc 'Specific value: v1'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_matchPolicy_Exact {doc 'Specific value: Exact'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector {doc 'NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the policyFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the policy on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
												optional
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector {doc 'ObjectSelector decides whether to run the validation based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
												optional
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules cardinality [1..*] {doc 'ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches The policy cares about an operation if it matches _any_ Rule'}
												mandatory
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
														mandatory
															String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
														alternative
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_scope_Cluster {doc 'Specific value: Cluster'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
															io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_resourceRules_scope_estrella {default, doc 'Specific value: estrella'}
								optional
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_auditAnnotations cardinality [1..*] {doc 'auditAnnotations contains CEL expressions which are used to produce audit annotations for the audit event of the API request validations and auditAnnotations may not both be empty; a least one of validations or auditAnnotations is required'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_auditAnnotations_key {doc 'key specifies the audit annotation key The audit annotation keys of a ValidatingAdmissionPolicy must be unique The key must be a qualified name ([A-Za-z0-9][-A-Za-z0-9_]*) no more than 63 bytes in lengthThe key is combined with the resource name of the ValidatingAdmissionPolicy to construct an audit annotation key: ValidatingAdmissionPolicy name/keyIf an admission webhook uses the same resource name as this ValidatingAdmissionPolicy and the same audit annotation key, the annotation key will be identical In this case, the first annotation written with the key will be included in the audit event and all subsequent annotations with the same key will be discardedRequired'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_auditAnnotations_valueExpression {doc 'valueExpression represents the expression which is evaluated by CEL to produce an audit annotation value The expression must evaluate to either a string or null value If the expression evaluates to a string, the audit annotation is included with the string value If the expression evaluates to null or empty string the audit annotation will be omitted The valueExpression may be no longer than 5kb in length If the result of the valueExpression is more than 10kb in length, it will be truncated to 10kbIf multiple ValidatingAdmissionPolicyBinding resources match an API request, then the valueExpression will be evaluated for each binding All unique values produced by the valueExpressions will be joined together in a comma-separated listRequired'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_failurePolicy {doc 'failurePolicy defines how to handle failures for the admission policy Failures can occur from CEL expression parse errors, type check errors, runtime errors and invalid or mis-configured policy definitions or bindingsA policy is invalid if specparamKind refers to a non-existent Kind A binding is invalid if specparamRefname refers to a non-existent resourcefailurePolicy does not define how validations that evaluate to false are handledWhen failurePolicy is set to Fail, ValidatingAdmissionPolicyBinding validationActions define how failures are enforcedAllowed values are Ignore or Fail Defaults to Fail'}
										alternative
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_failurePolicy_Fail {default, doc 'Specific value: Fail'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_failurePolicy_Ignore {doc 'Specific value: Ignore'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConditions cardinality [1..*] {doc 'MatchConditions is a list of conditions that must be met for a request to be validated Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector An empty list of matchConditions matches all requests There are a maximum of 64 match conditions allowedIf a parameter object is provided, it can be accessed via the params handle in the same manner as validation expressionsThe exact matching logic is (in order):  1 If ANY matchCondition evaluates to FALSE, the policy is skipped  2 If ALL matchConditions evaluate to TRUE, the policy is evaluated  3 If any matchCondition evaluates to an error (but none are FALSE):     - If failurePolicy=Fail, reject the request     - If failurePolicy=Ignore, the policy is skipped'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConditions_expression {doc 'Expression represents the expression which will be evaluated by CEL Must evaluate to bool CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:_object_ - The object from the incoming request The value is null for DELETE requests _oldObject_ - The existing object The value is null for CREATE requests _request_ - Attributes of the admission request(/pkg/apis/admission/typesgo#AdmissionRequest) _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz_authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceDocumentation on CEL: https:_kubernetesio/docs/reference/using-api/cel/Required'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConditions_name {doc 'Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes A good name should be descriptive of the associated expression Name must be a qualified name consisting of alphanumeric characters, _-_, ___ or __, and must start and end with an alphanumeric character (eg _MyName_,  or _myname_,  or _123-abc_, regex used for validation is _([A-Za-z0-9][-A-Za-z0-9_]*)?[A-Za-z0-9]_) with an optional DNS subdomain prefix and _/_ (eg _examplecom/MyName_)Required'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_paramKind {doc 'ParamKind specifies the kind of resources used to parameterize this policy If absent, there are no parameters for this policy and the param CEL variable will not be provided to validation expressions If ParamKind refers to a non-existent kind, this policy definition is mis-configured and the FailurePolicy is applied If paramKind is specified but paramRef is unset in ValidatingAdmissionPolicyBinding, the params variable will be null'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_paramKind_apiVersion {doc 'APIVersion is the API group version the resources belong to In format of group/version Required'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_paramKind_kind {doc 'Kind is the API kind the resources belong to Required'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_validations cardinality [1..*] {doc 'Validations contain CEL expressions which is used to apply the validation Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is required'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_validations_expression {doc 'Expression represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:- _object_ - The object from the incoming request The value is null for DELETE requests - _oldObject_ - The existing object The value is null for CREATE requests - _request_ - Attributes of the API request([ref](/pkg/apis/admission/typesgo#AdmissionRequest)) - _params_ - Parameter resource referred to by the policy binding being evaluated Only populated if the policy has a ParamKind - _namespaceObject_ - The namespace object that the incoming object belongs to The value is null for cluster-scoped resources - _variables_ - Map of composited variables, from its name to its lazily evaluated value  For example, a variable named _foo_ can be accessed as _variablesfoo_- _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz- _authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceThe apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object No other metadata properties are accessibleOnly 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, returnExamples:  - Expression accessing a property named namespace: Expression: object__namespace__ > 0  - Expression accessing a property named x-prop: Expression: objectx__dash__prop > 0  - Expression accessing a property named redact__d: Expression: objectredact__underscores__d > 0Equality on arrays with list type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderRequired'}
										optional
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_validations_message {doc 'Message represents the message displayed when validation fails The message is required if the Expression contains line breaks The message must not contain line breaks If unset, the message is failed rule: Rule eg must be a URL with the host matching spechost If the Expression contains line breaks Message is required The message must not contain line breaks If unset, the message is failed Expression: Expression'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_validations_messageExpression {doc '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 validation, 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 expression except for _authorizer_ and _authorizerrequestResource_ Example: objectx must be less than max (+string(paramsmax)+)'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_validations_reason {doc 'Reason represents a machine-readable description of why this validation failed If this is the first validation in the list to fail, this reason, as well as the corresponding HTTP response code, are used in the HTTP response to the client The currently supported reasons are: Unauthorized, Forbidden, Invalid, RequestEntityTooLarge If not set, StatusReasonInvalid is used in the response to the client'}
												alternative
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_validations_reason_Unauthorized {doc 'Specific value: Unauthorized'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_validations_reason_Forbidden {doc 'Specific value: Forbidden'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_validations_reason_Invalid {doc 'Specific value: Invalid'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_validations_reason_RequestEntityTooLarge {doc 'Specific value: RequestEntityTooLarge'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_variables cardinality [1..*] {doc 'Variables contain definitions of variables that can be used in composition of other expressions Each variable is defined as a named CEL expression The variables defined here will be available under variables in other expressions of the policy except MatchConditions because MatchConditions are evaluated before the rest of the policyThe expression of a variable can refer to other variables defined earlier in the list but not those after Thus, Variables must be sorted by the order of first appearance and acyclic'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_variables_expression {doc 'Expression is the expression that will be evaluated as the value of the variable The CEL expression has access to the same identifiers as the CEL expressions in Validation'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_variables_name {doc 'Name is the name of the variable The name must be a valid CEL identifier and unique among all variables The variable can be accessed in other expressions through variables For example, if name is foo, the variable will be available as variablesfoo'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_status {doc 'The status of the ValidatingAdmissionPolicy, including warnings that are useful to determine if the policy behaves in the expected way Populated by the system Read-only'}
								optional
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_status_conditions cardinality [1..*] {doc 'The conditions represent the latest available observations of a policy_s current state'}
										mandatory
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another This should be when the underlying condition changed  If that is not known, then using the time when the API field changed is acceptable'}
												optional
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_status_conditions_message {doc 'message is a human readable message indicating details about the transition This may be an empty string'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_status_conditions_reason {doc 'reason contains a programmatic identifier indicating the reason for the condition_s last transition Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API The value should be a CamelCase string This field may not be empty'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_status_conditions_status {doc 'status of the condition, one of True, False, Unknown'}
												alternative
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_status_conditions_status_True {doc 'Specific value: True'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_status_conditions_type {doc 'type of condition in CamelCase or in fooexamplecom/CamelCase'}
										optional
											Integer io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_status_conditions_observedGeneration {doc 'observedGeneration represents the metadatageneration that the condition was set based upon For instance, if metadatageneration is currently 12, but the statusconditions[x]observedGeneration is 9, the condition is out of date with respect to the current state of the instance'}
									Integer io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_status_observedGeneration {doc 'The generation observed by the controller'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_status_typeChecking {doc 'The results of type checking for each expression Presence of this field indicates the completion of the type checking'}
										optional
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_status_typeChecking_expressionWarnings cardinality [1..*] {doc 'The type checking warnings for each expression'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_status_typeChecking_expressionWarnings_fieldRef {doc 'The path to the field that refers the expression For example, the reference to the expression of the first item of validations is specvalidations[0]expression'}
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_status_typeChecking_expressionWarnings_warning {doc 'The content of type checking information in a human-readable form Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler'}
					String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_kind {default 'ValidatingAdmissionPolicyList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec {doc 'ValidatingAdmissionPolicySpec is the specification of the desired behavior of the AdmissionPolicy'}
				mandatory
					io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints {doc 'MatchConstraints specifies what resources this policy is designed to validate The AdmissionPolicy cares about a request if it matches _all_ Constraints However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding Required'}
						optional
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules cardinality [1..*] {doc 'ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about The exclude rules take precedence over include rules (if a resource matches both, it is excluded)'}
								mandatory
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
										alternative
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_scope_Cluster {doc 'Specific value: Cluster'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_excludeResourceRules_scope_estrella {default, doc 'Specific value: estrella'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy {doc 'matchPolicy defines how the MatchResources list is used to match incoming requests Allowed values are Exact or Equivalent- Exact: match a request only if it exactly matches a specified rule For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, but rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy- Equivalent: match a request if modifies a resource listed in rules, even via another API group or version For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1, and rules only included apiGroups:[apps], apiVersions:[v1], resources: [deployments], a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicyDefaults to Equivalent'}
								alternative
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy_apps {doc 'Specific value: apps'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy_MatchResources {doc 'Specific value: MatchResources'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy_deployments {doc 'Specific value: deployments'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy_Equivalent {default, doc 'Specific value: Equivalent'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy_rules {doc 'Specific value: rules'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy_v1 {doc 'Specific value: v1'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_matchPolicy_Exact {doc 'Specific value: Exact'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector {doc 'NamespaceSelector decides whether to run the admission control policy on an object based on whether the namespace for that object matches the selector If the object itself is a namespace, the matching is performed on objectmetadatalabels If the object is another cluster scoped resource, it never skips the policyFor example, to run the webhook on any objects whose namespace is not associated with runlevel of 0 or 1;  you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: runlevel,      operator: NotIn,      values: [        0,        1      ]      ]If instead you want to only run the policy on any objects whose namespace is associated with the environment of prod or staging; you will set the selector as follows: namespaceSelector:   matchExpressions: [          key: environment,      operator: In,      values: [        prod,        staging      ]      ]See https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectorsDefault to the empty LabelSelector, which matches everything'}
								optional
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector {doc 'ObjectSelector decides whether to run the validation based on if the object has matching labels objectSelector is evaluated against both the oldObject and newObject that would be sent to the cel validation, and is considered to match if either object matches the selector A null object (oldObject in the case of create, or newObject in the case of delete) or an object that cannot have labels (like a DeploymentRollback or a PodProxyOptions object) is not considered to match Use the object selector only if the webhook is opt-in, because end users may skip the admission webhook by setting the labels Default to the empty LabelSelector, which matches everything'}
								optional
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules cardinality [1..*] {doc 'ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches The policy cares about an operation if it matches _any_ Rule'}
								mandatory
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the API groups the resources belong to _*_ is all groups If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_apiVersions cardinality [1..*] {doc 'APIVersions is the API versions the resources belong to _*_ is all versions If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_apiVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_operations cardinality [1..*] {doc 'Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or * for all of those operations and any future admission operations that are added If _*_ is present, the length of the slice must be one Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_operations_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies toFor example: _pods_ means pods _pods/log_ means the log subresource of pods _*_ means all resources, but not subresources _pods/*_ means all subresources of pods _*/scale_ means all scale subresources _*/*_ means all resources and their subresourcesIf wildcard is present, the validation rule will ensure resources do not overlap with each otherDepending on the enclosing object, subresources might not be allowed Required'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
										mandatory
											String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_scope {doc 'scope specifies the scope of this rule Valid values are Cluster, Namespaced, and * Cluster means that only cluster-scoped resources will match this rule Namespace API objects are cluster-scoped Namespaced means that only namespaced resources will match this rule * means that there are no scope restrictions Subresources match the scope of their parent resource Default is *'}
										alternative
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_scope_Cluster {doc 'Specific value: Cluster'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_scope_Namespaced {doc 'Specific value: Namespaced'}
											io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_resourceRules_scope_estrella {default, doc 'Specific value: estrella'}
				optional
					io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_auditAnnotations cardinality [1..*] {doc 'auditAnnotations contains CEL expressions which are used to produce audit annotations for the audit event of the API request validations and auditAnnotations may not both be empty; a least one of validations or auditAnnotations is required'}
						mandatory
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_auditAnnotations_key {doc 'key specifies the audit annotation key The audit annotation keys of a ValidatingAdmissionPolicy must be unique The key must be a qualified name ([A-Za-z0-9][-A-Za-z0-9_]*) no more than 63 bytes in lengthThe key is combined with the resource name of the ValidatingAdmissionPolicy to construct an audit annotation key: ValidatingAdmissionPolicy name/keyIf an admission webhook uses the same resource name as this ValidatingAdmissionPolicy and the same audit annotation key, the annotation key will be identical In this case, the first annotation written with the key will be included in the audit event and all subsequent annotations with the same key will be discardedRequired'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_auditAnnotations_valueExpression {doc 'valueExpression represents the expression which is evaluated by CEL to produce an audit annotation value The expression must evaluate to either a string or null value If the expression evaluates to a string, the audit annotation is included with the string value If the expression evaluates to null or empty string the audit annotation will be omitted The valueExpression may be no longer than 5kb in length If the result of the valueExpression is more than 10kb in length, it will be truncated to 10kbIf multiple ValidatingAdmissionPolicyBinding resources match an API request, then the valueExpression will be evaluated for each binding All unique values produced by the valueExpressions will be joined together in a comma-separated listRequired'}
					io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_failurePolicy {doc 'failurePolicy defines how to handle failures for the admission policy Failures can occur from CEL expression parse errors, type check errors, runtime errors and invalid or mis-configured policy definitions or bindingsA policy is invalid if specparamKind refers to a non-existent Kind A binding is invalid if specparamRefname refers to a non-existent resourcefailurePolicy does not define how validations that evaluate to false are handledWhen failurePolicy is set to Fail, ValidatingAdmissionPolicyBinding validationActions define how failures are enforcedAllowed values are Ignore or Fail Defaults to Fail'}
						alternative
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_failurePolicy_Fail {default, doc 'Specific value: Fail'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_failurePolicy_Ignore {doc 'Specific value: Ignore'}
					io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConditions cardinality [1..*] {doc 'MatchConditions is a list of conditions that must be met for a request to be validated Match conditions filter requests that have already been matched by the rules, namespaceSelector, and objectSelector An empty list of matchConditions matches all requests There are a maximum of 64 match conditions allowedIf a parameter object is provided, it can be accessed via the params handle in the same manner as validation expressionsThe exact matching logic is (in order):  1 If ANY matchCondition evaluates to FALSE, the policy is skipped  2 If ALL matchConditions evaluate to TRUE, the policy is evaluated  3 If any matchCondition evaluates to an error (but none are FALSE):     - If failurePolicy=Fail, reject the request     - If failurePolicy=Ignore, the policy is skipped'}
						mandatory
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConditions_expression {doc 'Expression represents the expression which will be evaluated by CEL Must evaluate to bool CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:_object_ - The object from the incoming request The value is null for DELETE requests _oldObject_ - The existing object The value is null for CREATE requests _request_ - Attributes of the admission request(/pkg/apis/admission/typesgo#AdmissionRequest) _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz_authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceDocumentation on CEL: https:_kubernetesio/docs/reference/using-api/cel/Required'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConditions_name {doc 'Name is an identifier for this match condition, used for strategic merging of MatchConditions, as well as providing an identifier for logging purposes A good name should be descriptive of the associated expression Name must be a qualified name consisting of alphanumeric characters, _-_, ___ or __, and must start and end with an alphanumeric character (eg _MyName_,  or _myname_,  or _123-abc_, regex used for validation is _([A-Za-z0-9][-A-Za-z0-9_]*)?[A-Za-z0-9]_) with an optional DNS subdomain prefix and _/_ (eg _examplecom/MyName_)Required'}
					io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_paramKind {doc 'ParamKind specifies the kind of resources used to parameterize this policy If absent, there are no parameters for this policy and the param CEL variable will not be provided to validation expressions If ParamKind refers to a non-existent kind, this policy definition is mis-configured and the FailurePolicy is applied If paramKind is specified but paramRef is unset in ValidatingAdmissionPolicyBinding, the params variable will be null'}
						mandatory
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_paramKind_apiVersion {doc 'APIVersion is the API group version the resources belong to In format of group/version Required'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_paramKind_kind {doc 'Kind is the API kind the resources belong to Required'}
					io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_validations cardinality [1..*] {doc 'Validations contain CEL expressions which is used to apply the validation Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is required'}
						mandatory
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_validations_expression {doc 'Expression represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:- _object_ - The object from the incoming request The value is null for DELETE requests - _oldObject_ - The existing object The value is null for CREATE requests - _request_ - Attributes of the API request([ref](/pkg/apis/admission/typesgo#AdmissionRequest)) - _params_ - Parameter resource referred to by the policy binding being evaluated Only populated if the policy has a ParamKind - _namespaceObject_ - The namespace object that the incoming object belongs to The value is null for cluster-scoped resources - _variables_ - Map of composited variables, from its name to its lazily evaluated value  For example, a variable named _foo_ can be accessed as _variablesfoo_- _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz- _authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceThe apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object No other metadata properties are accessibleOnly 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, returnExamples:  - Expression accessing a property named namespace: Expression: object__namespace__ > 0  - Expression accessing a property named x-prop: Expression: objectx__dash__prop > 0  - Expression accessing a property named redact__d: Expression: objectredact__underscores__d > 0Equality on arrays with list type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderRequired'}
						optional
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_validations_message {doc 'Message represents the message displayed when validation fails The message is required if the Expression contains line breaks The message must not contain line breaks If unset, the message is failed rule: Rule eg must be a URL with the host matching spechost If the Expression contains line breaks Message is required The message must not contain line breaks If unset, the message is failed Expression: Expression'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_validations_messageExpression {doc '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 validation, 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 expression except for _authorizer_ and _authorizerrequestResource_ Example: objectx must be less than max (+string(paramsmax)+)'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_validations_reason {doc 'Reason represents a machine-readable description of why this validation failed If this is the first validation in the list to fail, this reason, as well as the corresponding HTTP response code, are used in the HTTP response to the client The currently supported reasons are: Unauthorized, Forbidden, Invalid, RequestEntityTooLarge If not set, StatusReasonInvalid is used in the response to the client'}
								alternative
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_validations_reason_Unauthorized {doc 'Specific value: Unauthorized'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_validations_reason_Forbidden {doc 'Specific value: Forbidden'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_validations_reason_Invalid {doc 'Specific value: Invalid'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_validations_reason_RequestEntityTooLarge {doc 'Specific value: RequestEntityTooLarge'}
					io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_variables cardinality [1..*] {doc 'Variables contain definitions of variables that can be used in composition of other expressions Each variable is defined as a named CEL expression The variables defined here will be available under variables in other expressions of the policy except MatchConditions because MatchConditions are evaluated before the rest of the policyThe expression of a variable can refer to other variables defined earlier in the list but not those after Thus, Variables must be sorted by the order of first appearance and acyclic'}
						mandatory
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_variables_expression {doc 'Expression is the expression that will be evaluated as the value of the variable The CEL expression has access to the same identifiers as the CEL expressions in Validation'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_variables_name {doc 'Name is the name of the variable The name must be a valid CEL identifier and unique among all variables The variable can be accessed in other expressions through variables For example, if name is foo, the variable will be available as variablesfoo'}
			io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyStatus {doc 'ValidatingAdmissionPolicyStatus represents the status of an admission validation policy'}
				optional
					io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyStatus_conditions cardinality [1..*] {doc 'The conditions represent the latest available observations of a policy_s current state'}
						mandatory
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyStatus_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another This should be when the underlying condition changed  If that is not known, then using the time when the API field changed is acceptable'}
								optional
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyStatus_conditions_message {doc 'message is a human readable message indicating details about the transition This may be an empty string'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyStatus_conditions_reason {doc 'reason contains a programmatic identifier indicating the reason for the condition_s last transition Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API The value should be a CamelCase string This field may not be empty'}
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyStatus_conditions_status {doc 'status of the condition, one of True, False, Unknown'}
								alternative
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyStatus_conditions_status_True {doc 'Specific value: True'}
							String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyStatus_conditions_type {doc 'type of condition in CamelCase or in fooexamplecom/CamelCase'}
						optional
							Integer io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyStatus_conditions_observedGeneration {doc 'observedGeneration represents the metadatageneration that the condition was set based upon For instance, if metadatageneration is currently 12, but the statusconditions[x]observedGeneration is 9, the condition is out of date with respect to the current state of the instance'}
					Integer io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyStatus_observedGeneration {doc 'The generation observed by the controller'}
					io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyStatus_typeChecking {doc 'The results of type checking for each expression Presence of this field indicates the completion of the type checking'}
						optional
							io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyStatus_typeChecking_expressionWarnings cardinality [1..*] {doc 'The type checking warnings for each expression'}
								mandatory
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyStatus_typeChecking_expressionWarnings_fieldRef {doc 'The path to the field that refers the expression For example, the reference to the expression of the first item of validations is specvalidations[0]expression'}
									String io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyStatus_typeChecking_expressionWarnings_warning {doc 'The content of type checking information in a human-readable form Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler'}
			io_k8s_api_admissionregistration_v1beta1_Validation {doc 'Validation specifies the CEL expression which is used to apply the validation'}
				mandatory
					String io_k8s_api_admissionregistration_v1beta1_Validation_expression {doc 'Expression represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:- _object_ - The object from the incoming request The value is null for DELETE requests - _oldObject_ - The existing object The value is null for CREATE requests - _request_ - Attributes of the API request([ref](/pkg/apis/admission/typesgo#AdmissionRequest)) - _params_ - Parameter resource referred to by the policy binding being evaluated Only populated if the policy has a ParamKind - _namespaceObject_ - The namespace object that the incoming object belongs to The value is null for cluster-scoped resources - _variables_ - Map of composited variables, from its name to its lazily evaluated value  For example, a variable named _foo_ can be accessed as _variablesfoo_- _authorizer_ - A CEL Authorizer May be used to perform authorization checks for the principal (user or service account) of the request  See https:_pkggodev/k8sio/apiserver/pkg/cel/library#Authz- _authorizerrequestResource_ - A CEL ResourceCheck constructed from the _authorizer_ and configured with the  request resourceThe apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object No other metadata properties are accessibleOnly 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, returnExamples:  - Expression accessing a property named namespace: Expression: object__namespace__ > 0  - Expression accessing a property named x-prop: Expression: objectx__dash__prop > 0  - Expression accessing a property named redact__d: Expression: objectredact__underscores__d > 0Equality on arrays with list type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderRequired'}
				optional
					String io_k8s_api_admissionregistration_v1beta1_Validation_message {doc 'Message represents the message displayed when validation fails The message is required if the Expression contains line breaks The message must not contain line breaks If unset, the message is failed rule: Rule eg must be a URL with the host matching spechost If the Expression contains line breaks Message is required The message must not contain line breaks If unset, the message is failed Expression: Expression'}
					String io_k8s_api_admissionregistration_v1beta1_Validation_messageExpression {doc '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 validation, 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 expression except for _authorizer_ and _authorizerrequestResource_ Example: objectx must be less than max (+string(paramsmax)+)'}
					io_k8s_api_admissionregistration_v1beta1_Validation_reason {doc 'Reason represents a machine-readable description of why this validation failed If this is the first validation in the list to fail, this reason, as well as the corresponding HTTP response code, are used in the HTTP response to the client The currently supported reasons are: Unauthorized, Forbidden, Invalid, RequestEntityTooLarge If not set, StatusReasonInvalid is used in the response to the client'}
						alternative
							io_k8s_api_admissionregistration_v1beta1_Validation_reason_Unauthorized {doc 'Specific value: Unauthorized'}
							io_k8s_api_admissionregistration_v1beta1_Validation_reason_Forbidden {doc 'Specific value: Forbidden'}
							io_k8s_api_admissionregistration_v1beta1_Validation_reason_Invalid {doc 'Specific value: Invalid'}
							io_k8s_api_admissionregistration_v1beta1_Validation_reason_RequestEntityTooLarge {doc 'Specific value: RequestEntityTooLarge'}
			io_k8s_api_admissionregistration_v1beta1_Variable {doc 'Variable is the definition of a variable that is used for composition A variable is defined as a named expression'}
				mandatory
					String io_k8s_api_admissionregistration_v1beta1_Variable_expression {doc 'Expression is the expression that will be evaluated as the value of the variable The CEL expression has access to the same identifiers as the CEL expressions in Validation'}
					String io_k8s_api_admissionregistration_v1beta1_Variable_name {doc 'Name is the name of the variable The name must be a valid CEL identifier and unique among all variables The variable can be accessed in other expressions through variables For example, if name is foo, the variable will be available as variablesfoo'}
			io_k8s_api_apiserverinternal_v1alpha1_ServerStorageVersion {doc 'An API server instance reports the version it can decode and the version it encodes objects to when persisting objects in the backend'}
				optional
					String io_k8s_api_apiserverinternal_v1alpha1_ServerStorageVersion_apiServerID {doc 'The ID of the reporting API server'}
					io_k8s_api_apiserverinternal_v1alpha1_ServerStorageVersion_decodableVersions cardinality [1..*] {doc 'The API server can decode objects encoded in these versions The encodingVersion must be included in the decodableVersions'}
						mandatory
							String io_k8s_api_apiserverinternal_v1alpha1_ServerStorageVersion_decodableVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					String io_k8s_api_apiserverinternal_v1alpha1_ServerStorageVersion_encodingVersion {doc 'The API server encodes the object to this version when persisting it in the backend (eg, etcd)'}
					io_k8s_api_apiserverinternal_v1alpha1_ServerStorageVersion_servedVersions cardinality [1..*] {doc 'The API server can serve these versions DecodableVersions must include all ServedVersions'}
						mandatory
							String io_k8s_api_apiserverinternal_v1alpha1_ServerStorageVersion_servedVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_apiserverinternal_v1alpha1_StorageVersion {doc 'Storage version of a specific resource'}
				mandatory
					io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_spec {doc 'Spec is an empty spec It is here to comply with Kubernetes API style'}
						optional
							io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_spec_StorageVersionSpec {doc 'StorageVersionSpec is an empty spec'}
					io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_status {doc 'API server instances report the version they can decode and the version they encode objects to when persisting objects in the backend'}
						optional
							String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_status_commonEncodingVersion {doc 'If all API server instances agree on the same encoding storage version, then this field is set to that version Otherwise this field is left empty API servers should finish updating its storageVersionStatus entry before serving write operations, so that this field will be in sync with the reality'}
							io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_status_conditions cardinality [1..*] {doc 'The latest available observations of the storageVersion_s state'}
								mandatory
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_status_conditions_message {doc 'A human readable message indicating details about the transition'}
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_status_conditions_reason {doc 'The reason for the condition_s last transition'}
									io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_status_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
										alternative
											io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_status_conditions_status_True {doc 'Specific value: True'}
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_status_conditions_type {doc 'Type of the condition'}
								optional
									io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_status_conditions_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
										optional
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									Integer io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_status_conditions_observedGeneration {doc 'If set, this represents the metadatageneration that the condition was set based upon'}
							io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_status_storageVersions cardinality [1..*] {doc 'The reported versions per API server instance'}
								optional
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_status_storageVersions_apiServerID {doc 'The ID of the reporting API server'}
									io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_status_storageVersions_decodableVersions cardinality [1..*] {doc 'The API server can decode objects encoded in these versions The encodingVersion must be included in the decodableVersions'}
										mandatory
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_status_storageVersions_decodableVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_status_storageVersions_encodingVersion {doc 'The API server encodes the object to this version when persisting it in the backend (eg, etcd)'}
									io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_status_storageVersions_servedVersions cardinality [1..*] {doc 'The API server can serve these versions DecodableVersions must include all ServedVersions'}
										mandatory
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_status_storageVersions_servedVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_kind {default 'StorageVersion', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata {doc 'The name is <group><resource>'}
						optional
							io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_apiserverinternal_v1alpha1_StorageVersion_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
			io_k8s_api_apiserverinternal_v1alpha1_StorageVersionCondition {doc 'Describes the state of the storageVersion at a certain point'}
				mandatory
					String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionCondition_message {doc 'A human readable message indicating details about the transition'}
					String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionCondition_reason {doc 'The reason for the condition_s last transition'}
					io_k8s_api_apiserverinternal_v1alpha1_StorageVersionCondition_status {doc 'Status of the condition, one of True, False, Unknown'}
						alternative
							io_k8s_api_apiserverinternal_v1alpha1_StorageVersionCondition_status_Unknown {doc 'Specific value: Unknown'}
							io_k8s_api_apiserverinternal_v1alpha1_StorageVersionCondition_status_False {doc 'Specific value: False'}
							io_k8s_api_apiserverinternal_v1alpha1_StorageVersionCondition_status_True {doc 'Specific value: True'}
					String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionCondition_type {doc 'Type of the condition'}
				optional
					io_k8s_api_apiserverinternal_v1alpha1_StorageVersionCondition_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
						optional
							String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionCondition_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					Integer io_k8s_api_apiserverinternal_v1alpha1_StorageVersionCondition_observedGeneration {doc 'If set, this represents the metadatageneration that the condition was set based upon'}
			io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList {doc 'A list of StorageVersions'}
				mandatory
					io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items cardinality [1..*] {doc 'Items holds a list of StorageVersion'}
						mandatory
							io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_spec {doc 'Spec is an empty spec It is here to comply with Kubernetes API style'}
								optional
									io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_spec_StorageVersionSpec {doc 'StorageVersionSpec is an empty spec'}
							io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_status {doc 'API server instances report the version they can decode and the version they encode objects to when persisting objects in the backend'}
								optional
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_status_commonEncodingVersion {doc 'If all API server instances agree on the same encoding storage version, then this field is set to that version Otherwise this field is left empty API servers should finish updating its storageVersionStatus entry before serving write operations, so that this field will be in sync with the reality'}
									io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_status_conditions cardinality [1..*] {doc 'The latest available observations of the storageVersion_s state'}
										mandatory
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_status_conditions_message {doc 'A human readable message indicating details about the transition'}
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_status_conditions_reason {doc 'The reason for the condition_s last transition'}
											io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_status_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
												alternative
													io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_status_conditions_status_True {doc 'Specific value: True'}
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_status_conditions_type {doc 'Type of the condition'}
										optional
											io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_status_conditions_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
												optional
													String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											Integer io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_status_conditions_observedGeneration {doc 'If set, this represents the metadatageneration that the condition was set based upon'}
									io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_status_storageVersions cardinality [1..*] {doc 'The reported versions per API server instance'}
										optional
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_status_storageVersions_apiServerID {doc 'The ID of the reporting API server'}
											io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_status_storageVersions_decodableVersions cardinality [1..*] {doc 'The API server can decode objects encoded in these versions The encodingVersion must be included in the decodableVersions'}
												mandatory
													String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_status_storageVersions_decodableVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_status_storageVersions_encodingVersion {doc 'The API server encodes the object to this version when persisting it in the backend (eg, etcd)'}
											io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_status_storageVersions_servedVersions cardinality [1..*] {doc 'The API server can serve these versions DecodableVersions must include all ServedVersions'}
												mandatory
													String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_status_storageVersions_servedVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_kind {default 'StorageVersion', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata {doc 'The name is <group><resource>'}
								optional
									io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
				optional
					String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_kind {default 'StorageVersionList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_apiserverinternal_v1alpha1_StorageVersionSpec {doc 'StorageVersionSpec is an empty spec'}
			io_k8s_api_apiserverinternal_v1alpha1_StorageVersionStatus {doc 'API server instances report the versions they can decode and the version they encode objects to when persisting objects in the backend'}
				optional
					String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionStatus_commonEncodingVersion {doc 'If all API server instances agree on the same encoding storage version, then this field is set to that version Otherwise this field is left empty API servers should finish updating its storageVersionStatus entry before serving write operations, so that this field will be in sync with the reality'}
					io_k8s_api_apiserverinternal_v1alpha1_StorageVersionStatus_conditions cardinality [1..*] {doc 'The latest available observations of the storageVersion_s state'}
						mandatory
							String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionStatus_conditions_message {doc 'A human readable message indicating details about the transition'}
							String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionStatus_conditions_reason {doc 'The reason for the condition_s last transition'}
							io_k8s_api_apiserverinternal_v1alpha1_StorageVersionStatus_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
								alternative
									io_k8s_api_apiserverinternal_v1alpha1_StorageVersionStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_apiserverinternal_v1alpha1_StorageVersionStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_apiserverinternal_v1alpha1_StorageVersionStatus_conditions_status_True {doc 'Specific value: True'}
							String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionStatus_conditions_type {doc 'Type of the condition'}
						optional
							io_k8s_api_apiserverinternal_v1alpha1_StorageVersionStatus_conditions_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
								optional
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							Integer io_k8s_api_apiserverinternal_v1alpha1_StorageVersionStatus_conditions_observedGeneration {doc 'If set, this represents the metadatageneration that the condition was set based upon'}
					io_k8s_api_apiserverinternal_v1alpha1_StorageVersionStatus_storageVersions cardinality [1..*] {doc 'The reported versions per API server instance'}
						optional
							String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionStatus_storageVersions_apiServerID {doc 'The ID of the reporting API server'}
							io_k8s_api_apiserverinternal_v1alpha1_StorageVersionStatus_storageVersions_decodableVersions cardinality [1..*] {doc 'The API server can decode objects encoded in these versions The encodingVersion must be included in the decodableVersions'}
								mandatory
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionStatus_storageVersions_decodableVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionStatus_storageVersions_encodingVersion {doc 'The API server encodes the object to this version when persisting it in the backend (eg, etcd)'}
							io_k8s_api_apiserverinternal_v1alpha1_StorageVersionStatus_storageVersions_servedVersions cardinality [1..*] {doc 'The API server can serve these versions DecodableVersions must include all ServedVersions'}
								mandatory
									String io_k8s_api_apiserverinternal_v1alpha1_StorageVersionStatus_storageVersions_servedVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_apps_v1_ControllerRevision {doc 'ControllerRevision implements an immutable snapshot of state data Clients are responsible for serializing and deserializing the objects that contain their internal state Once a ControllerRevision has been successfully created, it can not be updated The API Server will fail validation of all requests that attempt to mutate the Data field ControllerRevisions may, however, be deleted Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability It is primarily for internal use by controllers'}
				mandatory
					Integer io_k8s_api_apps_v1_ControllerRevision_revision {doc 'Revision indicates the revision of the state represented by Data'}
				optional
					String io_k8s_api_apps_v1_ControllerRevision_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					io_k8s_api_apps_v1_ControllerRevision_data {doc 'Data is the serialized representation of the state'}
						optional
							io_k8s_api_apps_v1_ControllerRevision_data_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
					String io_k8s_api_apps_v1_ControllerRevision_kind {default 'ControllerRevision', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_apps_v1_ControllerRevision_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_apps_v1_ControllerRevision_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_apps_v1_ControllerRevision_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_apps_v1_ControllerRevision_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_apps_v1_ControllerRevision_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_apps_v1_ControllerRevision_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_apps_v1_ControllerRevision_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_apps_v1_ControllerRevision_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_apps_v1_ControllerRevision_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_apps_v1_ControllerRevision_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_apps_v1_ControllerRevision_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_apps_v1_ControllerRevision_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_apps_v1_ControllerRevision_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_apps_v1_ControllerRevision_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_apps_v1_ControllerRevision_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_apps_v1_ControllerRevision_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_apps_v1_ControllerRevision_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_apps_v1_ControllerRevision_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_apps_v1_ControllerRevision_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_apps_v1_ControllerRevision_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_apps_v1_ControllerRevision_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_apps_v1_ControllerRevision_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_apps_v1_ControllerRevision_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_apps_v1_ControllerRevision_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_apps_v1_ControllerRevision_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_apps_v1_ControllerRevision_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_apps_v1_ControllerRevision_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_apps_v1_ControllerRevision_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_apps_v1_ControllerRevision_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_apps_v1_ControllerRevision_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_apps_v1_ControllerRevision_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_apps_v1_ControllerRevision_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_apps_v1_ControllerRevision_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_apps_v1_ControllerRevision_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_apps_v1_ControllerRevision_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_apps_v1_ControllerRevision_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_apps_v1_ControllerRevision_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_apps_v1_ControllerRevision_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_apps_v1_ControllerRevision_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_apps_v1_ControllerRevision_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_apps_v1_ControllerRevision_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_apps_v1_ControllerRevision_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
			io_k8s_api_apps_v1_ControllerRevisionList {doc 'ControllerRevisionList is a resource containing a list of ControllerRevision objects'}
				mandatory
					io_k8s_api_apps_v1_ControllerRevisionList_items cardinality [1..*] {doc 'Items is the list of ControllerRevisions'}
						mandatory
							Integer io_k8s_api_apps_v1_ControllerRevisionList_items_revision {doc 'Revision indicates the revision of the state represented by Data'}
						optional
							String io_k8s_api_apps_v1_ControllerRevisionList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							io_k8s_api_apps_v1_ControllerRevisionList_items_data {doc 'Data is the serialized representation of the state'}
								optional
									io_k8s_api_apps_v1_ControllerRevisionList_items_data_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
							String io_k8s_api_apps_v1_ControllerRevisionList_items_kind {default 'ControllerRevision', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_apps_v1_ControllerRevisionList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_apps_v1_ControllerRevisionList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
				optional
					String io_k8s_api_apps_v1_ControllerRevisionList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_apps_v1_ControllerRevisionList_kind {default 'ControllerRevisionList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_apps_v1_ControllerRevisionList_metadata {doc 'More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_apps_v1_ControllerRevisionList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_apps_v1_ControllerRevisionList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_apps_v1_ControllerRevisionList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_apps_v1_ControllerRevisionList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_apps_v1_DaemonSet {doc 'DaemonSet represents the configuration of a daemon set'}
				optional
					String io_k8s_api_apps_v1_DaemonSet_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_apps_v1_DaemonSet_kind {default 'DaemonSet', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_apps_v1_DaemonSet_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_apps_v1_DaemonSet_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_apps_v1_DaemonSet_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_apps_v1_DaemonSet_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_apps_v1_DaemonSet_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_apps_v1_DaemonSet_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_apps_v1_DaemonSet_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_apps_v1_DaemonSet_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_apps_v1_DaemonSet_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_apps_v1_DaemonSet_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_apps_v1_DaemonSet_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_apps_v1_DaemonSet_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_apps_v1_DaemonSet_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_apps_v1_DaemonSet_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_apps_v1_DaemonSet_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_apps_v1_DaemonSet_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_apps_v1_DaemonSet_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_apps_v1_DaemonSet_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_apps_v1_DaemonSet_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_apps_v1_DaemonSet_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_apps_v1_DaemonSet_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_apps_v1_DaemonSet_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_apps_v1_DaemonSet_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_apps_v1_DaemonSet_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_apps_v1_DaemonSet_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_apps_v1_DaemonSet_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_apps_v1_DaemonSet_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_apps_v1_DaemonSet_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_apps_v1_DaemonSet_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_apps_v1_DaemonSet_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_apps_v1_DaemonSet_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_apps_v1_DaemonSet_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_apps_v1_DaemonSet_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_apps_v1_DaemonSet_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_apps_v1_DaemonSet_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_apps_v1_DaemonSet_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_apps_v1_DaemonSet_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_apps_v1_DaemonSet_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_apps_v1_DaemonSet_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_apps_v1_DaemonSet_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_apps_v1_DaemonSet_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_apps_v1_DaemonSet_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_apps_v1_DaemonSet_spec {doc 'The desired behavior of this daemon set More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						mandatory
							io_k8s_api_apps_v1_DaemonSet_spec_selector {doc 'A label query over pods that are managed by the daemon set Must match in order to be controlled It must match the pod template_s labels More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/#label-selectors'}
								optional
									io_k8s_api_apps_v1_DaemonSet_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_apps_v1_DaemonSet_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_apps_v1_DaemonSet_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_apps_v1_DaemonSet_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_apps_v1_DaemonSet_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_apps_v1_DaemonSet_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_apps_v1_DaemonSet_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_apps_v1_DaemonSet_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSet_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_apps_v1_DaemonSet_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_apps_v1_DaemonSet_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_DaemonSet_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_apps_v1_DaemonSet_spec_template {doc 'An object that describes the pod that will be created The DaemonSet will create exactly one copy of this pod on every node that matches the template_s node selector (or on every node if no node selector is specified) The only allowed templatespecrestartPolicy value is Always More info: https:_kubernetesio/docs/concepts/workloads/controllers/replicationcontroller#pod-template'}
								optional
									io_k8s_api_apps_v1_DaemonSet_spec_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
												optional
													String io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
											Integer io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_deletionGracePeriodSeconds {doc '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'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_finalizers cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											String io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
											Integer io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_managedFields cardinality [1..*] {doc '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'}
												optional
													String io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_managedFields_apiVersion {doc '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'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
														alternative
															io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_managedFields_subresource {doc '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'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_managedFields_time {doc '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'}
														optional
															String io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
												optional
													io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
											String io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
											String io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
											String io_k8s_api_apps_v1_DaemonSet_spec_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
									io_k8s_api_apps_v1_DaemonSet_spec_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
										mandatory
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
												optional
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
														mandatory
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
										optional
											Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
												optional
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																		optional
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																		optional
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
												optional
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_dnsConfig_options_name {doc 'Required'}
														optional
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_dnsConfig_options_value
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
												alternative
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_dnsPolicy_None {doc 'Specific value: None'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
												optional
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
														mandatory
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
												optional
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
											String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
												optional
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
												optional
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
														mandatory
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
											String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
												mandatory
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
														alternative
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows {doc 'Specific value: windows'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_linux {doc 'Specific value: linux'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
												alternative
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
												alternative
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
											Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
											String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
												optional
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
												alternative
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
											String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
											String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
												optional
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
														alternative
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
											String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
											String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
											Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
												optional
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
														alternative
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
														alternative
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
													Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
												mandatory
													Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
												optional
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
											io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
												optional
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
														mandatory
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
														optional
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
														optional
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																optional
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
														optional
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
														optional
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
														optional
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																		optional
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																				optional
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																						alternative
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																						alternative
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																				optional
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																		optional
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																						optional
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																						alternative
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																						optional
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																				optional
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
														optional
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
														optional
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
														optional
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
																optional
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																		optional
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																				optional
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																		optional
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																				optional
																					Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																		optional
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																				optional
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																						optional
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																					Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																						optional
																							String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																							io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																								alternative
																									String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																		optional
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																					String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																				optional
																					Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																			Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
														optional
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
														optional
															Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																optional
																	Integer io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
																optional
																	String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
													io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
														optional
															io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
															String io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
						optional
							Integer io_k8s_api_apps_v1_DaemonSet_spec_minReadySeconds {default 0, doc 'The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available Defaults to 0 (pod will be considered available as soon as it is ready)'}
							Integer io_k8s_api_apps_v1_DaemonSet_spec_revisionHistoryLimit {default 10, doc 'The number of old history to retain to allow rollback This is a pointer to distinguish between explicit zero and not specified Defaults to 10'}
							io_k8s_api_apps_v1_DaemonSet_spec_updateStrategy {doc 'An update strategy to replace existing DaemonSet pods with new pods'}
								optional
									io_k8s_api_apps_v1_DaemonSet_spec_updateStrategy_rollingUpdate {doc 'Rolling update config params Present only if type = RollingUpdate'}
										optional
											io_k8s_api_apps_v1_DaemonSet_spec_updateStrategy_rollingUpdate_maxSurge {default 0, doc 'The maximum number of nodes with an existing available DaemonSet pod that can have an updated DaemonSet pod during during an update Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%) This can not be 0 if MaxUnavailable is 0 Absolute number is calculated from percentage by rounding up to a minimum of 1 Default value is 0 Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (ie statusdesiredNumberScheduled) can have their a new pod created before the old pod is marked as deleted The update starts by launching new pods on 30% of nodes Once an updated pod is available (Ready for at least minReadySeconds) the old DaemonSet pod on that node is marked deleted If the old pod becomes unavailable for any reason (Ready transitions to false, is evicted, or is drained) an updated pod is immediatedly created on that node without considering surge limits Allowing surge implies the possibility that the resources consumed by the daemonset on any given node can double if the readiness check fails, and so resource intensive daemonsets should take into account that they may cause evictions during disruption'}
												alternative
													String io_k8s_api_apps_v1_DaemonSet_spec_updateStrategy_rollingUpdate_maxSurge_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_apps_v1_DaemonSet_spec_updateStrategy_rollingUpdate_maxSurge_asInteger {doc 'Sub-feature added of type Integer'}
											io_k8s_api_apps_v1_DaemonSet_spec_updateStrategy_rollingUpdate_maxUnavailable {default 1, doc 'The maximum number of DaemonSet pods that can be unavailable during the update Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%) Absolute number is calculated from percentage by rounding up This cannot be 0 if MaxSurge is 0 Default value is 1 Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (ie statusdesiredNumberScheduled) can have their pods stopped for an update at any given time The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update'}
												alternative
													String io_k8s_api_apps_v1_DaemonSet_spec_updateStrategy_rollingUpdate_maxUnavailable_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_apps_v1_DaemonSet_spec_updateStrategy_rollingUpdate_maxUnavailable_asInteger {doc 'Sub-feature added of type Integer'}
									io_k8s_api_apps_v1_DaemonSet_spec_updateStrategy_type {doc 'Type of daemon set update Can be RollingUpdate or OnDelete Default is RollingUpdate'}
										alternative
											io_k8s_api_apps_v1_DaemonSet_spec_updateStrategy_type_RollingUpdate {default, doc 'Specific value: RollingUpdate'}
											io_k8s_api_apps_v1_DaemonSet_spec_updateStrategy_type_OnDelete {doc 'Specific value: OnDelete'}
					io_k8s_api_apps_v1_DaemonSet_status {doc 'The current status of this daemon set This data may be out of date by some window of time Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						mandatory
							Integer io_k8s_api_apps_v1_DaemonSet_status_currentNumberScheduled {doc 'The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod More info: https:_kubernetesio/docs/concepts/workloads/controllers/daemonset/'}
							Integer io_k8s_api_apps_v1_DaemonSet_status_desiredNumberScheduled {doc 'The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod) More info: https:_kubernetesio/docs/concepts/workloads/controllers/daemonset/'}
							Integer io_k8s_api_apps_v1_DaemonSet_status_numberMisscheduled {doc 'The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod More info: https:_kubernetesio/docs/concepts/workloads/controllers/daemonset/'}
							Integer io_k8s_api_apps_v1_DaemonSet_status_numberReady {doc 'numberReady is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running with a Ready Condition'}
						optional
							Integer io_k8s_api_apps_v1_DaemonSet_status_collisionCount {doc 'Count of hash collisions for the DaemonSet The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision'}
							io_k8s_api_apps_v1_DaemonSet_status_conditions cardinality [1..*] {doc 'Represents the latest available observations of a DaemonSet_s current state'}
								mandatory
									io_k8s_api_apps_v1_DaemonSet_status_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
										alternative
											io_k8s_api_apps_v1_DaemonSet_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_apps_v1_DaemonSet_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_apps_v1_DaemonSet_status_conditions_status_True {doc 'Specific value: True'}
									String io_k8s_api_apps_v1_DaemonSet_status_conditions_type {doc 'Type of DaemonSet condition'}
								optional
									io_k8s_api_apps_v1_DaemonSet_status_conditions_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
										optional
											String io_k8s_api_apps_v1_DaemonSet_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_apps_v1_DaemonSet_status_conditions_message {doc 'A human readable message indicating details about the transition'}
									String io_k8s_api_apps_v1_DaemonSet_status_conditions_reason {doc 'The reason for the condition_s last transition'}
							Integer io_k8s_api_apps_v1_DaemonSet_status_numberAvailable {doc 'The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least specminReadySeconds)'}
							Integer io_k8s_api_apps_v1_DaemonSet_status_numberUnavailable {doc 'The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least specminReadySeconds)'}
							Integer io_k8s_api_apps_v1_DaemonSet_status_observedGeneration {doc 'The most recent generation observed by the daemon set controller'}
							Integer io_k8s_api_apps_v1_DaemonSet_status_updatedNumberScheduled {doc 'The total number of nodes that are running updated daemon pod'}
			io_k8s_api_apps_v1_DaemonSetCondition {doc 'DaemonSetCondition describes the state of a DaemonSet at a certain point'}
				mandatory
					io_k8s_api_apps_v1_DaemonSetCondition_status {doc 'Status of the condition, one of True, False, Unknown'}
						alternative
							io_k8s_api_apps_v1_DaemonSetCondition_status_Unknown {doc 'Specific value: Unknown'}
							io_k8s_api_apps_v1_DaemonSetCondition_status_False {doc 'Specific value: False'}
							io_k8s_api_apps_v1_DaemonSetCondition_status_True {doc 'Specific value: True'}
					String io_k8s_api_apps_v1_DaemonSetCondition_type {doc 'Type of DaemonSet condition'}
				optional
					io_k8s_api_apps_v1_DaemonSetCondition_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
						optional
							String io_k8s_api_apps_v1_DaemonSetCondition_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_api_apps_v1_DaemonSetCondition_message {doc 'A human readable message indicating details about the transition'}
					String io_k8s_api_apps_v1_DaemonSetCondition_reason {doc 'The reason for the condition_s last transition'}
			io_k8s_api_apps_v1_DaemonSetList {doc 'DaemonSetList is a collection of daemon sets'}
				mandatory
					io_k8s_api_apps_v1_DaemonSetList_items cardinality [1..*] {doc 'A list of daemon sets'}
						optional
							String io_k8s_api_apps_v1_DaemonSetList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_apps_v1_DaemonSetList_items_kind {default 'DaemonSet', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_apps_v1_DaemonSetList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_apps_v1_DaemonSetList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_apps_v1_DaemonSetList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_DaemonSetList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apps_v1_DaemonSetList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_apps_v1_DaemonSetList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_apps_v1_DaemonSetList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_apps_v1_DaemonSetList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_apps_v1_DaemonSetList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_apps_v1_DaemonSetList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_apps_v1_DaemonSetList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_apps_v1_DaemonSetList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_apps_v1_DaemonSetList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_apps_v1_DaemonSetList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_apps_v1_DaemonSetList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_apps_v1_DaemonSetList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_DaemonSetList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apps_v1_DaemonSetList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_apps_v1_DaemonSetList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_apps_v1_DaemonSetList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_apps_v1_DaemonSetList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_apps_v1_DaemonSetList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_apps_v1_DaemonSetList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_apps_v1_DaemonSetList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_apps_v1_DaemonSetList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_apps_v1_DaemonSetList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_apps_v1_DaemonSetList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_apps_v1_DaemonSetList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_apps_v1_DaemonSetList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_apps_v1_DaemonSetList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_apps_v1_DaemonSetList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_apps_v1_DaemonSetList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_apps_v1_DaemonSetList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_apps_v1_DaemonSetList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_apps_v1_DaemonSetList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_apps_v1_DaemonSetList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_apps_v1_DaemonSetList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_apps_v1_DaemonSetList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_apps_v1_DaemonSetList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_apps_v1_DaemonSetList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_apps_v1_DaemonSetList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_apps_v1_DaemonSetList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_apps_v1_DaemonSetList_items_spec {doc 'The desired behavior of this daemon set More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									io_k8s_api_apps_v1_DaemonSetList_items_spec_selector {doc 'A label query over pods that are managed by the daemon set Must match in order to be controlled It must match the pod template_s labels More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/#label-selectors'}
										optional
											io_k8s_api_apps_v1_DaemonSetList_items_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetList_items_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_apps_v1_DaemonSetList_items_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_apps_v1_DaemonSetList_items_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DaemonSetList_items_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetList_items_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_apps_v1_DaemonSetList_items_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apps_v1_DaemonSetList_items_spec_template {doc 'An object that describes the pod that will be created The DaemonSet will create exactly one copy of this pod on every node that matches the template_s node selector (or on every node if no node selector is specified) The only allowed templatespecrestartPolicy value is Always More info: https:_kubernetesio/docs/concepts/workloads/controllers/replicationcontroller#pod-template'}
										optional
											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
														optional
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
														optional
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
													Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_deletionGracePeriodSeconds {doc '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'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
														optional
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_finalizers cardinality [1..*] {doc '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'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
													Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_managedFields cardinality [1..*] {doc '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'}
														optional
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_managedFields_apiVersion {doc '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'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																alternative
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_managedFields_subresource {doc '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'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_managedFields_time {doc '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'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
													String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
														optional
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
													String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
													String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
													String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
												mandatory
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
														optional
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																alternative
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																				alternative
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																				mandatory
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																				alternative
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																				mandatory
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
												optional
													Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
														optional
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																						optional
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																						optional
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																						optional
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																						optional
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
														optional
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_dnsConfig_options_name {doc 'Required'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_dnsConfig_options_value
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
														alternative
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_dnsPolicy_None {doc 'Specific value: None'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
														optional
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																alternative
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																				alternative
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																				mandatory
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																				alternative
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																				mandatory
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
														optional
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
													String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
														optional
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
														optional
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																alternative
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																				alternative
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																				mandatory
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																				alternative
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																				mandatory
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
													String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
																alternative
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows {doc 'Specific value: windows'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_linux {doc 'Specific value: linux'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
														alternative
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
														alternative
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
													Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
													String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
														optional
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
														alternative
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
													String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
													String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
														optional
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
																alternative
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
													String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
													String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
													Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
														optional
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
																alternative
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
																alternative
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
															Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
														mandatory
															Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
														optional
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
														optional
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
																optional
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
																optional
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
																		mandatory
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																						optional
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																						optional
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																						optional
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																								alternative
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																								alternative
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																						optional
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																						optional
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																						optional
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																						optional
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																						optional
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																								optional
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																								alternative
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																								optional
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																						optional
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
																optional
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																						optional
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																						optional
																							Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																						optional
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																								optional
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																							Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																							io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																								mandatory
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																								optional
																									String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																									io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																										alternative
																											String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																							String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																						optional
																							Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																					Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
																optional
																	Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
															io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
																optional
																	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
																	String io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
								optional
									Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_minReadySeconds {default 0, doc 'The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available Defaults to 0 (pod will be considered available as soon as it is ready)'}
									Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_revisionHistoryLimit {default 10, doc 'The number of old history to retain to allow rollback This is a pointer to distinguish between explicit zero and not specified Defaults to 10'}
									io_k8s_api_apps_v1_DaemonSetList_items_spec_updateStrategy {doc 'An update strategy to replace existing DaemonSet pods with new pods'}
										optional
											io_k8s_api_apps_v1_DaemonSetList_items_spec_updateStrategy_rollingUpdate {doc 'Rolling update config params Present only if type = RollingUpdate'}
												optional
													io_k8s_api_apps_v1_DaemonSetList_items_spec_updateStrategy_rollingUpdate_maxSurge {default 0, doc 'The maximum number of nodes with an existing available DaemonSet pod that can have an updated DaemonSet pod during during an update Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%) This can not be 0 if MaxUnavailable is 0 Absolute number is calculated from percentage by rounding up to a minimum of 1 Default value is 0 Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (ie statusdesiredNumberScheduled) can have their a new pod created before the old pod is marked as deleted The update starts by launching new pods on 30% of nodes Once an updated pod is available (Ready for at least minReadySeconds) the old DaemonSet pod on that node is marked deleted If the old pod becomes unavailable for any reason (Ready transitions to false, is evicted, or is drained) an updated pod is immediatedly created on that node without considering surge limits Allowing surge implies the possibility that the resources consumed by the daemonset on any given node can double if the readiness check fails, and so resource intensive daemonsets should take into account that they may cause evictions during disruption'}
														alternative
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_updateStrategy_rollingUpdate_maxSurge_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_updateStrategy_rollingUpdate_maxSurge_asInteger {doc 'Sub-feature added of type Integer'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_updateStrategy_rollingUpdate_maxUnavailable {default 1, doc 'The maximum number of DaemonSet pods that can be unavailable during the update Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%) Absolute number is calculated from percentage by rounding up This cannot be 0 if MaxSurge is 0 Default value is 1 Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (ie statusdesiredNumberScheduled) can have their pods stopped for an update at any given time The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update'}
														alternative
															String io_k8s_api_apps_v1_DaemonSetList_items_spec_updateStrategy_rollingUpdate_maxUnavailable_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_DaemonSetList_items_spec_updateStrategy_rollingUpdate_maxUnavailable_asInteger {doc 'Sub-feature added of type Integer'}
											io_k8s_api_apps_v1_DaemonSetList_items_spec_updateStrategy_type {doc 'Type of daemon set update Can be RollingUpdate or OnDelete Default is RollingUpdate'}
												alternative
													io_k8s_api_apps_v1_DaemonSetList_items_spec_updateStrategy_type_RollingUpdate {default, doc 'Specific value: RollingUpdate'}
													io_k8s_api_apps_v1_DaemonSetList_items_spec_updateStrategy_type_OnDelete {doc 'Specific value: OnDelete'}
							io_k8s_api_apps_v1_DaemonSetList_items_status {doc 'The current status of this daemon set This data may be out of date by some window of time Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									Integer io_k8s_api_apps_v1_DaemonSetList_items_status_currentNumberScheduled {doc 'The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod More info: https:_kubernetesio/docs/concepts/workloads/controllers/daemonset/'}
									Integer io_k8s_api_apps_v1_DaemonSetList_items_status_desiredNumberScheduled {doc 'The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod) More info: https:_kubernetesio/docs/concepts/workloads/controllers/daemonset/'}
									Integer io_k8s_api_apps_v1_DaemonSetList_items_status_numberMisscheduled {doc 'The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod More info: https:_kubernetesio/docs/concepts/workloads/controllers/daemonset/'}
									Integer io_k8s_api_apps_v1_DaemonSetList_items_status_numberReady {doc 'numberReady is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running with a Ready Condition'}
								optional
									Integer io_k8s_api_apps_v1_DaemonSetList_items_status_collisionCount {doc 'Count of hash collisions for the DaemonSet The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision'}
									io_k8s_api_apps_v1_DaemonSetList_items_status_conditions cardinality [1..*] {doc 'Represents the latest available observations of a DaemonSet_s current state'}
										mandatory
											io_k8s_api_apps_v1_DaemonSetList_items_status_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
												alternative
													io_k8s_api_apps_v1_DaemonSetList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_api_apps_v1_DaemonSetList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_api_apps_v1_DaemonSetList_items_status_conditions_status_True {doc 'Specific value: True'}
											String io_k8s_api_apps_v1_DaemonSetList_items_status_conditions_type {doc 'Type of DaemonSet condition'}
										optional
											io_k8s_api_apps_v1_DaemonSetList_items_status_conditions_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
												optional
													String io_k8s_api_apps_v1_DaemonSetList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_apps_v1_DaemonSetList_items_status_conditions_message {doc 'A human readable message indicating details about the transition'}
											String io_k8s_api_apps_v1_DaemonSetList_items_status_conditions_reason {doc 'The reason for the condition_s last transition'}
									Integer io_k8s_api_apps_v1_DaemonSetList_items_status_numberAvailable {doc 'The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least specminReadySeconds)'}
									Integer io_k8s_api_apps_v1_DaemonSetList_items_status_numberUnavailable {doc 'The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least specminReadySeconds)'}
									Integer io_k8s_api_apps_v1_DaemonSetList_items_status_observedGeneration {doc 'The most recent generation observed by the daemon set controller'}
									Integer io_k8s_api_apps_v1_DaemonSetList_items_status_updatedNumberScheduled {doc 'The total number of nodes that are running updated daemon pod'}
				optional
					String io_k8s_api_apps_v1_DaemonSetList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_apps_v1_DaemonSetList_kind {default 'DaemonSetList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_apps_v1_DaemonSetList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_apps_v1_DaemonSetList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_apps_v1_DaemonSetList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_apps_v1_DaemonSetList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_apps_v1_DaemonSetList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_apps_v1_DaemonSetSpec {doc 'DaemonSetSpec is the specification of a daemon set'}
				mandatory
					io_k8s_api_apps_v1_DaemonSetSpec_selector {doc 'A label query over pods that are managed by the daemon set Must match in order to be controlled It must match the pod template_s labels More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/#label-selectors'}
						optional
							io_k8s_api_apps_v1_DaemonSetSpec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_apps_v1_DaemonSetSpec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_apps_v1_DaemonSetSpec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_apps_v1_DaemonSetSpec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_apps_v1_DaemonSetSpec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_apps_v1_DaemonSetSpec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_apps_v1_DaemonSetSpec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_apps_v1_DaemonSetSpec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_apps_v1_DaemonSetSpec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_apps_v1_DaemonSetSpec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_apps_v1_DaemonSetSpec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_apps_v1_DaemonSetSpec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_apps_v1_DaemonSetSpec_template {doc 'An object that describes the pod that will be created The DaemonSet will create exactly one copy of this pod on every node that matches the template_s node selector (or on every node if no node selector is specified) The only allowed templatespecrestartPolicy value is Always More info: https:_kubernetesio/docs/concepts/workloads/controllers/replicationcontroller#pod-template'}
						optional
							io_k8s_api_apps_v1_DaemonSetSpec_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_apps_v1_DaemonSetSpec_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_apps_v1_DaemonSetSpec_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
										mandatory
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
										optional
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
												mandatory
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
								optional
									Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
										optional
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																optional
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																optional
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																optional
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																optional
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																optional
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																optional
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
										optional
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_dnsConfig_options_name {doc 'Required'}
												optional
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_dnsConfig_options_value
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
										alternative
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_dnsPolicy_None {doc 'Specific value: None'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
										mandatory
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
										optional
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
												mandatory
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
										mandatory
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
										optional
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
									String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
										optional
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
										mandatory
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
										optional
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
												mandatory
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
									String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
										mandatory
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
										mandatory
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
												alternative
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows {doc 'Specific value: windows'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_linux {doc 'Specific value: linux'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
										alternative
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
										alternative
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
									Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
									String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
										mandatory
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
										mandatory
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
										optional
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
										alternative
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
									String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
									String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
										mandatory
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
										optional
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
												alternative
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												optional
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
												optional
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
									String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
									String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
									String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
									Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
										optional
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
												alternative
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
												alternative
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
											Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
										mandatory
											Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
										optional
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
									io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
										mandatory
											String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
										optional
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
												mandatory
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
												optional
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
														optional
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
												optional
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
												optional
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
												optional
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
														alternative
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
														mandatory
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																optional
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				alternative
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																optional
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																		optional
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																				alternative
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
												optional
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
												optional
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
												optional
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
														optional
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																optional
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																optional
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																optional
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																		optional
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																				mandatory
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																optional
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																			String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																mandatory
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																optional
																	String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																	Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
												optional
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
												optional
													Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
														mandatory
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
														optional
															Integer io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
														optional
															String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
											io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
												optional
													io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
													String io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
				optional
					Integer io_k8s_api_apps_v1_DaemonSetSpec_minReadySeconds {default 0, doc 'The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available Defaults to 0 (pod will be considered available as soon as it is ready)'}
					Integer io_k8s_api_apps_v1_DaemonSetSpec_revisionHistoryLimit {default 10, doc 'The number of old history to retain to allow rollback This is a pointer to distinguish between explicit zero and not specified Defaults to 10'}
					io_k8s_api_apps_v1_DaemonSetSpec_updateStrategy {doc 'An update strategy to replace existing DaemonSet pods with new pods'}
						optional
							io_k8s_api_apps_v1_DaemonSetSpec_updateStrategy_rollingUpdate {doc 'Rolling update config params Present only if type = RollingUpdate'}
								optional
									io_k8s_api_apps_v1_DaemonSetSpec_updateStrategy_rollingUpdate_maxSurge {default 0, doc 'The maximum number of nodes with an existing available DaemonSet pod that can have an updated DaemonSet pod during during an update Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%) This can not be 0 if MaxUnavailable is 0 Absolute number is calculated from percentage by rounding up to a minimum of 1 Default value is 0 Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (ie statusdesiredNumberScheduled) can have their a new pod created before the old pod is marked as deleted The update starts by launching new pods on 30% of nodes Once an updated pod is available (Ready for at least minReadySeconds) the old DaemonSet pod on that node is marked deleted If the old pod becomes unavailable for any reason (Ready transitions to false, is evicted, or is drained) an updated pod is immediatedly created on that node without considering surge limits Allowing surge implies the possibility that the resources consumed by the daemonset on any given node can double if the readiness check fails, and so resource intensive daemonsets should take into account that they may cause evictions during disruption'}
										alternative
											String io_k8s_api_apps_v1_DaemonSetSpec_updateStrategy_rollingUpdate_maxSurge_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_apps_v1_DaemonSetSpec_updateStrategy_rollingUpdate_maxSurge_asInteger {doc 'Sub-feature added of type Integer'}
									io_k8s_api_apps_v1_DaemonSetSpec_updateStrategy_rollingUpdate_maxUnavailable {default 1, doc 'The maximum number of DaemonSet pods that can be unavailable during the update Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%) Absolute number is calculated from percentage by rounding up This cannot be 0 if MaxSurge is 0 Default value is 1 Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (ie statusdesiredNumberScheduled) can have their pods stopped for an update at any given time The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update'}
										alternative
											String io_k8s_api_apps_v1_DaemonSetSpec_updateStrategy_rollingUpdate_maxUnavailable_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_apps_v1_DaemonSetSpec_updateStrategy_rollingUpdate_maxUnavailable_asInteger {doc 'Sub-feature added of type Integer'}
							io_k8s_api_apps_v1_DaemonSetSpec_updateStrategy_type {doc 'Type of daemon set update Can be RollingUpdate or OnDelete Default is RollingUpdate'}
								alternative
									io_k8s_api_apps_v1_DaemonSetSpec_updateStrategy_type_RollingUpdate {default, doc 'Specific value: RollingUpdate'}
									io_k8s_api_apps_v1_DaemonSetSpec_updateStrategy_type_OnDelete {doc 'Specific value: OnDelete'}
			io_k8s_api_apps_v1_DaemonSetStatus {doc 'DaemonSetStatus represents the current status of a daemon set'}
				mandatory
					Integer io_k8s_api_apps_v1_DaemonSetStatus_currentNumberScheduled {doc 'The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod More info: https:_kubernetesio/docs/concepts/workloads/controllers/daemonset/'}
					Integer io_k8s_api_apps_v1_DaemonSetStatus_desiredNumberScheduled {doc 'The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod) More info: https:_kubernetesio/docs/concepts/workloads/controllers/daemonset/'}
					Integer io_k8s_api_apps_v1_DaemonSetStatus_numberMisscheduled {doc 'The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod More info: https:_kubernetesio/docs/concepts/workloads/controllers/daemonset/'}
					Integer io_k8s_api_apps_v1_DaemonSetStatus_numberReady {doc 'numberReady is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running with a Ready Condition'}
				optional
					Integer io_k8s_api_apps_v1_DaemonSetStatus_collisionCount {doc 'Count of hash collisions for the DaemonSet The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision'}
					io_k8s_api_apps_v1_DaemonSetStatus_conditions cardinality [1..*] {doc 'Represents the latest available observations of a DaemonSet_s current state'}
						mandatory
							io_k8s_api_apps_v1_DaemonSetStatus_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
								alternative
									io_k8s_api_apps_v1_DaemonSetStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_apps_v1_DaemonSetStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_apps_v1_DaemonSetStatus_conditions_status_True {doc 'Specific value: True'}
							String io_k8s_api_apps_v1_DaemonSetStatus_conditions_type {doc 'Type of DaemonSet condition'}
						optional
							io_k8s_api_apps_v1_DaemonSetStatus_conditions_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
								optional
									String io_k8s_api_apps_v1_DaemonSetStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_apps_v1_DaemonSetStatus_conditions_message {doc 'A human readable message indicating details about the transition'}
							String io_k8s_api_apps_v1_DaemonSetStatus_conditions_reason {doc 'The reason for the condition_s last transition'}
					Integer io_k8s_api_apps_v1_DaemonSetStatus_numberAvailable {doc 'The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least specminReadySeconds)'}
					Integer io_k8s_api_apps_v1_DaemonSetStatus_numberUnavailable {doc 'The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least specminReadySeconds)'}
					Integer io_k8s_api_apps_v1_DaemonSetStatus_observedGeneration {doc 'The most recent generation observed by the daemon set controller'}
					Integer io_k8s_api_apps_v1_DaemonSetStatus_updatedNumberScheduled {doc 'The total number of nodes that are running updated daemon pod'}
			io_k8s_api_apps_v1_DaemonSetUpdateStrategy {doc 'DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet'}
				optional
					io_k8s_api_apps_v1_DaemonSetUpdateStrategy_rollingUpdate {doc 'Rolling update config params Present only if type = RollingUpdate'}
						optional
							io_k8s_api_apps_v1_DaemonSetUpdateStrategy_rollingUpdate_maxSurge {default 0, doc 'The maximum number of nodes with an existing available DaemonSet pod that can have an updated DaemonSet pod during during an update Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%) This can not be 0 if MaxUnavailable is 0 Absolute number is calculated from percentage by rounding up to a minimum of 1 Default value is 0 Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (ie statusdesiredNumberScheduled) can have their a new pod created before the old pod is marked as deleted The update starts by launching new pods on 30% of nodes Once an updated pod is available (Ready for at least minReadySeconds) the old DaemonSet pod on that node is marked deleted If the old pod becomes unavailable for any reason (Ready transitions to false, is evicted, or is drained) an updated pod is immediatedly created on that node without considering surge limits Allowing surge implies the possibility that the resources consumed by the daemonset on any given node can double if the readiness check fails, and so resource intensive daemonsets should take into account that they may cause evictions during disruption'}
								alternative
									String io_k8s_api_apps_v1_DaemonSetUpdateStrategy_rollingUpdate_maxSurge_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_apps_v1_DaemonSetUpdateStrategy_rollingUpdate_maxSurge_asInteger {doc 'Sub-feature added of type Integer'}
							io_k8s_api_apps_v1_DaemonSetUpdateStrategy_rollingUpdate_maxUnavailable {default 1, doc 'The maximum number of DaemonSet pods that can be unavailable during the update Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%) Absolute number is calculated from percentage by rounding up This cannot be 0 if MaxSurge is 0 Default value is 1 Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (ie statusdesiredNumberScheduled) can have their pods stopped for an update at any given time The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update'}
								alternative
									String io_k8s_api_apps_v1_DaemonSetUpdateStrategy_rollingUpdate_maxUnavailable_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_apps_v1_DaemonSetUpdateStrategy_rollingUpdate_maxUnavailable_asInteger {doc 'Sub-feature added of type Integer'}
					io_k8s_api_apps_v1_DaemonSetUpdateStrategy_type {doc 'Type of daemon set update Can be RollingUpdate or OnDelete Default is RollingUpdate'}
						alternative
							io_k8s_api_apps_v1_DaemonSetUpdateStrategy_type_RollingUpdate {default, doc 'Specific value: RollingUpdate'}
							io_k8s_api_apps_v1_DaemonSetUpdateStrategy_type_OnDelete {doc 'Specific value: OnDelete'}
			io_k8s_api_apps_v1_Deployment {doc 'Deployment enables declarative updates for Pods and ReplicaSets'}
				optional
					String io_k8s_api_apps_v1_Deployment_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_apps_v1_Deployment_kind {default 'Deployment', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_apps_v1_Deployment_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_apps_v1_Deployment_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_apps_v1_Deployment_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_apps_v1_Deployment_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_apps_v1_Deployment_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_apps_v1_Deployment_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_apps_v1_Deployment_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_apps_v1_Deployment_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_apps_v1_Deployment_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_apps_v1_Deployment_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_apps_v1_Deployment_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_apps_v1_Deployment_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_apps_v1_Deployment_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_apps_v1_Deployment_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_apps_v1_Deployment_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_apps_v1_Deployment_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_apps_v1_Deployment_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_apps_v1_Deployment_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_apps_v1_Deployment_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_apps_v1_Deployment_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_apps_v1_Deployment_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_apps_v1_Deployment_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_apps_v1_Deployment_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_apps_v1_Deployment_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_apps_v1_Deployment_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_apps_v1_Deployment_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_apps_v1_Deployment_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_apps_v1_Deployment_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_apps_v1_Deployment_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_apps_v1_Deployment_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_apps_v1_Deployment_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_apps_v1_Deployment_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_apps_v1_Deployment_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_apps_v1_Deployment_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_apps_v1_Deployment_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_apps_v1_Deployment_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_apps_v1_Deployment_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_apps_v1_Deployment_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_apps_v1_Deployment_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_apps_v1_Deployment_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_apps_v1_Deployment_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_apps_v1_Deployment_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_apps_v1_Deployment_spec {doc 'Specification of the desired behavior of the Deployment'}
						mandatory
							io_k8s_api_apps_v1_Deployment_spec_selector {doc 'Label selector for pods Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment It must match the pod template_s labels'}
								optional
									io_k8s_api_apps_v1_Deployment_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_apps_v1_Deployment_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_apps_v1_Deployment_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_apps_v1_Deployment_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_apps_v1_Deployment_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_apps_v1_Deployment_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_apps_v1_Deployment_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_apps_v1_Deployment_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_apps_v1_Deployment_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_apps_v1_Deployment_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_apps_v1_Deployment_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_Deployment_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_apps_v1_Deployment_spec_template {doc 'Template describes the pods that will be created The only allowed templatespecrestartPolicy value is Always'}
								optional
									io_k8s_api_apps_v1_Deployment_spec_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											io_k8s_api_apps_v1_Deployment_spec_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
												optional
													String io_k8s_api_apps_v1_Deployment_spec_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_apps_v1_Deployment_spec_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_apps_v1_Deployment_spec_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_apps_v1_Deployment_spec_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_apps_v1_Deployment_spec_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
											Integer io_k8s_api_apps_v1_Deployment_spec_template_metadata_deletionGracePeriodSeconds {doc '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'}
											io_k8s_api_apps_v1_Deployment_spec_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_apps_v1_Deployment_spec_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_apps_v1_Deployment_spec_template_metadata_finalizers cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_apps_v1_Deployment_spec_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											String io_k8s_api_apps_v1_Deployment_spec_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
											Integer io_k8s_api_apps_v1_Deployment_spec_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
											io_k8s_api_apps_v1_Deployment_spec_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
												mandatory
													String io_k8s_api_apps_v1_Deployment_spec_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_apps_v1_Deployment_spec_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_apps_v1_Deployment_spec_template_metadata_managedFields cardinality [1..*] {doc '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'}
												optional
													String io_k8s_api_apps_v1_Deployment_spec_template_metadata_managedFields_apiVersion {doc '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'}
													String io_k8s_api_apps_v1_Deployment_spec_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
													io_k8s_api_apps_v1_Deployment_spec_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
															io_k8s_api_apps_v1_Deployment_spec_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
													String io_k8s_api_apps_v1_Deployment_spec_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
													io_k8s_api_apps_v1_Deployment_spec_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
														alternative
															io_k8s_api_apps_v1_Deployment_spec_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
															io_k8s_api_apps_v1_Deployment_spec_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
													String io_k8s_api_apps_v1_Deployment_spec_template_metadata_managedFields_subresource {doc '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'}
													io_k8s_api_apps_v1_Deployment_spec_template_metadata_managedFields_time {doc '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'}
														optional
															String io_k8s_api_apps_v1_Deployment_spec_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_apps_v1_Deployment_spec_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_apps_v1_Deployment_spec_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
											io_k8s_api_apps_v1_Deployment_spec_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_apps_v1_Deployment_spec_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
													String io_k8s_api_apps_v1_Deployment_spec_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
													String io_k8s_api_apps_v1_Deployment_spec_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
													String io_k8s_api_apps_v1_Deployment_spec_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
												optional
													io_k8s_api_apps_v1_Deployment_spec_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
													io_k8s_api_apps_v1_Deployment_spec_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
											String io_k8s_api_apps_v1_Deployment_spec_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
											String io_k8s_api_apps_v1_Deployment_spec_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
											String io_k8s_api_apps_v1_Deployment_spec_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
									io_k8s_api_apps_v1_Deployment_spec_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
										mandatory
											io_k8s_api_apps_v1_Deployment_spec_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
												optional
													io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
														mandatory
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
										optional
											Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
												optional
													io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																		optional
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																		optional
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
												optional
													io_k8s_api_apps_v1_Deployment_spec_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_dnsConfig_options_name {doc 'Required'}
														optional
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_dnsConfig_options_value
													io_k8s_api_apps_v1_Deployment_spec_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
												alternative
													io_k8s_api_apps_v1_Deployment_spec_template_spec_dnsPolicy_None {doc 'Specific value: None'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
												mandatory
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
												optional
													io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
														mandatory
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
												mandatory
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
												optional
													io_k8s_api_apps_v1_Deployment_spec_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
											String io_k8s_api_apps_v1_Deployment_spec_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
												optional
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
												mandatory
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
												optional
													io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
														mandatory
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
											String io_k8s_api_apps_v1_Deployment_spec_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
												mandatory
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
												mandatory
													io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
														alternative
															io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows {doc 'Specific value: windows'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_linux {doc 'Specific value: linux'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
												alternative
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
												alternative
													io_k8s_api_apps_v1_Deployment_spec_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
											Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
											String io_k8s_api_apps_v1_Deployment_spec_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
												mandatory
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
												mandatory
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
												optional
													io_k8s_api_apps_v1_Deployment_spec_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
												alternative
													io_k8s_api_apps_v1_Deployment_spec_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
											String io_k8s_api_apps_v1_Deployment_spec_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
											String io_k8s_api_apps_v1_Deployment_spec_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
												mandatory
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
												optional
													io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
														alternative
															io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											String io_k8s_api_apps_v1_Deployment_spec_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
											String io_k8s_api_apps_v1_Deployment_spec_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
											String io_k8s_api_apps_v1_Deployment_spec_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
											Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
												optional
													io_k8s_api_apps_v1_Deployment_spec_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
														alternative
															io_k8s_api_apps_v1_Deployment_spec_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
														alternative
															io_k8s_api_apps_v1_Deployment_spec_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
													Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
												mandatory
													Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
												optional
													io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
											io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
												mandatory
													String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
												optional
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
														mandatory
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
														optional
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
														optional
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																optional
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
														optional
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
														optional
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
														optional
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																alternative
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
																mandatory
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																		optional
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																				optional
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																				optional
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																				optional
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																						alternative
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																						alternative
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																				optional
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																		optional
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																				optional
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																				optional
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																				optional
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																				optional
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																						optional
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																						alternative
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																						optional
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																				optional
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
														optional
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
														optional
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
														optional
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
																optional
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																		optional
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																				optional
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																		optional
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																				optional
																					Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																		optional
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																				optional
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																						mandatory
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																						optional
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																					Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																						mandatory
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																						optional
																							String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																							io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																								alternative
																									String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																		optional
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																				mandatory
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																					String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																				optional
																					Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																		mandatory
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																		optional
																			String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																			Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
														optional
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
														optional
															Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																mandatory
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																optional
																	Integer io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
																optional
																	String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
													io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
														optional
															io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
															String io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
						optional
							Integer io_k8s_api_apps_v1_Deployment_spec_minReadySeconds {default 0, doc 'Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available Defaults to 0 (pod will be considered available as soon as it is ready)'}
							io_k8s_api_apps_v1_Deployment_spec_paused {doc 'Indicates that the deployment is paused'}
							Integer io_k8s_api_apps_v1_Deployment_spec_progressDeadlineSeconds {default 600, doc 'The maximum time in seconds for a deployment to make progress before it is considered to be failed The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status Note that progress will not be estimated during the time a deployment is paused Defaults to 600s'}
							Integer io_k8s_api_apps_v1_Deployment_spec_replicas {default 1, doc 'Number of desired pods This is a pointer to distinguish between explicit zero and not specified Defaults to 1'}
							Integer io_k8s_api_apps_v1_Deployment_spec_revisionHistoryLimit {default 10, doc 'The number of old ReplicaSets to retain to allow rollback This is a pointer to distinguish between explicit zero and not specified Defaults to 10'}
							io_k8s_api_apps_v1_Deployment_spec_strategy {doc 'The deployment strategy to use to replace existing pods with new ones'}
								optional
									io_k8s_api_apps_v1_Deployment_spec_strategy_rollingUpdate {doc 'Rolling update config params Present only if DeploymentStrategyType = RollingUpdate'}
										optional
											io_k8s_api_apps_v1_Deployment_spec_strategy_rollingUpdate_maxSurge {default 25, doc 'The maximum number of pods that can be scheduled above the desired number of pods Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%) This can not be 0 if MaxUnavailable is 0 Absolute number is calculated from percentage by rounding up Defaults to 25% Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods'}
												alternative
													String io_k8s_api_apps_v1_Deployment_spec_strategy_rollingUpdate_maxSurge_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_apps_v1_Deployment_spec_strategy_rollingUpdate_maxSurge_asInteger {doc 'Sub-feature added of type Integer'}
											io_k8s_api_apps_v1_Deployment_spec_strategy_rollingUpdate_maxUnavailable {default 25, doc 'The maximum number of pods that can be unavailable during the update Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%) Absolute number is calculated from percentage by rounding down This can not be 0 if MaxSurge is 0 Defaults to 25% Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods'}
												alternative
													String io_k8s_api_apps_v1_Deployment_spec_strategy_rollingUpdate_maxUnavailable_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_apps_v1_Deployment_spec_strategy_rollingUpdate_maxUnavailable_asInteger {doc 'Sub-feature added of type Integer'}
									io_k8s_api_apps_v1_Deployment_spec_strategy_type {doc 'Type of deployment Can be Recreate or RollingUpdate Default is RollingUpdate'}
										alternative
											io_k8s_api_apps_v1_Deployment_spec_strategy_type_RollingUpdate {default, doc 'Specific value: RollingUpdate'}
											io_k8s_api_apps_v1_Deployment_spec_strategy_type_Recreate {doc 'Specific value: Recreate'}
					io_k8s_api_apps_v1_Deployment_status {doc 'Most recently observed status of the Deployment'}
						optional
							Integer io_k8s_api_apps_v1_Deployment_status_availableReplicas {doc 'Total number of available pods (ready for at least minReadySeconds) targeted by this deployment'}
							Integer io_k8s_api_apps_v1_Deployment_status_collisionCount {doc 'Count of hash collisions for the Deployment The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet'}
							io_k8s_api_apps_v1_Deployment_status_conditions cardinality [1..*] {doc 'Represents the latest available observations of a deployment_s current state'}
								mandatory
									io_k8s_api_apps_v1_Deployment_status_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
										alternative
											io_k8s_api_apps_v1_Deployment_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_apps_v1_Deployment_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_apps_v1_Deployment_status_conditions_status_True {doc 'Specific value: True'}
									String io_k8s_api_apps_v1_Deployment_status_conditions_type {doc 'Type of deployment condition'}
								optional
									io_k8s_api_apps_v1_Deployment_status_conditions_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
										optional
											String io_k8s_api_apps_v1_Deployment_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_apps_v1_Deployment_status_conditions_lastUpdateTime {doc 'The last time this condition was updated'}
										optional
											String io_k8s_api_apps_v1_Deployment_status_conditions_lastUpdateTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_apps_v1_Deployment_status_conditions_message {doc 'A human readable message indicating details about the transition'}
									String io_k8s_api_apps_v1_Deployment_status_conditions_reason {doc 'The reason for the condition_s last transition'}
							Integer io_k8s_api_apps_v1_Deployment_status_observedGeneration {doc 'The generation observed by the deployment controller'}
							Integer io_k8s_api_apps_v1_Deployment_status_readyReplicas {doc 'readyReplicas is the number of pods targeted by this Deployment with a Ready Condition'}
							Integer io_k8s_api_apps_v1_Deployment_status_replicas {doc 'Total number of non-terminated pods targeted by this deployment (their labels match the selector)'}
							Integer io_k8s_api_apps_v1_Deployment_status_unavailableReplicas {doc 'Total number of unavailable pods targeted by this deployment This is the total number of pods that are still required for the deployment to have 100% available capacity They may either be pods that are running but not yet available or pods that still have not been created'}
							Integer io_k8s_api_apps_v1_Deployment_status_updatedReplicas {doc 'Total number of non-terminated pods targeted by this deployment that have the desired template spec'}
			io_k8s_api_apps_v1_DeploymentCondition {doc 'DeploymentCondition describes the state of a deployment at a certain point'}
				mandatory
					io_k8s_api_apps_v1_DeploymentCondition_status {doc 'Status of the condition, one of True, False, Unknown'}
						alternative
							io_k8s_api_apps_v1_DeploymentCondition_status_Unknown {doc 'Specific value: Unknown'}
							io_k8s_api_apps_v1_DeploymentCondition_status_False {doc 'Specific value: False'}
							io_k8s_api_apps_v1_DeploymentCondition_status_True {doc 'Specific value: True'}
					String io_k8s_api_apps_v1_DeploymentCondition_type {doc 'Type of deployment condition'}
				optional
					io_k8s_api_apps_v1_DeploymentCondition_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
						optional
							String io_k8s_api_apps_v1_DeploymentCondition_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					io_k8s_api_apps_v1_DeploymentCondition_lastUpdateTime {doc 'The last time this condition was updated'}
						optional
							String io_k8s_api_apps_v1_DeploymentCondition_lastUpdateTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_api_apps_v1_DeploymentCondition_message {doc 'A human readable message indicating details about the transition'}
					String io_k8s_api_apps_v1_DeploymentCondition_reason {doc 'The reason for the condition_s last transition'}
			io_k8s_api_apps_v1_DeploymentList {doc 'DeploymentList is a list of Deployments'}
				mandatory
					io_k8s_api_apps_v1_DeploymentList_items cardinality [1..*] {doc 'Items is the list of Deployments'}
						optional
							String io_k8s_api_apps_v1_DeploymentList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_apps_v1_DeploymentList_items_kind {default 'Deployment', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_apps_v1_DeploymentList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_apps_v1_DeploymentList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_apps_v1_DeploymentList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_DeploymentList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apps_v1_DeploymentList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_apps_v1_DeploymentList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_apps_v1_DeploymentList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_apps_v1_DeploymentList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_apps_v1_DeploymentList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_apps_v1_DeploymentList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_apps_v1_DeploymentList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_apps_v1_DeploymentList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_apps_v1_DeploymentList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_apps_v1_DeploymentList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_apps_v1_DeploymentList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_apps_v1_DeploymentList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_DeploymentList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apps_v1_DeploymentList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_apps_v1_DeploymentList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_apps_v1_DeploymentList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_apps_v1_DeploymentList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_apps_v1_DeploymentList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_apps_v1_DeploymentList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_apps_v1_DeploymentList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_apps_v1_DeploymentList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_apps_v1_DeploymentList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_apps_v1_DeploymentList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_apps_v1_DeploymentList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_apps_v1_DeploymentList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_apps_v1_DeploymentList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_apps_v1_DeploymentList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_apps_v1_DeploymentList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_apps_v1_DeploymentList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_apps_v1_DeploymentList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_apps_v1_DeploymentList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_apps_v1_DeploymentList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_apps_v1_DeploymentList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_apps_v1_DeploymentList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_apps_v1_DeploymentList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_apps_v1_DeploymentList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_apps_v1_DeploymentList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_apps_v1_DeploymentList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_apps_v1_DeploymentList_items_spec {doc 'Specification of the desired behavior of the Deployment'}
								mandatory
									io_k8s_api_apps_v1_DeploymentList_items_spec_selector {doc 'Label selector for pods Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment It must match the pod template_s labels'}
										optional
											io_k8s_api_apps_v1_DeploymentList_items_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentList_items_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_apps_v1_DeploymentList_items_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_apps_v1_DeploymentList_items_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentList_items_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DeploymentList_items_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentList_items_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_apps_v1_DeploymentList_items_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apps_v1_DeploymentList_items_spec_template {doc 'Template describes the pods that will be created The only allowed templatespecrestartPolicy value is Always'}
										optional
											io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
														optional
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
														optional
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
													Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_deletionGracePeriodSeconds {doc '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'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
														optional
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_finalizers cardinality [1..*] {doc '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'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													String io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
													Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_managedFields cardinality [1..*] {doc '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'}
														optional
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_managedFields_apiVersion {doc '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'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																alternative
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_managedFields_subresource {doc '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'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_managedFields_time {doc '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'}
																optional
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													String io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
													String io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
														optional
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
													String io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
													String io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
													String io_k8s_api_apps_v1_DeploymentList_items_spec_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
												mandatory
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
														optional
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																optional
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																alternative
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
																mandatory
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																optional
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																				alternative
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																				mandatory
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																				alternative
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																				mandatory
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																optional
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
												optional
													Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
														optional
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																				optional
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																				optional
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																				optional
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																						optional
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																						optional
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																				optional
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																						optional
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																						optional
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
														optional
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_dnsConfig_options_name {doc 'Required'}
																optional
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_dnsConfig_options_value
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
														alternative
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_dnsPolicy_None {doc 'Specific value: None'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
														optional
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																optional
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																alternative
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
																mandatory
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																optional
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																				alternative
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																				mandatory
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																				alternative
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																				mandatory
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																optional
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
														optional
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
													String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
														optional
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
														optional
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																optional
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																alternative
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
																mandatory
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																optional
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																				alternative
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																				mandatory
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																				alternative
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																				mandatory
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																optional
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
													String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
														mandatory
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
																alternative
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows {doc 'Specific value: windows'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_linux {doc 'Specific value: linux'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
														alternative
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
														alternative
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
													Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
													String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
														optional
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
														alternative
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
													String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
													String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
														optional
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
																alternative
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
													String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
													String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
													Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
														optional
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
																alternative
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
																alternative
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
															Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
														mandatory
															Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
														optional
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
														optional
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																optional
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
																optional
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
																optional
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
																optional
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																optional
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																		alternative
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
																		mandatory
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																				optional
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																						optional
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																						optional
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																						optional
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																								alternative
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																								alternative
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																						optional
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																				optional
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																						optional
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																						optional
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																						optional
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																						optional
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																								optional
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																								alternative
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																								optional
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																						optional
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
																optional
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
																optional
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
																optional
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
																		optional
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																				optional
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																						optional
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																				optional
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																						optional
																							Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																				optional
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																						optional
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																								mandatory
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																								optional
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																							Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																							io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																								mandatory
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																								optional
																									String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																									io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																										alternative
																											String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																				optional
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																							String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																						optional
																							Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																					Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
																optional
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
																optional
																	Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
															io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
																optional
																	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
																	String io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
								optional
									Integer io_k8s_api_apps_v1_DeploymentList_items_spec_minReadySeconds {default 0, doc 'Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available Defaults to 0 (pod will be considered available as soon as it is ready)'}
									io_k8s_api_apps_v1_DeploymentList_items_spec_paused {doc 'Indicates that the deployment is paused'}
									Integer io_k8s_api_apps_v1_DeploymentList_items_spec_progressDeadlineSeconds {default 600, doc 'The maximum time in seconds for a deployment to make progress before it is considered to be failed The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status Note that progress will not be estimated during the time a deployment is paused Defaults to 600s'}
									Integer io_k8s_api_apps_v1_DeploymentList_items_spec_replicas {default 1, doc 'Number of desired pods This is a pointer to distinguish between explicit zero and not specified Defaults to 1'}
									Integer io_k8s_api_apps_v1_DeploymentList_items_spec_revisionHistoryLimit {default 10, doc 'The number of old ReplicaSets to retain to allow rollback This is a pointer to distinguish between explicit zero and not specified Defaults to 10'}
									io_k8s_api_apps_v1_DeploymentList_items_spec_strategy {doc 'The deployment strategy to use to replace existing pods with new ones'}
										optional
											io_k8s_api_apps_v1_DeploymentList_items_spec_strategy_rollingUpdate {doc 'Rolling update config params Present only if DeploymentStrategyType = RollingUpdate'}
												optional
													io_k8s_api_apps_v1_DeploymentList_items_spec_strategy_rollingUpdate_maxSurge {default 25, doc 'The maximum number of pods that can be scheduled above the desired number of pods Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%) This can not be 0 if MaxUnavailable is 0 Absolute number is calculated from percentage by rounding up Defaults to 25% Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods'}
														alternative
															String io_k8s_api_apps_v1_DeploymentList_items_spec_strategy_rollingUpdate_maxSurge_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_DeploymentList_items_spec_strategy_rollingUpdate_maxSurge_asInteger {doc 'Sub-feature added of type Integer'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_strategy_rollingUpdate_maxUnavailable {default 25, doc 'The maximum number of pods that can be unavailable during the update Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%) Absolute number is calculated from percentage by rounding down This can not be 0 if MaxSurge is 0 Defaults to 25% Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods'}
														alternative
															String io_k8s_api_apps_v1_DeploymentList_items_spec_strategy_rollingUpdate_maxUnavailable_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_DeploymentList_items_spec_strategy_rollingUpdate_maxUnavailable_asInteger {doc 'Sub-feature added of type Integer'}
											io_k8s_api_apps_v1_DeploymentList_items_spec_strategy_type {doc 'Type of deployment Can be Recreate or RollingUpdate Default is RollingUpdate'}
												alternative
													io_k8s_api_apps_v1_DeploymentList_items_spec_strategy_type_RollingUpdate {default, doc 'Specific value: RollingUpdate'}
													io_k8s_api_apps_v1_DeploymentList_items_spec_strategy_type_Recreate {doc 'Specific value: Recreate'}
							io_k8s_api_apps_v1_DeploymentList_items_status {doc 'Most recently observed status of the Deployment'}
								optional
									Integer io_k8s_api_apps_v1_DeploymentList_items_status_availableReplicas {doc 'Total number of available pods (ready for at least minReadySeconds) targeted by this deployment'}
									Integer io_k8s_api_apps_v1_DeploymentList_items_status_collisionCount {doc 'Count of hash collisions for the Deployment The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet'}
									io_k8s_api_apps_v1_DeploymentList_items_status_conditions cardinality [1..*] {doc 'Represents the latest available observations of a deployment_s current state'}
										mandatory
											io_k8s_api_apps_v1_DeploymentList_items_status_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
												alternative
													io_k8s_api_apps_v1_DeploymentList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_api_apps_v1_DeploymentList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_api_apps_v1_DeploymentList_items_status_conditions_status_True {doc 'Specific value: True'}
											String io_k8s_api_apps_v1_DeploymentList_items_status_conditions_type {doc 'Type of deployment condition'}
										optional
											io_k8s_api_apps_v1_DeploymentList_items_status_conditions_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
												optional
													String io_k8s_api_apps_v1_DeploymentList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_apps_v1_DeploymentList_items_status_conditions_lastUpdateTime {doc 'The last time this condition was updated'}
												optional
													String io_k8s_api_apps_v1_DeploymentList_items_status_conditions_lastUpdateTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_apps_v1_DeploymentList_items_status_conditions_message {doc 'A human readable message indicating details about the transition'}
											String io_k8s_api_apps_v1_DeploymentList_items_status_conditions_reason {doc 'The reason for the condition_s last transition'}
									Integer io_k8s_api_apps_v1_DeploymentList_items_status_observedGeneration {doc 'The generation observed by the deployment controller'}
									Integer io_k8s_api_apps_v1_DeploymentList_items_status_readyReplicas {doc 'readyReplicas is the number of pods targeted by this Deployment with a Ready Condition'}
									Integer io_k8s_api_apps_v1_DeploymentList_items_status_replicas {doc 'Total number of non-terminated pods targeted by this deployment (their labels match the selector)'}
									Integer io_k8s_api_apps_v1_DeploymentList_items_status_unavailableReplicas {doc 'Total number of unavailable pods targeted by this deployment This is the total number of pods that are still required for the deployment to have 100% available capacity They may either be pods that are running but not yet available or pods that still have not been created'}
									Integer io_k8s_api_apps_v1_DeploymentList_items_status_updatedReplicas {doc 'Total number of non-terminated pods targeted by this deployment that have the desired template spec'}
				optional
					String io_k8s_api_apps_v1_DeploymentList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_apps_v1_DeploymentList_kind {default 'DeploymentList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_apps_v1_DeploymentList_metadata {doc 'Standard list metadata'}
						optional
							String io_k8s_api_apps_v1_DeploymentList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_apps_v1_DeploymentList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_apps_v1_DeploymentList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_apps_v1_DeploymentList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_apps_v1_DeploymentSpec {doc 'DeploymentSpec is the specification of the desired behavior of the Deployment'}
				mandatory
					io_k8s_api_apps_v1_DeploymentSpec_selector {doc 'Label selector for pods Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment It must match the pod template_s labels'}
						optional
							io_k8s_api_apps_v1_DeploymentSpec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_apps_v1_DeploymentSpec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_apps_v1_DeploymentSpec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_apps_v1_DeploymentSpec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_apps_v1_DeploymentSpec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_apps_v1_DeploymentSpec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_apps_v1_DeploymentSpec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_apps_v1_DeploymentSpec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_apps_v1_DeploymentSpec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_apps_v1_DeploymentSpec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_apps_v1_DeploymentSpec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_apps_v1_DeploymentSpec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_apps_v1_DeploymentSpec_template {doc 'Template describes the pods that will be created The only allowed templatespecrestartPolicy value is Always'}
						optional
							io_k8s_api_apps_v1_DeploymentSpec_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_apps_v1_DeploymentSpec_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_apps_v1_DeploymentSpec_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apps_v1_DeploymentSpec_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_apps_v1_DeploymentSpec_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_apps_v1_DeploymentSpec_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_apps_v1_DeploymentSpec_template_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_apps_v1_DeploymentSpec_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_apps_v1_DeploymentSpec_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_apps_v1_DeploymentSpec_template_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_apps_v1_DeploymentSpec_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_apps_v1_DeploymentSpec_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_apps_v1_DeploymentSpec_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_apps_v1_DeploymentSpec_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_apps_v1_DeploymentSpec_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apps_v1_DeploymentSpec_template_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_apps_v1_DeploymentSpec_template_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_apps_v1_DeploymentSpec_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_apps_v1_DeploymentSpec_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_apps_v1_DeploymentSpec_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_apps_v1_DeploymentSpec_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_apps_v1_DeploymentSpec_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_apps_v1_DeploymentSpec_template_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_apps_v1_DeploymentSpec_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_apps_v1_DeploymentSpec_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_apps_v1_DeploymentSpec_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_apps_v1_DeploymentSpec_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_apps_v1_DeploymentSpec_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_apps_v1_DeploymentSpec_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_apps_v1_DeploymentSpec_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_apps_v1_DeploymentSpec_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_apps_v1_DeploymentSpec_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_apps_v1_DeploymentSpec_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_apps_v1_DeploymentSpec_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
										mandatory
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
										optional
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
												mandatory
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
								optional
									Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
										optional
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																optional
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																optional
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																optional
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																optional
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																optional
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																optional
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
										optional
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_dnsConfig_options_name {doc 'Required'}
												optional
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_dnsConfig_options_value
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
										alternative
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_dnsPolicy_None {doc 'Specific value: None'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
										mandatory
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
										optional
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
												mandatory
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
										mandatory
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
										optional
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
									String io_k8s_api_apps_v1_DeploymentSpec_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
										optional
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
										mandatory
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
										optional
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
												mandatory
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
									String io_k8s_api_apps_v1_DeploymentSpec_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
										mandatory
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
										mandatory
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
												alternative
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows {doc 'Specific value: windows'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_linux {doc 'Specific value: linux'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
										alternative
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
										alternative
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
									Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
									String io_k8s_api_apps_v1_DeploymentSpec_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
										mandatory
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
										mandatory
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
										optional
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
										alternative
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
									String io_k8s_api_apps_v1_DeploymentSpec_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
									String io_k8s_api_apps_v1_DeploymentSpec_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
										mandatory
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
										optional
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
												alternative
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												optional
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
												optional
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
									String io_k8s_api_apps_v1_DeploymentSpec_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
									String io_k8s_api_apps_v1_DeploymentSpec_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
									String io_k8s_api_apps_v1_DeploymentSpec_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
									Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
										optional
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
												alternative
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
												alternative
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
											Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
										mandatory
											Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
										optional
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
									io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
										mandatory
											String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
										optional
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
												mandatory
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
												optional
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
														optional
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
												optional
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
												optional
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
												optional
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
														alternative
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
														mandatory
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																optional
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																		optional
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				alternative
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				alternative
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																		optional
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																optional
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																		optional
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																				optional
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																				alternative
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																		optional
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
												optional
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
												optional
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
												optional
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
														optional
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																optional
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																		optional
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																optional
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																optional
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																		optional
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																				mandatory
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																optional
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																			String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																mandatory
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																optional
																	String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																	Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
												optional
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
												optional
													Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
														mandatory
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
														optional
															Integer io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
														optional
															String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
											io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
												optional
													io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
													String io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
				optional
					Integer io_k8s_api_apps_v1_DeploymentSpec_minReadySeconds {default 0, doc 'Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available Defaults to 0 (pod will be considered available as soon as it is ready)'}
					io_k8s_api_apps_v1_DeploymentSpec_paused {doc 'Indicates that the deployment is paused'}
					Integer io_k8s_api_apps_v1_DeploymentSpec_progressDeadlineSeconds {default 600, doc 'The maximum time in seconds for a deployment to make progress before it is considered to be failed The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status Note that progress will not be estimated during the time a deployment is paused Defaults to 600s'}
					Integer io_k8s_api_apps_v1_DeploymentSpec_replicas {default 1, doc 'Number of desired pods This is a pointer to distinguish between explicit zero and not specified Defaults to 1'}
					Integer io_k8s_api_apps_v1_DeploymentSpec_revisionHistoryLimit {default 10, doc 'The number of old ReplicaSets to retain to allow rollback This is a pointer to distinguish between explicit zero and not specified Defaults to 10'}
					io_k8s_api_apps_v1_DeploymentSpec_strategy {doc 'The deployment strategy to use to replace existing pods with new ones'}
						optional
							io_k8s_api_apps_v1_DeploymentSpec_strategy_rollingUpdate {doc 'Rolling update config params Present only if DeploymentStrategyType = RollingUpdate'}
								optional
									io_k8s_api_apps_v1_DeploymentSpec_strategy_rollingUpdate_maxSurge {default 25, doc 'The maximum number of pods that can be scheduled above the desired number of pods Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%) This can not be 0 if MaxUnavailable is 0 Absolute number is calculated from percentage by rounding up Defaults to 25% Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods'}
										alternative
											String io_k8s_api_apps_v1_DeploymentSpec_strategy_rollingUpdate_maxSurge_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_apps_v1_DeploymentSpec_strategy_rollingUpdate_maxSurge_asInteger {doc 'Sub-feature added of type Integer'}
									io_k8s_api_apps_v1_DeploymentSpec_strategy_rollingUpdate_maxUnavailable {default 25, doc 'The maximum number of pods that can be unavailable during the update Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%) Absolute number is calculated from percentage by rounding down This can not be 0 if MaxSurge is 0 Defaults to 25% Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods'}
										alternative
											String io_k8s_api_apps_v1_DeploymentSpec_strategy_rollingUpdate_maxUnavailable_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_apps_v1_DeploymentSpec_strategy_rollingUpdate_maxUnavailable_asInteger {doc 'Sub-feature added of type Integer'}
							io_k8s_api_apps_v1_DeploymentSpec_strategy_type {doc 'Type of deployment Can be Recreate or RollingUpdate Default is RollingUpdate'}
								alternative
									io_k8s_api_apps_v1_DeploymentSpec_strategy_type_RollingUpdate {default, doc 'Specific value: RollingUpdate'}
									io_k8s_api_apps_v1_DeploymentSpec_strategy_type_Recreate {doc 'Specific value: Recreate'}
			io_k8s_api_apps_v1_DeploymentStatus {doc 'DeploymentStatus is the most recently observed status of the Deployment'}
				optional
					Integer io_k8s_api_apps_v1_DeploymentStatus_availableReplicas {doc 'Total number of available pods (ready for at least minReadySeconds) targeted by this deployment'}
					Integer io_k8s_api_apps_v1_DeploymentStatus_collisionCount {doc 'Count of hash collisions for the Deployment The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet'}
					io_k8s_api_apps_v1_DeploymentStatus_conditions cardinality [1..*] {doc 'Represents the latest available observations of a deployment_s current state'}
						mandatory
							io_k8s_api_apps_v1_DeploymentStatus_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
								alternative
									io_k8s_api_apps_v1_DeploymentStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_apps_v1_DeploymentStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_apps_v1_DeploymentStatus_conditions_status_True {doc 'Specific value: True'}
							String io_k8s_api_apps_v1_DeploymentStatus_conditions_type {doc 'Type of deployment condition'}
						optional
							io_k8s_api_apps_v1_DeploymentStatus_conditions_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
								optional
									String io_k8s_api_apps_v1_DeploymentStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_apps_v1_DeploymentStatus_conditions_lastUpdateTime {doc 'The last time this condition was updated'}
								optional
									String io_k8s_api_apps_v1_DeploymentStatus_conditions_lastUpdateTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_apps_v1_DeploymentStatus_conditions_message {doc 'A human readable message indicating details about the transition'}
							String io_k8s_api_apps_v1_DeploymentStatus_conditions_reason {doc 'The reason for the condition_s last transition'}
					Integer io_k8s_api_apps_v1_DeploymentStatus_observedGeneration {doc 'The generation observed by the deployment controller'}
					Integer io_k8s_api_apps_v1_DeploymentStatus_readyReplicas {doc 'readyReplicas is the number of pods targeted by this Deployment with a Ready Condition'}
					Integer io_k8s_api_apps_v1_DeploymentStatus_replicas {doc 'Total number of non-terminated pods targeted by this deployment (their labels match the selector)'}
					Integer io_k8s_api_apps_v1_DeploymentStatus_unavailableReplicas {doc 'Total number of unavailable pods targeted by this deployment This is the total number of pods that are still required for the deployment to have 100% available capacity They may either be pods that are running but not yet available or pods that still have not been created'}
					Integer io_k8s_api_apps_v1_DeploymentStatus_updatedReplicas {doc 'Total number of non-terminated pods targeted by this deployment that have the desired template spec'}
			io_k8s_api_apps_v1_DeploymentStrategy {doc 'DeploymentStrategy describes how to replace existing pods with new ones'}
				optional
					io_k8s_api_apps_v1_DeploymentStrategy_rollingUpdate {doc 'Rolling update config params Present only if DeploymentStrategyType = RollingUpdate'}
						optional
							io_k8s_api_apps_v1_DeploymentStrategy_rollingUpdate_maxSurge {default 25, doc 'The maximum number of pods that can be scheduled above the desired number of pods Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%) This can not be 0 if MaxUnavailable is 0 Absolute number is calculated from percentage by rounding up Defaults to 25% Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods'}
								alternative
									String io_k8s_api_apps_v1_DeploymentStrategy_rollingUpdate_maxSurge_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_apps_v1_DeploymentStrategy_rollingUpdate_maxSurge_asInteger {doc 'Sub-feature added of type Integer'}
							io_k8s_api_apps_v1_DeploymentStrategy_rollingUpdate_maxUnavailable {default 25, doc 'The maximum number of pods that can be unavailable during the update Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%) Absolute number is calculated from percentage by rounding down This can not be 0 if MaxSurge is 0 Defaults to 25% Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods'}
								alternative
									String io_k8s_api_apps_v1_DeploymentStrategy_rollingUpdate_maxUnavailable_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_apps_v1_DeploymentStrategy_rollingUpdate_maxUnavailable_asInteger {doc 'Sub-feature added of type Integer'}
					io_k8s_api_apps_v1_DeploymentStrategy_type {doc 'Type of deployment Can be Recreate or RollingUpdate Default is RollingUpdate'}
						alternative
							io_k8s_api_apps_v1_DeploymentStrategy_type_RollingUpdate {default, doc 'Specific value: RollingUpdate'}
							io_k8s_api_apps_v1_DeploymentStrategy_type_Recreate {doc 'Specific value: Recreate'}
			io_k8s_api_apps_v1_ReplicaSet {doc 'ReplicaSet ensures that a specified number of pod replicas are running at any given time'}
				optional
					String io_k8s_api_apps_v1_ReplicaSet_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_apps_v1_ReplicaSet_kind {default 'ReplicaSet', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_apps_v1_ReplicaSet_metadata {doc 'If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_apps_v1_ReplicaSet_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_apps_v1_ReplicaSet_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_apps_v1_ReplicaSet_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_apps_v1_ReplicaSet_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_apps_v1_ReplicaSet_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_apps_v1_ReplicaSet_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_apps_v1_ReplicaSet_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_apps_v1_ReplicaSet_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_apps_v1_ReplicaSet_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_apps_v1_ReplicaSet_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_apps_v1_ReplicaSet_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_apps_v1_ReplicaSet_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_apps_v1_ReplicaSet_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_apps_v1_ReplicaSet_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_apps_v1_ReplicaSet_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_apps_v1_ReplicaSet_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_apps_v1_ReplicaSet_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_apps_v1_ReplicaSet_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_apps_v1_ReplicaSet_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_apps_v1_ReplicaSet_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_apps_v1_ReplicaSet_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_apps_v1_ReplicaSet_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_apps_v1_ReplicaSet_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_apps_v1_ReplicaSet_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_apps_v1_ReplicaSet_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_apps_v1_ReplicaSet_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_apps_v1_ReplicaSet_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_apps_v1_ReplicaSet_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_apps_v1_ReplicaSet_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_apps_v1_ReplicaSet_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_apps_v1_ReplicaSet_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_apps_v1_ReplicaSet_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_apps_v1_ReplicaSet_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_apps_v1_ReplicaSet_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_apps_v1_ReplicaSet_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_apps_v1_ReplicaSet_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_apps_v1_ReplicaSet_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_apps_v1_ReplicaSet_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_apps_v1_ReplicaSet_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_apps_v1_ReplicaSet_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_apps_v1_ReplicaSet_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_apps_v1_ReplicaSet_spec {doc 'Spec defines the specification of the desired behavior of the ReplicaSet More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						mandatory
							io_k8s_api_apps_v1_ReplicaSet_spec_selector {doc 'Selector is a label query over pods that should match the replica count Label keys and values that must match in order to be controlled by this replica set It must match the pod template_s labels More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/#label-selectors'}
								optional
									io_k8s_api_apps_v1_ReplicaSet_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_apps_v1_ReplicaSet_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_apps_v1_ReplicaSet_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_apps_v1_ReplicaSet_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_apps_v1_ReplicaSet_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_apps_v1_ReplicaSet_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_apps_v1_ReplicaSet_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_apps_v1_ReplicaSet_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSet_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_apps_v1_ReplicaSet_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_apps_v1_ReplicaSet_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_ReplicaSet_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
						optional
							Integer io_k8s_api_apps_v1_ReplicaSet_spec_minReadySeconds {default 0, doc 'Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available Defaults to 0 (pod will be considered available as soon as it is ready)'}
							Integer io_k8s_api_apps_v1_ReplicaSet_spec_replicas {default 1, doc 'Replicas is the number of desired replicas This is a pointer to distinguish between explicit zero and unspecified Defaults to 1 More info: https:_kubernetesio/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller'}
							io_k8s_api_apps_v1_ReplicaSet_spec_template {doc 'Template is the object that describes the pod that will be created if insufficient replicas are detected More info: https:_kubernetesio/docs/concepts/workloads/controllers/replicationcontroller#pod-template'}
								optional
									io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
												optional
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
											Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_deletionGracePeriodSeconds {doc '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'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_finalizers cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											String io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
											Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_managedFields cardinality [1..*] {doc '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'}
												optional
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_managedFields_apiVersion {doc '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'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
														alternative
															io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_managedFields_subresource {doc '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'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_managedFields_time {doc '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'}
														optional
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
												optional
													io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
											String io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
											String io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
											String io_k8s_api_apps_v1_ReplicaSet_spec_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
										mandatory
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
												optional
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
														mandatory
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
										optional
											Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
												optional
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
												optional
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_dnsConfig_options_name {doc 'Required'}
														optional
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_dnsConfig_options_value
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
												alternative
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_dnsPolicy_None {doc 'Specific value: None'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
												optional
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
														mandatory
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
												optional
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
											String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
												optional
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
												optional
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
														mandatory
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
											String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
												mandatory
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
														alternative
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows {doc 'Specific value: windows'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_linux {doc 'Specific value: linux'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
												alternative
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
												alternative
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
											Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
											String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
												optional
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
												alternative
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
											String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
											String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
												optional
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
														alternative
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
											String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
											String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
											Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
												optional
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
														alternative
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
														alternative
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
													Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
												mandatory
													Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
												optional
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
											io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
												optional
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
														optional
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
														optional
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																optional
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
														optional
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
														optional
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
														optional
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																						alternative
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																						alternative
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																						alternative
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																						optional
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
														optional
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
														optional
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
														optional
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
																optional
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																				optional
																					Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																						optional
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																					Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																						optional
																							String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																							io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																								alternative
																									String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																					String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																				optional
																					Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																			Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
														optional
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
														optional
															Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																optional
																	Integer io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
													io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
														optional
															io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
															String io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
					io_k8s_api_apps_v1_ReplicaSet_status {doc 'Status is the most recently observed status of the ReplicaSet This data may be out of date by some window of time Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						mandatory
							Integer io_k8s_api_apps_v1_ReplicaSet_status_replicas {doc 'Replicas is the most recently observed number of replicas More info: https:_kubernetesio/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller'}
						optional
							Integer io_k8s_api_apps_v1_ReplicaSet_status_availableReplicas {doc 'The number of available replicas (ready for at least minReadySeconds) for this replica set'}
							io_k8s_api_apps_v1_ReplicaSet_status_conditions cardinality [1..*] {doc 'Represents the latest available observations of a replica set_s current state'}
								mandatory
									io_k8s_api_apps_v1_ReplicaSet_status_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
										alternative
											io_k8s_api_apps_v1_ReplicaSet_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_apps_v1_ReplicaSet_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_apps_v1_ReplicaSet_status_conditions_status_True {doc 'Specific value: True'}
									String io_k8s_api_apps_v1_ReplicaSet_status_conditions_type {doc 'Type of replica set condition'}
								optional
									io_k8s_api_apps_v1_ReplicaSet_status_conditions_lastTransitionTime {doc 'The last time the condition transitioned from one status to another'}
										optional
											String io_k8s_api_apps_v1_ReplicaSet_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_apps_v1_ReplicaSet_status_conditions_message {doc 'A human readable message indicating details about the transition'}
									String io_k8s_api_apps_v1_ReplicaSet_status_conditions_reason {doc 'The reason for the condition_s last transition'}
							Integer io_k8s_api_apps_v1_ReplicaSet_status_fullyLabeledReplicas {doc 'The number of pods that have labels matching the labels of the pod template of the replicaset'}
							Integer io_k8s_api_apps_v1_ReplicaSet_status_observedGeneration {doc 'ObservedGeneration reflects the generation of the most recently observed ReplicaSet'}
							Integer io_k8s_api_apps_v1_ReplicaSet_status_readyReplicas {doc 'readyReplicas is the number of pods targeted by this ReplicaSet with a Ready Condition'}
			io_k8s_api_apps_v1_ReplicaSetCondition {doc 'ReplicaSetCondition describes the state of a replica set at a certain point'}
				mandatory
					io_k8s_api_apps_v1_ReplicaSetCondition_status {doc 'Status of the condition, one of True, False, Unknown'}
						alternative
							io_k8s_api_apps_v1_ReplicaSetCondition_status_Unknown {doc 'Specific value: Unknown'}
							io_k8s_api_apps_v1_ReplicaSetCondition_status_False {doc 'Specific value: False'}
							io_k8s_api_apps_v1_ReplicaSetCondition_status_True {doc 'Specific value: True'}
					String io_k8s_api_apps_v1_ReplicaSetCondition_type {doc 'Type of replica set condition'}
				optional
					io_k8s_api_apps_v1_ReplicaSetCondition_lastTransitionTime {doc 'The last time the condition transitioned from one status to another'}
						optional
							String io_k8s_api_apps_v1_ReplicaSetCondition_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_api_apps_v1_ReplicaSetCondition_message {doc 'A human readable message indicating details about the transition'}
					String io_k8s_api_apps_v1_ReplicaSetCondition_reason {doc 'The reason for the condition_s last transition'}
			io_k8s_api_apps_v1_ReplicaSetList {doc 'ReplicaSetList is a collection of ReplicaSets'}
				mandatory
					io_k8s_api_apps_v1_ReplicaSetList_items cardinality [1..*] {doc 'List of ReplicaSets More info: https:_kubernetesio/docs/concepts/workloads/controllers/replicationcontroller'}
						optional
							String io_k8s_api_apps_v1_ReplicaSetList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_apps_v1_ReplicaSetList_items_kind {default 'ReplicaSet', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_apps_v1_ReplicaSetList_items_metadata {doc 'If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_apps_v1_ReplicaSetList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_apps_v1_ReplicaSetList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_ReplicaSetList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apps_v1_ReplicaSetList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_apps_v1_ReplicaSetList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_apps_v1_ReplicaSetList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_apps_v1_ReplicaSetList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_apps_v1_ReplicaSetList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_apps_v1_ReplicaSetList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_apps_v1_ReplicaSetList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_apps_v1_ReplicaSetList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_apps_v1_ReplicaSetList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_apps_v1_ReplicaSetList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_apps_v1_ReplicaSetList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_apps_v1_ReplicaSetList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_ReplicaSetList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apps_v1_ReplicaSetList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_apps_v1_ReplicaSetList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_apps_v1_ReplicaSetList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_apps_v1_ReplicaSetList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_apps_v1_ReplicaSetList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_apps_v1_ReplicaSetList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_apps_v1_ReplicaSetList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_apps_v1_ReplicaSetList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_apps_v1_ReplicaSetList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_apps_v1_ReplicaSetList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_apps_v1_ReplicaSetList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_apps_v1_ReplicaSetList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_apps_v1_ReplicaSetList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_apps_v1_ReplicaSetList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_apps_v1_ReplicaSetList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_apps_v1_ReplicaSetList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_apps_v1_ReplicaSetList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_apps_v1_ReplicaSetList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_apps_v1_ReplicaSetList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_apps_v1_ReplicaSetList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_apps_v1_ReplicaSetList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_apps_v1_ReplicaSetList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_apps_v1_ReplicaSetList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_apps_v1_ReplicaSetList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_apps_v1_ReplicaSetList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_apps_v1_ReplicaSetList_items_spec {doc 'Spec defines the specification of the desired behavior of the ReplicaSet More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									io_k8s_api_apps_v1_ReplicaSetList_items_spec_selector {doc 'Selector is a label query over pods that should match the replica count Label keys and values that must match in order to be controlled by this replica set It must match the pod template_s labels More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/#label-selectors'}
										optional
											io_k8s_api_apps_v1_ReplicaSetList_items_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetList_items_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_ReplicaSetList_items_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetList_items_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_apps_v1_ReplicaSetList_items_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
								optional
									Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_minReadySeconds {default 0, doc 'Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available Defaults to 0 (pod will be considered available as soon as it is ready)'}
									Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_replicas {default 1, doc 'Replicas is the number of desired replicas This is a pointer to distinguish between explicit zero and unspecified Defaults to 1 More info: https:_kubernetesio/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller'}
									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template {doc 'Template is the object that describes the pod that will be created if insufficient replicas are detected More info: https:_kubernetesio/docs/concepts/workloads/controllers/replicationcontroller#pod-template'}
										optional
											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
													Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_deletionGracePeriodSeconds {doc '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'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_finalizers cardinality [1..*] {doc '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'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
													Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_managedFields cardinality [1..*] {doc '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'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_managedFields_apiVersion {doc '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'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_managedFields_subresource {doc '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'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_managedFields_time {doc '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'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
													String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
														optional
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
													String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
													String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
													String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
												mandatory
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
														optional
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																				alternative
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																				mandatory
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																				alternative
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																				mandatory
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
												optional
													Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
														optional
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
														optional
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_dnsConfig_options_name {doc 'Required'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_dnsConfig_options_value
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_dnsPolicy_None {doc 'Specific value: None'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
														optional
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																				alternative
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																				mandatory
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																				alternative
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																				mandatory
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
														optional
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
													String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
														optional
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																				alternative
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																				mandatory
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																				alternative
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																				mandatory
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
													String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows {doc 'Specific value: windows'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_linux {doc 'Specific value: linux'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
														alternative
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
													Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
													String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
														optional
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
													String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
													String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
														optional
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
													String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
													String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
													Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
														optional
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
															Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
														mandatory
															Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
														optional
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
													io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
														optional
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
																optional
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
																optional
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
																		mandatory
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																						optional
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																						optional
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																								alternative
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																								alternative
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																						optional
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																						optional
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																						optional
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																						optional
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																								optional
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																								alternative
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																								optional
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
																optional
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																						optional
																							Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																						optional
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																								optional
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																							Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																							io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																								mandatory
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																								optional
																									String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																									io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																										alternative
																											String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																							String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																						optional
																							Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																					Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
																optional
																	Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
															io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
																	String io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
							io_k8s_api_apps_v1_ReplicaSetList_items_status {doc 'Status is the most recently observed status of the ReplicaSet This data may be out of date by some window of time Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									Integer io_k8s_api_apps_v1_ReplicaSetList_items_status_replicas {doc 'Replicas is the most recently observed number of replicas More info: https:_kubernetesio/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller'}
								optional
									Integer io_k8s_api_apps_v1_ReplicaSetList_items_status_availableReplicas {doc 'The number of available replicas (ready for at least minReadySeconds) for this replica set'}
									io_k8s_api_apps_v1_ReplicaSetList_items_status_conditions cardinality [1..*] {doc 'Represents the latest available observations of a replica set_s current state'}
										mandatory
											io_k8s_api_apps_v1_ReplicaSetList_items_status_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
												alternative
													io_k8s_api_apps_v1_ReplicaSetList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_api_apps_v1_ReplicaSetList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_api_apps_v1_ReplicaSetList_items_status_conditions_status_True {doc 'Specific value: True'}
											String io_k8s_api_apps_v1_ReplicaSetList_items_status_conditions_type {doc 'Type of replica set condition'}
										optional
											io_k8s_api_apps_v1_ReplicaSetList_items_status_conditions_lastTransitionTime {doc 'The last time the condition transitioned from one status to another'}
												optional
													String io_k8s_api_apps_v1_ReplicaSetList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_apps_v1_ReplicaSetList_items_status_conditions_message {doc 'A human readable message indicating details about the transition'}
											String io_k8s_api_apps_v1_ReplicaSetList_items_status_conditions_reason {doc 'The reason for the condition_s last transition'}
									Integer io_k8s_api_apps_v1_ReplicaSetList_items_status_fullyLabeledReplicas {doc 'The number of pods that have labels matching the labels of the pod template of the replicaset'}
									Integer io_k8s_api_apps_v1_ReplicaSetList_items_status_observedGeneration {doc 'ObservedGeneration reflects the generation of the most recently observed ReplicaSet'}
									Integer io_k8s_api_apps_v1_ReplicaSetList_items_status_readyReplicas {doc 'readyReplicas is the number of pods targeted by this ReplicaSet with a Ready Condition'}
				optional
					String io_k8s_api_apps_v1_ReplicaSetList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_apps_v1_ReplicaSetList_kind {default 'ReplicaSetList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_apps_v1_ReplicaSetList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_apps_v1_ReplicaSetList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_apps_v1_ReplicaSetList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_apps_v1_ReplicaSetList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_apps_v1_ReplicaSetList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_apps_v1_ReplicaSetSpec {doc 'ReplicaSetSpec is the specification of a ReplicaSet'}
				mandatory
					io_k8s_api_apps_v1_ReplicaSetSpec_selector {doc 'Selector is a label query over pods that should match the replica count Label keys and values that must match in order to be controlled by this replica set It must match the pod template_s labels More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/#label-selectors'}
						optional
							io_k8s_api_apps_v1_ReplicaSetSpec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_apps_v1_ReplicaSetSpec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_apps_v1_ReplicaSetSpec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_apps_v1_ReplicaSetSpec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_apps_v1_ReplicaSetSpec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_apps_v1_ReplicaSetSpec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_apps_v1_ReplicaSetSpec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_apps_v1_ReplicaSetSpec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_apps_v1_ReplicaSetSpec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_apps_v1_ReplicaSetSpec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_apps_v1_ReplicaSetSpec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_apps_v1_ReplicaSetSpec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
				optional
					Integer io_k8s_api_apps_v1_ReplicaSetSpec_minReadySeconds {default 0, doc 'Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available Defaults to 0 (pod will be considered available as soon as it is ready)'}
					Integer io_k8s_api_apps_v1_ReplicaSetSpec_replicas {default 1, doc 'Replicas is the number of desired replicas This is a pointer to distinguish between explicit zero and unspecified Defaults to 1 More info: https:_kubernetesio/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller'}
					io_k8s_api_apps_v1_ReplicaSetSpec_template {doc 'Template is the object that describes the pod that will be created if insufficient replicas are detected More info: https:_kubernetesio/docs/concepts/workloads/controllers/replicationcontroller#pod-template'}
						optional
							io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_apps_v1_ReplicaSetSpec_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
										mandatory
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
										optional
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
												mandatory
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
								optional
									Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
										optional
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
										optional
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_dnsConfig_options_name {doc 'Required'}
												optional
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_dnsConfig_options_value
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
										alternative
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_dnsPolicy_None {doc 'Specific value: None'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
										mandatory
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
										optional
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
												mandatory
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
										mandatory
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
										optional
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
									String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
										optional
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
										mandatory
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
										optional
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
												mandatory
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
									String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
										mandatory
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
										mandatory
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
												alternative
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows {doc 'Specific value: windows'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_linux {doc 'Specific value: linux'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
										alternative
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
										alternative
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
									Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
									String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
										mandatory
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
										mandatory
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
										optional
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
										alternative
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
									String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
									String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
										mandatory
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
										optional
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
												alternative
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												optional
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
												optional
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
									String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
									String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
									String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
									Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
										optional
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
												alternative
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
												alternative
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
											Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
										mandatory
											Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
										optional
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
									io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
										mandatory
											String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
										optional
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
												mandatory
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
												optional
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
														optional
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
												optional
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
												optional
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
												optional
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
														alternative
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
														mandatory
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				alternative
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																		optional
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																				alternative
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
												optional
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
												optional
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
												optional
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
														optional
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																		optional
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																				mandatory
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																optional
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																			String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																mandatory
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																optional
																	String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																	Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
												optional
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
												optional
													Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
														mandatory
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
														optional
															Integer io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
														optional
															String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
											io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
												optional
													io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
													String io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
			io_k8s_api_apps_v1_ReplicaSetStatus {doc 'ReplicaSetStatus represents the current status of a ReplicaSet'}
				mandatory
					Integer io_k8s_api_apps_v1_ReplicaSetStatus_replicas {doc 'Replicas is the most recently observed number of replicas More info: https:_kubernetesio/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller'}
				optional
					Integer io_k8s_api_apps_v1_ReplicaSetStatus_availableReplicas {doc 'The number of available replicas (ready for at least minReadySeconds) for this replica set'}
					io_k8s_api_apps_v1_ReplicaSetStatus_conditions cardinality [1..*] {doc 'Represents the latest available observations of a replica set_s current state'}
						mandatory
							io_k8s_api_apps_v1_ReplicaSetStatus_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
								alternative
									io_k8s_api_apps_v1_ReplicaSetStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_apps_v1_ReplicaSetStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_apps_v1_ReplicaSetStatus_conditions_status_True {doc 'Specific value: True'}
							String io_k8s_api_apps_v1_ReplicaSetStatus_conditions_type {doc 'Type of replica set condition'}
						optional
							io_k8s_api_apps_v1_ReplicaSetStatus_conditions_lastTransitionTime {doc 'The last time the condition transitioned from one status to another'}
								optional
									String io_k8s_api_apps_v1_ReplicaSetStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_apps_v1_ReplicaSetStatus_conditions_message {doc 'A human readable message indicating details about the transition'}
							String io_k8s_api_apps_v1_ReplicaSetStatus_conditions_reason {doc 'The reason for the condition_s last transition'}
					Integer io_k8s_api_apps_v1_ReplicaSetStatus_fullyLabeledReplicas {doc 'The number of pods that have labels matching the labels of the pod template of the replicaset'}
					Integer io_k8s_api_apps_v1_ReplicaSetStatus_observedGeneration {doc 'ObservedGeneration reflects the generation of the most recently observed ReplicaSet'}
					Integer io_k8s_api_apps_v1_ReplicaSetStatus_readyReplicas {doc 'readyReplicas is the number of pods targeted by this ReplicaSet with a Ready Condition'}
			io_k8s_api_apps_v1_RollingUpdateDaemonSet {doc 'Spec to control the desired behavior of daemon set rolling update'}
				optional
					io_k8s_api_apps_v1_RollingUpdateDaemonSet_maxSurge {default 0, doc 'The maximum number of nodes with an existing available DaemonSet pod that can have an updated DaemonSet pod during during an update Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%) This can not be 0 if MaxUnavailable is 0 Absolute number is calculated from percentage by rounding up to a minimum of 1 Default value is 0 Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (ie statusdesiredNumberScheduled) can have their a new pod created before the old pod is marked as deleted The update starts by launching new pods on 30% of nodes Once an updated pod is available (Ready for at least minReadySeconds) the old DaemonSet pod on that node is marked deleted If the old pod becomes unavailable for any reason (Ready transitions to false, is evicted, or is drained) an updated pod is immediatedly created on that node without considering surge limits Allowing surge implies the possibility that the resources consumed by the daemonset on any given node can double if the readiness check fails, and so resource intensive daemonsets should take into account that they may cause evictions during disruption'}
						alternative
							String io_k8s_api_apps_v1_RollingUpdateDaemonSet_maxSurge_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_apps_v1_RollingUpdateDaemonSet_maxSurge_asInteger {doc 'Sub-feature added of type Integer'}
					io_k8s_api_apps_v1_RollingUpdateDaemonSet_maxUnavailable {default 1, doc 'The maximum number of DaemonSet pods that can be unavailable during the update Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%) Absolute number is calculated from percentage by rounding up This cannot be 0 if MaxSurge is 0 Default value is 1 Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (ie statusdesiredNumberScheduled) can have their pods stopped for an update at any given time The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update'}
						alternative
							String io_k8s_api_apps_v1_RollingUpdateDaemonSet_maxUnavailable_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_apps_v1_RollingUpdateDaemonSet_maxUnavailable_asInteger {doc 'Sub-feature added of type Integer'}
			io_k8s_api_apps_v1_RollingUpdateDeployment {doc 'Spec to control the desired behavior of rolling update'}
				optional
					io_k8s_api_apps_v1_RollingUpdateDeployment_maxSurge {default 25, doc 'The maximum number of pods that can be scheduled above the desired number of pods Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%) This can not be 0 if MaxUnavailable is 0 Absolute number is calculated from percentage by rounding up Defaults to 25% Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods'}
						alternative
							String io_k8s_api_apps_v1_RollingUpdateDeployment_maxSurge_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_apps_v1_RollingUpdateDeployment_maxSurge_asInteger {doc 'Sub-feature added of type Integer'}
					io_k8s_api_apps_v1_RollingUpdateDeployment_maxUnavailable {default 25, doc 'The maximum number of pods that can be unavailable during the update Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%) Absolute number is calculated from percentage by rounding down This can not be 0 if MaxSurge is 0 Defaults to 25% Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods'}
						alternative
							String io_k8s_api_apps_v1_RollingUpdateDeployment_maxUnavailable_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_apps_v1_RollingUpdateDeployment_maxUnavailable_asInteger {doc 'Sub-feature added of type Integer'}
			io_k8s_api_apps_v1_RollingUpdateStatefulSetStrategy {doc 'RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType'}
				optional
					io_k8s_api_apps_v1_RollingUpdateStatefulSetStrategy_maxUnavailable {default 1, doc 'The maximum number of pods that can be unavailable during the update Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%) Absolute number is calculated from percentage by rounding up This can not be 0 Defaults to 1 This field is alpha-level and is only honored by servers that enable the MaxUnavailableStatefulSet feature The field applies to all pods in the range 0 to Replicas-1 That means if there is any unavailable pod in the range 0 to Replicas-1, it will be counted towards MaxUnavailable'}
						alternative
							String io_k8s_api_apps_v1_RollingUpdateStatefulSetStrategy_maxUnavailable_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_apps_v1_RollingUpdateStatefulSetStrategy_maxUnavailable_asInteger {doc 'Sub-feature added of type Integer'}
					Integer io_k8s_api_apps_v1_RollingUpdateStatefulSetStrategy_partition {default 0, doc 'Partition indicates the ordinal at which the StatefulSet should be partitioned for updates During a rolling update, all pods from ordinal Replicas-1 to Partition are updated All pods from ordinal Partition-1 to 0 remain untouched This is helpful in being able to do a canary based deployment The default value is 0'}
			io_k8s_api_apps_v1_StatefulSet {doc 'StatefulSet represents a set of pods with consistent identities Identities are defined as:  - Network: A single stable DNS and hostname  - Storage: As many VolumeClaims as requestedThe StatefulSet guarantees that a given network identity will always map to the same storage identity'}
				optional
					String io_k8s_api_apps_v1_StatefulSet_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_apps_v1_StatefulSet_kind {default 'StatefulSet', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_apps_v1_StatefulSet_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_apps_v1_StatefulSet_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_apps_v1_StatefulSet_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_apps_v1_StatefulSet_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_apps_v1_StatefulSet_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_apps_v1_StatefulSet_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_apps_v1_StatefulSet_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_apps_v1_StatefulSet_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_apps_v1_StatefulSet_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_apps_v1_StatefulSet_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_apps_v1_StatefulSet_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_apps_v1_StatefulSet_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_apps_v1_StatefulSet_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_apps_v1_StatefulSet_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_apps_v1_StatefulSet_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_apps_v1_StatefulSet_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_apps_v1_StatefulSet_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_apps_v1_StatefulSet_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_apps_v1_StatefulSet_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_apps_v1_StatefulSet_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_apps_v1_StatefulSet_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_apps_v1_StatefulSet_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_apps_v1_StatefulSet_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_apps_v1_StatefulSet_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_apps_v1_StatefulSet_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_apps_v1_StatefulSet_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_apps_v1_StatefulSet_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_apps_v1_StatefulSet_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_apps_v1_StatefulSet_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_apps_v1_StatefulSet_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_apps_v1_StatefulSet_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_apps_v1_StatefulSet_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_apps_v1_StatefulSet_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_apps_v1_StatefulSet_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_apps_v1_StatefulSet_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_apps_v1_StatefulSet_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_apps_v1_StatefulSet_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_apps_v1_StatefulSet_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_apps_v1_StatefulSet_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_apps_v1_StatefulSet_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_apps_v1_StatefulSet_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_apps_v1_StatefulSet_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_apps_v1_StatefulSet_spec {doc 'Spec defines the desired identities of pods in this set'}
						mandatory
							io_k8s_api_apps_v1_StatefulSet_spec_selector {doc 'selector is a label query over pods that should match the replica count It must match the pod template_s labels More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/#label-selectors'}
								optional
									io_k8s_api_apps_v1_StatefulSet_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSet_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_apps_v1_StatefulSet_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_apps_v1_StatefulSet_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_apps_v1_StatefulSet_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_apps_v1_StatefulSet_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_apps_v1_StatefulSet_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_apps_v1_StatefulSet_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSet_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_apps_v1_StatefulSet_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSet_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_StatefulSet_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							String io_k8s_api_apps_v1_StatefulSet_spec_serviceName {doc 'serviceName is the name of the service that governs this StatefulSet This service must exist before the StatefulSet, and is responsible for the network identity of the set Pods get DNS/hostnames that follow the pattern: pod-specific-stringserviceNamedefaultsvcclusterlocal where pod-specific-string is managed by the StatefulSet controller'}
							io_k8s_api_apps_v1_StatefulSet_spec_template {doc 'template is the object that describes the pod that will be created if insufficient replicas are detected Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet Each pod will be named with the format <statefulsetname>-<podindex> For example, a pod in a StatefulSet named web with index number 3 would be named web-3 The only allowed templatespecrestartPolicy value is Always'}
								optional
									io_k8s_api_apps_v1_StatefulSet_spec_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
												optional
													String io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
											Integer io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_deletionGracePeriodSeconds {doc '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'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_finalizers cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											String io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
											Integer io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_managedFields cardinality [1..*] {doc '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'}
												optional
													String io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_managedFields_apiVersion {doc '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'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
														alternative
															io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_managedFields_subresource {doc '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'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_managedFields_time {doc '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'}
														optional
															String io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
												optional
													io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
											String io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
											String io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
											String io_k8s_api_apps_v1_StatefulSet_spec_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
									io_k8s_api_apps_v1_StatefulSet_spec_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
										mandatory
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
												optional
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
														mandatory
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
										optional
											Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
												optional
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																		optional
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																		optional
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
												optional
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_dnsConfig_options_name {doc 'Required'}
														optional
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_dnsConfig_options_value
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
												alternative
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_dnsPolicy_None {doc 'Specific value: None'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
												optional
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
														mandatory
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
												optional
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
											String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
												optional
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
												optional
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
														mandatory
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
											String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
												mandatory
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
														alternative
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows {doc 'Specific value: windows'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_linux {doc 'Specific value: linux'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
												alternative
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
												alternative
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
											Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
											String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
												optional
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
												alternative
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
											String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
											String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
												optional
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
														alternative
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
											String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
											String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
											Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
												optional
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
														alternative
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
														alternative
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
													Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
												mandatory
													Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
												optional
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
											io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
												optional
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
														mandatory
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
														optional
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
														optional
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																optional
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
														optional
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
														optional
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
														optional
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																		optional
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																				optional
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																						alternative
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																						alternative
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																				optional
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																		optional
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																						optional
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																						alternative
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																						optional
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																				optional
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
														optional
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
														optional
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
														optional
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
																optional
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																		optional
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																				optional
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																		optional
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																				optional
																					Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																		optional
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																				optional
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																						optional
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																					Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																						optional
																							String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																							io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																								alternative
																									String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																		optional
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																					String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																				optional
																					Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																			Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
														optional
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
														optional
															Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																optional
																	Integer io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
																optional
																	String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
													io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
															String io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
						optional
							Integer io_k8s_api_apps_v1_StatefulSet_spec_minReadySeconds {default 0, doc 'Minimum number of seconds for which a newly created pod should be ready without any of its container crashing for it to be considered available Defaults to 0 (pod will be considered available as soon as it is ready)'}
							io_k8s_api_apps_v1_StatefulSet_spec_ordinals {doc 'ordinals controls the numbering of replica indices in a StatefulSet The default ordinals behavior assigns a 0 index to the first replica and increments the index by one for each additional replica requested Using the ordinals field requires the StatefulSetStartOrdinal feature gate to be enabled, which is beta'}
								optional
									Integer io_k8s_api_apps_v1_StatefulSet_spec_ordinals_start {default 0, doc 'start is the number representing the first replica_s index It may be used to number replicas from an alternate index (eg: 1-indexed) over the default 0-indexed names, or to orchestrate progressive movement of replicas from one StatefulSet to another If set, replica indices will be in the range:  [specordinalsstart, specordinalsstart + specreplicas)If unset, defaults to 0 Replica indices will be in the range:  [0, specreplicas)'}
							io_k8s_api_apps_v1_StatefulSet_spec_persistentVolumeClaimRetentionPolicy {doc 'persistentVolumeClaimRetentionPolicy describes the lifecycle of persistent volume claims created from volumeClaimTemplates By default, all persistent volume claims are created as needed and retained until manually deleted This policy allows the lifecycle to be altered, for example by deleting persistent volume claims when their stateful set is deleted, or when their pod is scaled down This requires the StatefulSetAutoDeletePVC feature gate to be enabled, which is alpha  +optional'}
								optional
									String io_k8s_api_apps_v1_StatefulSet_spec_persistentVolumeClaimRetentionPolicy_whenDeleted {doc 'WhenDeleted specifies what happens to PVCs created from StatefulSet VolumeClaimTemplates when the StatefulSet is deleted The default policy of Retain causes PVCs to not be affected by StatefulSet deletion The Delete policy causes those PVCs to be deleted'}
									String io_k8s_api_apps_v1_StatefulSet_spec_persistentVolumeClaimRetentionPolicy_whenScaled {doc 'WhenScaled specifies what happens to PVCs created from StatefulSet VolumeClaimTemplates when the StatefulSet is scaled down The default policy of Retain causes PVCs to not be affected by a scaledown The Delete policy causes the associated PVCs for any excess pods above the replica count to be deleted'}
							String io_k8s_api_apps_v1_StatefulSet_spec_podManagementPolicy {doc 'podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down The default policy is OrderedReady, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing When scaling down, the pods are removed in the opposite order The alternative policy is Parallel which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once'}
							Integer io_k8s_api_apps_v1_StatefulSet_spec_replicas {default 1, doc 'replicas is the desired number of replicas of the given Template These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity If unspecified, defaults to 1'}
							Integer io_k8s_api_apps_v1_StatefulSet_spec_revisionHistoryLimit {default 10, doc 'revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet_s revision history The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version The default value is 10'}
							io_k8s_api_apps_v1_StatefulSet_spec_updateStrategy {doc 'updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template'}
								optional
									io_k8s_api_apps_v1_StatefulSet_spec_updateStrategy_rollingUpdate {doc 'RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType'}
										optional
											io_k8s_api_apps_v1_StatefulSet_spec_updateStrategy_rollingUpdate_maxUnavailable {default 1, doc 'The maximum number of pods that can be unavailable during the update Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%) Absolute number is calculated from percentage by rounding up This can not be 0 Defaults to 1 This field is alpha-level and is only honored by servers that enable the MaxUnavailableStatefulSet feature The field applies to all pods in the range 0 to Replicas-1 That means if there is any unavailable pod in the range 0 to Replicas-1, it will be counted towards MaxUnavailable'}
												alternative
													String io_k8s_api_apps_v1_StatefulSet_spec_updateStrategy_rollingUpdate_maxUnavailable_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_apps_v1_StatefulSet_spec_updateStrategy_rollingUpdate_maxUnavailable_asInteger {doc 'Sub-feature added of type Integer'}
											Integer io_k8s_api_apps_v1_StatefulSet_spec_updateStrategy_rollingUpdate_partition {default 0, doc 'Partition indicates the ordinal at which the StatefulSet should be partitioned for updates During a rolling update, all pods from ordinal Replicas-1 to Partition are updated All pods from ordinal Partition-1 to 0 remain untouched This is helpful in being able to do a canary based deployment The default value is 0'}
									String io_k8s_api_apps_v1_StatefulSet_spec_updateStrategy_type {doc 'Type indicates the type of the StatefulSetUpdateStrategy Default is RollingUpdate'}
							io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates cardinality [1..*] {doc 'volumeClaimTemplates is a list of claims that pods are allowed to reference The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod Every claim in this list must have at least one matching (by name) volumeMount in one container in the template A claim in this list takes precedence over any volumes in the template, with the same name'}
								optional
									String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
									String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_kind {default 'PersistentVolumeClaim', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
												optional
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
											Integer io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_deletionGracePeriodSeconds {doc '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'}
											io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_finalizers cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
											Integer io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
											io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_managedFields cardinality [1..*] {doc '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'}
												optional
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_managedFields_apiVersion {doc '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'}
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
													io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
															io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
													io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
														alternative
															io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
															io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_managedFields_subresource {doc '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'}
													io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_managedFields_time {doc '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'}
														optional
															String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
											io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_ownerReferences cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
												optional
													io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
													io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
											String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
											String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
											String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
									io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec {doc 'spec defines the desired characteristics of a volume requested by a pod author More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
										optional
											io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
												optional
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
											io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
												optional
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
											io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
												optional
													io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
												optional
													io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
											String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
											String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
											String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
									io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status {doc 'status represents the current information/status of a persistent volume claim Read-only More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
										optional
											io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_accessModes cardinality [1..*] {doc 'accessModes contains the actual access modes the volume backing the PVC has More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_allocatedResourceStatuses cardinality [1..*] {doc 'allocatedResourceStatuses stores status of resource being resized for the given PVC Key names follow standard Kubernetes label syntax Valid values are either:	* Un-prefixed keys:		- storage - the capacity of the volume	* Custom resources must use implementation-defined prefixed names such as examplecom/my-custom-resourceApart from above values - keys that are unprefixed or have kubernetesio prefix are considered reserved and hence may not be usedClaimResourceStatus can be in any of following states:	- ControllerResizeInProgress:		State set when resize controller starts resizing the volume in control-plane	- ControllerResizeFailed:		State set when resize has failed in resize controller with a terminal error	- NodeResizePending:		State set when resize controller has finished resizing the volume but further resizing of		volume is needed on the node	- NodeResizeInProgress:		State set when kubelet starts resizing the volume	- NodeResizeFailed:		State set when resizing has failed in kubelet with a terminal error Transient errors don_t set		NodeResizeFailedFor example: if expanding a PVC for more capacity - this field can be one of the following states:	- pvcstatusallocatedResourceStatus[_storage_] = ControllerResizeInProgress     - pvcstatusallocatedResourceStatus[_storage_] = ControllerResizeFailed     - pvcstatusallocatedResourceStatus[_storage_] = NodeResizePending     - pvcstatusallocatedResourceStatus[_storage_] = NodeResizeInProgress     - pvcstatusallocatedResourceStatus[_storage_] = NodeResizeFailedWhen this field is not set, it means that no resize operation is in progress for the given PVCA controller that receives PVC update with previously unknown resourceName or ClaimResourceStatus should ignore the update for the purpose it was designed For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVCThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature'}
												alternative
													io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_allocatedResourceStatuses_storage {doc 'Specific value: storage'}
													io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_allocatedResourceStatuses_NodeResizePending {doc 'Specific value: NodeResizePending'}
													io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_allocatedResourceStatuses_ControllerResizeFailed {doc 'Specific value: ControllerResizeFailed'}
													io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_allocatedResourceStatuses_NodeResizeInProgress {doc 'Specific value: NodeResizeInProgress'}
													io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_allocatedResourceStatuses_NodeResizeFailed {doc 'Specific value: NodeResizeFailed'}
											io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_allocatedResources cardinality [1..*] {doc 'allocatedResources tracks the resources allocated to a PVC including its capacity Key names follow standard Kubernetes label syntax Valid values are either:	* Un-prefixed keys:		- storage - the capacity of the volume	* Custom resources must use implementation-defined prefixed names such as examplecom/my-custom-resourceApart from above values - keys that are unprefixed or have kubernetesio prefix are considered reserved and hence may not be usedCapacity reported here may be larger than the actual capacity when a volume expansion operation is requested For storage quota, the larger value from allocatedResources and PVCspecresources is used If allocatedResources is not set, PVCspecresources alone is used for quota calculation If a volume expansion capacity request is lowered, allocatedResources is only lowered if there are no expansion operations in progress and if the actual volume capacity is equal or lower than the requested capacityA controller that receives PVC update with previously unknown resourceName should ignore the update for the purpose it was designed For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVCThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature'}
												alternative
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_allocatedResources_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_allocatedResources_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_capacity cardinality [1..*] {doc 'capacity represents the actual resources of the underlying volume'}
												alternative
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_capacity_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_capacity_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_conditions cardinality [1..*] {doc 'conditions is the current Condition of persistent volume claim If underlying persistent volume is being resized then the Condition will be set to _Resizing_'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_conditions_status
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_conditions_type
												optional
													io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_conditions_lastProbeTime {doc 'lastProbeTime is the time we probed the condition'}
														optional
															String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_conditions_lastProbeTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the time the condition transitioned from one status to another'}
														optional
															String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_conditions_message {doc 'message is the human-readable message indicating details about last transition'}
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_conditions_reason {doc 'reason is a unique, this should be a short, machine understandable string that gives the reason for condition_s last transition If it reports Resizing that means the underlying persistent volume is being resized'}
											String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_currentVolumeAttributesClassName {doc 'currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using When unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim This is an alpha field and requires enabling VolumeAttributesClass feature'}
											io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_modifyVolumeStatus {doc 'ModifyVolumeStatus represents the status object of ControllerModifyVolume operation When this is unset, there is no ModifyVolume operation being attempted This is an alpha field and requires enabling VolumeAttributesClass feature'}
												mandatory
													io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_modifyVolumeStatus_status {doc 'status is the status of the ControllerModifyVolume operation It can be in any of following states: - Pending   Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as   the specified VolumeAttributesClass not existing - InProgress   InProgress indicates that the volume is being modified - Infeasible  Infeasible indicates that the request has been rejected as invalid by the CSI driver To	  resolve the error, a valid VolumeAttributesClass needs to be specifiedNote: New statuses can be added in the future Consumers should check for unknown statuses and fail appropriately'}
														alternative
															io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_modifyVolumeStatus_status_Pending {doc 'Specific value: Pending'}
															io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_modifyVolumeStatus_status_Infeasible {doc 'Specific value: Infeasible'}
															io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_modifyVolumeStatus_status_InProgress {doc 'Specific value: InProgress'}
												optional
													String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_modifyVolumeStatus_targetVolumeAttributesClassName {doc 'targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled'}
											String io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_status_phase {doc 'phase represents the current phase of PersistentVolumeClaim'}
					io_k8s_api_apps_v1_StatefulSet_status {doc 'Status is the current status of Pods in this StatefulSet This data may be out of date by some window of time'}
						mandatory
							Integer io_k8s_api_apps_v1_StatefulSet_status_replicas {doc 'replicas is the number of Pods created by the StatefulSet controller'}
						optional
							Integer io_k8s_api_apps_v1_StatefulSet_status_availableReplicas {doc 'Total number of available pods (ready for at least minReadySeconds) targeted by this statefulset'}
							Integer io_k8s_api_apps_v1_StatefulSet_status_collisionCount {doc 'collisionCount is the count of hash collisions for the StatefulSet The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision'}
							io_k8s_api_apps_v1_StatefulSet_status_conditions cardinality [1..*] {doc 'Represents the latest available observations of a statefulset_s current state'}
								mandatory
									io_k8s_api_apps_v1_StatefulSet_status_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
										alternative
											io_k8s_api_apps_v1_StatefulSet_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_apps_v1_StatefulSet_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_apps_v1_StatefulSet_status_conditions_status_True {doc 'Specific value: True'}
									String io_k8s_api_apps_v1_StatefulSet_status_conditions_type {doc 'Type of statefulset condition'}
								optional
									io_k8s_api_apps_v1_StatefulSet_status_conditions_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
										optional
											String io_k8s_api_apps_v1_StatefulSet_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_apps_v1_StatefulSet_status_conditions_message {doc 'A human readable message indicating details about the transition'}
									String io_k8s_api_apps_v1_StatefulSet_status_conditions_reason {doc 'The reason for the condition_s last transition'}
							Integer io_k8s_api_apps_v1_StatefulSet_status_currentReplicas {doc 'currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision'}
							String io_k8s_api_apps_v1_StatefulSet_status_currentRevision {doc 'currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas)'}
							Integer io_k8s_api_apps_v1_StatefulSet_status_observedGeneration {doc 'observedGeneration is the most recent generation observed for this StatefulSet It corresponds to the StatefulSet_s generation, which is updated on mutation by the API Server'}
							Integer io_k8s_api_apps_v1_StatefulSet_status_readyReplicas {doc 'readyReplicas is the number of pods created for this StatefulSet with a Ready Condition'}
							String io_k8s_api_apps_v1_StatefulSet_status_updateRevision {doc 'updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)'}
							Integer io_k8s_api_apps_v1_StatefulSet_status_updatedReplicas {doc 'updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision'}
			io_k8s_api_apps_v1_StatefulSetCondition {doc 'StatefulSetCondition describes the state of a statefulset at a certain point'}
				mandatory
					io_k8s_api_apps_v1_StatefulSetCondition_status {doc 'Status of the condition, one of True, False, Unknown'}
						alternative
							io_k8s_api_apps_v1_StatefulSetCondition_status_Unknown {doc 'Specific value: Unknown'}
							io_k8s_api_apps_v1_StatefulSetCondition_status_False {doc 'Specific value: False'}
							io_k8s_api_apps_v1_StatefulSetCondition_status_True {doc 'Specific value: True'}
					String io_k8s_api_apps_v1_StatefulSetCondition_type {doc 'Type of statefulset condition'}
				optional
					io_k8s_api_apps_v1_StatefulSetCondition_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
						optional
							String io_k8s_api_apps_v1_StatefulSetCondition_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_api_apps_v1_StatefulSetCondition_message {doc 'A human readable message indicating details about the transition'}
					String io_k8s_api_apps_v1_StatefulSetCondition_reason {doc 'The reason for the condition_s last transition'}
			io_k8s_api_apps_v1_StatefulSetList {doc 'StatefulSetList is a collection of StatefulSets'}
				mandatory
					io_k8s_api_apps_v1_StatefulSetList_items cardinality [1..*] {doc 'Items is the list of stateful sets'}
						optional
							String io_k8s_api_apps_v1_StatefulSetList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_apps_v1_StatefulSetList_items_kind {default 'StatefulSet', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_apps_v1_StatefulSetList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_apps_v1_StatefulSetList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_apps_v1_StatefulSetList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_StatefulSetList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apps_v1_StatefulSetList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_apps_v1_StatefulSetList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_apps_v1_StatefulSetList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_apps_v1_StatefulSetList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_apps_v1_StatefulSetList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_apps_v1_StatefulSetList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_apps_v1_StatefulSetList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_apps_v1_StatefulSetList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_apps_v1_StatefulSetList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_apps_v1_StatefulSetList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_StatefulSetList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apps_v1_StatefulSetList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_apps_v1_StatefulSetList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_apps_v1_StatefulSetList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_apps_v1_StatefulSetList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_apps_v1_StatefulSetList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_apps_v1_StatefulSetList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_apps_v1_StatefulSetList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_apps_v1_StatefulSetList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_apps_v1_StatefulSetList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_apps_v1_StatefulSetList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_apps_v1_StatefulSetList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_apps_v1_StatefulSetList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_apps_v1_StatefulSetList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_apps_v1_StatefulSetList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_apps_v1_StatefulSetList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_apps_v1_StatefulSetList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_apps_v1_StatefulSetList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_apps_v1_StatefulSetList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_apps_v1_StatefulSetList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_apps_v1_StatefulSetList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_apps_v1_StatefulSetList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_apps_v1_StatefulSetList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_apps_v1_StatefulSetList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_apps_v1_StatefulSetList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_apps_v1_StatefulSetList_items_spec {doc 'Spec defines the desired identities of pods in this set'}
								mandatory
									io_k8s_api_apps_v1_StatefulSetList_items_spec_selector {doc 'selector is a label query over pods that should match the replica count It must match the pod template_s labels More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/#label-selectors'}
										optional
											io_k8s_api_apps_v1_StatefulSetList_items_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_apps_v1_StatefulSetList_items_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_apps_v1_StatefulSetList_items_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_StatefulSetList_items_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_apps_v1_StatefulSetList_items_spec_serviceName {doc 'serviceName is the name of the service that governs this StatefulSet This service must exist before the StatefulSet, and is responsible for the network identity of the set Pods get DNS/hostnames that follow the pattern: pod-specific-stringserviceNamedefaultsvcclusterlocal where pod-specific-string is managed by the StatefulSet controller'}
									io_k8s_api_apps_v1_StatefulSetList_items_spec_template {doc 'template is the object that describes the pod that will be created if insufficient replicas are detected Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet Each pod will be named with the format <statefulsetname>-<podindex> For example, a pod in a StatefulSet named web with index number 3 would be named web-3 The only allowed templatespecrestartPolicy value is Always'}
										optional
											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
														optional
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
														optional
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
													Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_deletionGracePeriodSeconds {doc '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'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
														optional
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_finalizers cardinality [1..*] {doc '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'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
													Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_managedFields cardinality [1..*] {doc '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'}
														optional
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_managedFields_apiVersion {doc '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'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																alternative
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_managedFields_subresource {doc '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'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_managedFields_time {doc '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'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
														optional
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
												mandatory
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
														optional
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																alternative
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																				alternative
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																				mandatory
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																				alternative
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																				mandatory
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
												optional
													Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
														optional
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																						optional
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																						optional
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																						optional
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																						optional
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
														optional
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_dnsConfig_options_name {doc 'Required'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_dnsConfig_options_value
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
														alternative
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_dnsPolicy_None {doc 'Specific value: None'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
														optional
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																alternative
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																				alternative
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																				mandatory
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																				alternative
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																				mandatory
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
														optional
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
														optional
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
														optional
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																alternative
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																				alternative
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																				mandatory
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																				alternative
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																				mandatory
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
																alternative
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows {doc 'Specific value: windows'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_linux {doc 'Specific value: linux'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
														alternative
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
														alternative
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
													Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
														optional
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
														alternative
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
														optional
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
																alternative
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
													Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
														optional
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
																alternative
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
																alternative
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
															Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
														mandatory
															Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
														optional
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
														optional
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
																optional
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
																optional
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
																		mandatory
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																						optional
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																						optional
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																						optional
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																								alternative
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																								alternative
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																						optional
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																						optional
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																						optional
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																						optional
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																						optional
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																								optional
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																								alternative
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																								optional
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																						optional
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
																optional
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																						optional
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																						optional
																							Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																						optional
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																								optional
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																							Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																							io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																								mandatory
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																								optional
																									String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																									io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																										alternative
																											String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																							String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																						optional
																							Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																					Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
																optional
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
								optional
									Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_minReadySeconds {default 0, doc 'Minimum number of seconds for which a newly created pod should be ready without any of its container crashing for it to be considered available Defaults to 0 (pod will be considered available as soon as it is ready)'}
									io_k8s_api_apps_v1_StatefulSetList_items_spec_ordinals {doc 'ordinals controls the numbering of replica indices in a StatefulSet The default ordinals behavior assigns a 0 index to the first replica and increments the index by one for each additional replica requested Using the ordinals field requires the StatefulSetStartOrdinal feature gate to be enabled, which is beta'}
										optional
											Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_ordinals_start {default 0, doc 'start is the number representing the first replica_s index It may be used to number replicas from an alternate index (eg: 1-indexed) over the default 0-indexed names, or to orchestrate progressive movement of replicas from one StatefulSet to another If set, replica indices will be in the range:  [specordinalsstart, specordinalsstart + specreplicas)If unset, defaults to 0 Replica indices will be in the range:  [0, specreplicas)'}
									io_k8s_api_apps_v1_StatefulSetList_items_spec_persistentVolumeClaimRetentionPolicy {doc 'persistentVolumeClaimRetentionPolicy describes the lifecycle of persistent volume claims created from volumeClaimTemplates By default, all persistent volume claims are created as needed and retained until manually deleted This policy allows the lifecycle to be altered, for example by deleting persistent volume claims when their stateful set is deleted, or when their pod is scaled down This requires the StatefulSetAutoDeletePVC feature gate to be enabled, which is alpha  +optional'}
										optional
											String io_k8s_api_apps_v1_StatefulSetList_items_spec_persistentVolumeClaimRetentionPolicy_whenDeleted {doc 'WhenDeleted specifies what happens to PVCs created from StatefulSet VolumeClaimTemplates when the StatefulSet is deleted The default policy of Retain causes PVCs to not be affected by StatefulSet deletion The Delete policy causes those PVCs to be deleted'}
											String io_k8s_api_apps_v1_StatefulSetList_items_spec_persistentVolumeClaimRetentionPolicy_whenScaled {doc 'WhenScaled specifies what happens to PVCs created from StatefulSet VolumeClaimTemplates when the StatefulSet is scaled down The default policy of Retain causes PVCs to not be affected by a scaledown The Delete policy causes the associated PVCs for any excess pods above the replica count to be deleted'}
									String io_k8s_api_apps_v1_StatefulSetList_items_spec_podManagementPolicy {doc 'podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down The default policy is OrderedReady, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing When scaling down, the pods are removed in the opposite order The alternative policy is Parallel which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once'}
									Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_replicas {default 1, doc 'replicas is the desired number of replicas of the given Template These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity If unspecified, defaults to 1'}
									Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_revisionHistoryLimit {default 10, doc 'revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet_s revision history The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version The default value is 10'}
									io_k8s_api_apps_v1_StatefulSetList_items_spec_updateStrategy {doc 'updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template'}
										optional
											io_k8s_api_apps_v1_StatefulSetList_items_spec_updateStrategy_rollingUpdate {doc 'RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType'}
												optional
													io_k8s_api_apps_v1_StatefulSetList_items_spec_updateStrategy_rollingUpdate_maxUnavailable {default 1, doc 'The maximum number of pods that can be unavailable during the update Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%) Absolute number is calculated from percentage by rounding up This can not be 0 Defaults to 1 This field is alpha-level and is only honored by servers that enable the MaxUnavailableStatefulSet feature The field applies to all pods in the range 0 to Replicas-1 That means if there is any unavailable pod in the range 0 to Replicas-1, it will be counted towards MaxUnavailable'}
														alternative
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_updateStrategy_rollingUpdate_maxUnavailable_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_updateStrategy_rollingUpdate_maxUnavailable_asInteger {doc 'Sub-feature added of type Integer'}
													Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_updateStrategy_rollingUpdate_partition {default 0, doc 'Partition indicates the ordinal at which the StatefulSet should be partitioned for updates During a rolling update, all pods from ordinal Replicas-1 to Partition are updated All pods from ordinal Partition-1 to 0 remain untouched This is helpful in being able to do a canary based deployment The default value is 0'}
											String io_k8s_api_apps_v1_StatefulSetList_items_spec_updateStrategy_type {doc 'Type indicates the type of the StatefulSetUpdateStrategy Default is RollingUpdate'}
									io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates cardinality [1..*] {doc 'volumeClaimTemplates is a list of claims that pods are allowed to reference The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod Every claim in this list must have at least one matching (by name) volumeMount in one container in the template A claim in this list takes precedence over any volumes in the template, with the same name'}
										optional
											String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
											String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_kind {default 'PersistentVolumeClaim', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
														optional
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
														optional
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
													Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_deletionGracePeriodSeconds {doc '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'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
														optional
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_finalizers cardinality [1..*] {doc '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'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
													Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_managedFields cardinality [1..*] {doc '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'}
														optional
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_managedFields_apiVersion {doc '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'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																alternative
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_managedFields_subresource {doc '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'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_managedFields_time {doc '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'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_ownerReferences cardinality [1..*] {doc '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'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
														optional
															io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
											io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec {doc 'spec defines the desired characteristics of a volume requested by a pod author More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
												optional
													io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
														optional
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
														optional
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
														optional
															io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
														optional
															io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
											io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status {doc 'status represents the current information/status of a persistent volume claim Read-only More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
												optional
													io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_accessModes cardinality [1..*] {doc 'accessModes contains the actual access modes the volume backing the PVC has More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_allocatedResourceStatuses cardinality [1..*] {doc 'allocatedResourceStatuses stores status of resource being resized for the given PVC Key names follow standard Kubernetes label syntax Valid values are either:	* Un-prefixed keys:		- storage - the capacity of the volume	* Custom resources must use implementation-defined prefixed names such as examplecom/my-custom-resourceApart from above values - keys that are unprefixed or have kubernetesio prefix are considered reserved and hence may not be usedClaimResourceStatus can be in any of following states:	- ControllerResizeInProgress:		State set when resize controller starts resizing the volume in control-plane	- ControllerResizeFailed:		State set when resize has failed in resize controller with a terminal error	- NodeResizePending:		State set when resize controller has finished resizing the volume but further resizing of		volume is needed on the node	- NodeResizeInProgress:		State set when kubelet starts resizing the volume	- NodeResizeFailed:		State set when resizing has failed in kubelet with a terminal error Transient errors don_t set		NodeResizeFailedFor example: if expanding a PVC for more capacity - this field can be one of the following states:	- pvcstatusallocatedResourceStatus[_storage_] = ControllerResizeInProgress     - pvcstatusallocatedResourceStatus[_storage_] = ControllerResizeFailed     - pvcstatusallocatedResourceStatus[_storage_] = NodeResizePending     - pvcstatusallocatedResourceStatus[_storage_] = NodeResizeInProgress     - pvcstatusallocatedResourceStatus[_storage_] = NodeResizeFailedWhen this field is not set, it means that no resize operation is in progress for the given PVCA controller that receives PVC update with previously unknown resourceName or ClaimResourceStatus should ignore the update for the purpose it was designed For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVCThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature'}
														alternative
															io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_allocatedResourceStatuses_storage {doc 'Specific value: storage'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_allocatedResourceStatuses_NodeResizePending {doc 'Specific value: NodeResizePending'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_allocatedResourceStatuses_ControllerResizeFailed {doc 'Specific value: ControllerResizeFailed'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_allocatedResourceStatuses_NodeResizeInProgress {doc 'Specific value: NodeResizeInProgress'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_allocatedResourceStatuses_NodeResizeFailed {doc 'Specific value: NodeResizeFailed'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_allocatedResources cardinality [1..*] {doc 'allocatedResources tracks the resources allocated to a PVC including its capacity Key names follow standard Kubernetes label syntax Valid values are either:	* Un-prefixed keys:		- storage - the capacity of the volume	* Custom resources must use implementation-defined prefixed names such as examplecom/my-custom-resourceApart from above values - keys that are unprefixed or have kubernetesio prefix are considered reserved and hence may not be usedCapacity reported here may be larger than the actual capacity when a volume expansion operation is requested For storage quota, the larger value from allocatedResources and PVCspecresources is used If allocatedResources is not set, PVCspecresources alone is used for quota calculation If a volume expansion capacity request is lowered, allocatedResources is only lowered if there are no expansion operations in progress and if the actual volume capacity is equal or lower than the requested capacityA controller that receives PVC update with previously unknown resourceName should ignore the update for the purpose it was designed For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVCThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature'}
														alternative
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_allocatedResources_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_allocatedResources_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_capacity cardinality [1..*] {doc 'capacity represents the actual resources of the underlying volume'}
														alternative
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_capacity_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_capacity_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_conditions cardinality [1..*] {doc 'conditions is the current Condition of persistent volume claim If underlying persistent volume is being resized then the Condition will be set to _Resizing_'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_conditions_status
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_conditions_type
														optional
															io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_conditions_lastProbeTime {doc 'lastProbeTime is the time we probed the condition'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_conditions_lastProbeTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the time the condition transitioned from one status to another'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_conditions_message {doc 'message is the human-readable message indicating details about last transition'}
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_conditions_reason {doc 'reason is a unique, this should be a short, machine understandable string that gives the reason for condition_s last transition If it reports Resizing that means the underlying persistent volume is being resized'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_currentVolumeAttributesClassName {doc 'currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using When unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim This is an alpha field and requires enabling VolumeAttributesClass feature'}
													io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_modifyVolumeStatus {doc 'ModifyVolumeStatus represents the status object of ControllerModifyVolume operation When this is unset, there is no ModifyVolume operation being attempted This is an alpha field and requires enabling VolumeAttributesClass feature'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_modifyVolumeStatus_status {doc 'status is the status of the ControllerModifyVolume operation It can be in any of following states: - Pending   Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as   the specified VolumeAttributesClass not existing - InProgress   InProgress indicates that the volume is being modified - Infeasible  Infeasible indicates that the request has been rejected as invalid by the CSI driver To	  resolve the error, a valid VolumeAttributesClass needs to be specifiedNote: New statuses can be added in the future Consumers should check for unknown statuses and fail appropriately'}
																alternative
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_modifyVolumeStatus_status_Pending {doc 'Specific value: Pending'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_modifyVolumeStatus_status_Infeasible {doc 'Specific value: Infeasible'}
																	io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_modifyVolumeStatus_status_InProgress {doc 'Specific value: InProgress'}
														optional
															String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_modifyVolumeStatus_targetVolumeAttributesClassName {doc 'targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled'}
													String io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_status_phase {doc 'phase represents the current phase of PersistentVolumeClaim'}
							io_k8s_api_apps_v1_StatefulSetList_items_status {doc 'Status is the current status of Pods in this StatefulSet This data may be out of date by some window of time'}
								mandatory
									Integer io_k8s_api_apps_v1_StatefulSetList_items_status_replicas {doc 'replicas is the number of Pods created by the StatefulSet controller'}
								optional
									Integer io_k8s_api_apps_v1_StatefulSetList_items_status_availableReplicas {doc 'Total number of available pods (ready for at least minReadySeconds) targeted by this statefulset'}
									Integer io_k8s_api_apps_v1_StatefulSetList_items_status_collisionCount {doc 'collisionCount is the count of hash collisions for the StatefulSet The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision'}
									io_k8s_api_apps_v1_StatefulSetList_items_status_conditions cardinality [1..*] {doc 'Represents the latest available observations of a statefulset_s current state'}
										mandatory
											io_k8s_api_apps_v1_StatefulSetList_items_status_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
												alternative
													io_k8s_api_apps_v1_StatefulSetList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_api_apps_v1_StatefulSetList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_api_apps_v1_StatefulSetList_items_status_conditions_status_True {doc 'Specific value: True'}
											String io_k8s_api_apps_v1_StatefulSetList_items_status_conditions_type {doc 'Type of statefulset condition'}
										optional
											io_k8s_api_apps_v1_StatefulSetList_items_status_conditions_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
												optional
													String io_k8s_api_apps_v1_StatefulSetList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_apps_v1_StatefulSetList_items_status_conditions_message {doc 'A human readable message indicating details about the transition'}
											String io_k8s_api_apps_v1_StatefulSetList_items_status_conditions_reason {doc 'The reason for the condition_s last transition'}
									Integer io_k8s_api_apps_v1_StatefulSetList_items_status_currentReplicas {doc 'currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision'}
									String io_k8s_api_apps_v1_StatefulSetList_items_status_currentRevision {doc 'currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas)'}
									Integer io_k8s_api_apps_v1_StatefulSetList_items_status_observedGeneration {doc 'observedGeneration is the most recent generation observed for this StatefulSet It corresponds to the StatefulSet_s generation, which is updated on mutation by the API Server'}
									Integer io_k8s_api_apps_v1_StatefulSetList_items_status_readyReplicas {doc 'readyReplicas is the number of pods created for this StatefulSet with a Ready Condition'}
									String io_k8s_api_apps_v1_StatefulSetList_items_status_updateRevision {doc 'updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)'}
									Integer io_k8s_api_apps_v1_StatefulSetList_items_status_updatedReplicas {doc 'updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision'}
				optional
					String io_k8s_api_apps_v1_StatefulSetList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_apps_v1_StatefulSetList_kind {default 'StatefulSetList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_apps_v1_StatefulSetList_metadata {doc 'Standard list_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_apps_v1_StatefulSetList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_apps_v1_StatefulSetList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_apps_v1_StatefulSetList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_apps_v1_StatefulSetList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_apps_v1_StatefulSetOrdinals {doc 'StatefulSetOrdinals describes the policy used for replica ordinal assignment in this StatefulSet'}
				optional
					Integer io_k8s_api_apps_v1_StatefulSetOrdinals_start {default 0, doc 'start is the number representing the first replica_s index It may be used to number replicas from an alternate index (eg: 1-indexed) over the default 0-indexed names, or to orchestrate progressive movement of replicas from one StatefulSet to another If set, replica indices will be in the range:  [specordinalsstart, specordinalsstart + specreplicas)If unset, defaults to 0 Replica indices will be in the range:  [0, specreplicas)'}
			io_k8s_api_apps_v1_StatefulSetPersistentVolumeClaimRetentionPolicy {doc 'StatefulSetPersistentVolumeClaimRetentionPolicy describes the policy used for PVCs created from the StatefulSet VolumeClaimTemplates'}
				optional
					String io_k8s_api_apps_v1_StatefulSetPersistentVolumeClaimRetentionPolicy_whenDeleted {doc 'WhenDeleted specifies what happens to PVCs created from StatefulSet VolumeClaimTemplates when the StatefulSet is deleted The default policy of Retain causes PVCs to not be affected by StatefulSet deletion The Delete policy causes those PVCs to be deleted'}
					String io_k8s_api_apps_v1_StatefulSetPersistentVolumeClaimRetentionPolicy_whenScaled {doc 'WhenScaled specifies what happens to PVCs created from StatefulSet VolumeClaimTemplates when the StatefulSet is scaled down The default policy of Retain causes PVCs to not be affected by a scaledown The Delete policy causes the associated PVCs for any excess pods above the replica count to be deleted'}
			io_k8s_api_apps_v1_StatefulSetSpec {doc 'A StatefulSetSpec is the specification of a StatefulSet'}
				mandatory
					io_k8s_api_apps_v1_StatefulSetSpec_selector {doc 'selector is a label query over pods that should match the replica count It must match the pod template_s labels More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/#label-selectors'}
						optional
							io_k8s_api_apps_v1_StatefulSetSpec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_apps_v1_StatefulSetSpec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_apps_v1_StatefulSetSpec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_apps_v1_StatefulSetSpec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_apps_v1_StatefulSetSpec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_apps_v1_StatefulSetSpec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_apps_v1_StatefulSetSpec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_apps_v1_StatefulSetSpec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetSpec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_apps_v1_StatefulSetSpec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_apps_v1_StatefulSetSpec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_apps_v1_StatefulSetSpec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					String io_k8s_api_apps_v1_StatefulSetSpec_serviceName {doc 'serviceName is the name of the service that governs this StatefulSet This service must exist before the StatefulSet, and is responsible for the network identity of the set Pods get DNS/hostnames that follow the pattern: pod-specific-stringserviceNamedefaultsvcclusterlocal where pod-specific-string is managed by the StatefulSet controller'}
					io_k8s_api_apps_v1_StatefulSetSpec_template {doc 'template is the object that describes the pod that will be created if insufficient replicas are detected Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet Each pod will be named with the format <statefulsetname>-<podindex> For example, a pod in a StatefulSet named web with index number 3 would be named web-3 The only allowed templatespecrestartPolicy value is Always'}
						optional
							io_k8s_api_apps_v1_StatefulSetSpec_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_apps_v1_StatefulSetSpec_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_apps_v1_StatefulSetSpec_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
										optional
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
												mandatory
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
								optional
									Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
										optional
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																optional
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																optional
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																optional
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																optional
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																optional
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																optional
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
										optional
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_dnsConfig_options_name {doc 'Required'}
												optional
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_dnsConfig_options_value
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
										alternative
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_dnsPolicy_None {doc 'Specific value: None'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
										optional
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
												mandatory
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
										optional
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
									String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
										optional
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
										optional
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
												mandatory
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
									String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
										mandatory
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
												alternative
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows {doc 'Specific value: windows'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_linux {doc 'Specific value: linux'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
										alternative
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
										alternative
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
									Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
									String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
										optional
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
										alternative
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
									String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
									String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
										optional
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
												alternative
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												optional
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
												optional
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
									String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
									String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
									String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
									Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
										optional
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
												alternative
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
												alternative
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
											Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
										mandatory
											Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
										optional
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
									io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
										optional
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
												mandatory
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
												optional
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
														optional
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
												optional
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
												optional
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
												optional
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
														alternative
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
														mandatory
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																optional
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				alternative
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																optional
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																		optional
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																				alternative
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
												optional
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
												optional
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
												optional
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
														optional
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																optional
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																optional
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																optional
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																		optional
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																				mandatory
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																optional
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																			String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																mandatory
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																optional
																	String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																	Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
												optional
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
												optional
													Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
														optional
															Integer io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
														optional
															String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
											io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
													String io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
				optional
					Integer io_k8s_api_apps_v1_StatefulSetSpec_minReadySeconds {default 0, doc 'Minimum number of seconds for which a newly created pod should be ready without any of its container crashing for it to be considered available Defaults to 0 (pod will be considered available as soon as it is ready)'}
					io_k8s_api_apps_v1_StatefulSetSpec_ordinals {doc 'ordinals controls the numbering of replica indices in a StatefulSet The default ordinals behavior assigns a 0 index to the first replica and increments the index by one for each additional replica requested Using the ordinals field requires the StatefulSetStartOrdinal feature gate to be enabled, which is beta'}
						optional
							Integer io_k8s_api_apps_v1_StatefulSetSpec_ordinals_start {default 0, doc 'start is the number representing the first replica_s index It may be used to number replicas from an alternate index (eg: 1-indexed) over the default 0-indexed names, or to orchestrate progressive movement of replicas from one StatefulSet to another If set, replica indices will be in the range:  [specordinalsstart, specordinalsstart + specreplicas)If unset, defaults to 0 Replica indices will be in the range:  [0, specreplicas)'}
					io_k8s_api_apps_v1_StatefulSetSpec_persistentVolumeClaimRetentionPolicy {doc 'persistentVolumeClaimRetentionPolicy describes the lifecycle of persistent volume claims created from volumeClaimTemplates By default, all persistent volume claims are created as needed and retained until manually deleted This policy allows the lifecycle to be altered, for example by deleting persistent volume claims when their stateful set is deleted, or when their pod is scaled down This requires the StatefulSetAutoDeletePVC feature gate to be enabled, which is alpha  +optional'}
						optional
							String io_k8s_api_apps_v1_StatefulSetSpec_persistentVolumeClaimRetentionPolicy_whenDeleted {doc 'WhenDeleted specifies what happens to PVCs created from StatefulSet VolumeClaimTemplates when the StatefulSet is deleted The default policy of Retain causes PVCs to not be affected by StatefulSet deletion The Delete policy causes those PVCs to be deleted'}
							String io_k8s_api_apps_v1_StatefulSetSpec_persistentVolumeClaimRetentionPolicy_whenScaled {doc 'WhenScaled specifies what happens to PVCs created from StatefulSet VolumeClaimTemplates when the StatefulSet is scaled down The default policy of Retain causes PVCs to not be affected by a scaledown The Delete policy causes the associated PVCs for any excess pods above the replica count to be deleted'}
					String io_k8s_api_apps_v1_StatefulSetSpec_podManagementPolicy {doc 'podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down The default policy is OrderedReady, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing When scaling down, the pods are removed in the opposite order The alternative policy is Parallel which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once'}
					Integer io_k8s_api_apps_v1_StatefulSetSpec_replicas {default 1, doc 'replicas is the desired number of replicas of the given Template These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity If unspecified, defaults to 1'}
					Integer io_k8s_api_apps_v1_StatefulSetSpec_revisionHistoryLimit {default 10, doc 'revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet_s revision history The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version The default value is 10'}
					io_k8s_api_apps_v1_StatefulSetSpec_updateStrategy {doc 'updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template'}
						optional
							io_k8s_api_apps_v1_StatefulSetSpec_updateStrategy_rollingUpdate {doc 'RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType'}
								optional
									io_k8s_api_apps_v1_StatefulSetSpec_updateStrategy_rollingUpdate_maxUnavailable {default 1, doc 'The maximum number of pods that can be unavailable during the update Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%) Absolute number is calculated from percentage by rounding up This can not be 0 Defaults to 1 This field is alpha-level and is only honored by servers that enable the MaxUnavailableStatefulSet feature The field applies to all pods in the range 0 to Replicas-1 That means if there is any unavailable pod in the range 0 to Replicas-1, it will be counted towards MaxUnavailable'}
										alternative
											String io_k8s_api_apps_v1_StatefulSetSpec_updateStrategy_rollingUpdate_maxUnavailable_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_apps_v1_StatefulSetSpec_updateStrategy_rollingUpdate_maxUnavailable_asInteger {doc 'Sub-feature added of type Integer'}
									Integer io_k8s_api_apps_v1_StatefulSetSpec_updateStrategy_rollingUpdate_partition {default 0, doc 'Partition indicates the ordinal at which the StatefulSet should be partitioned for updates During a rolling update, all pods from ordinal Replicas-1 to Partition are updated All pods from ordinal Partition-1 to 0 remain untouched This is helpful in being able to do a canary based deployment The default value is 0'}
							String io_k8s_api_apps_v1_StatefulSetSpec_updateStrategy_type {doc 'Type indicates the type of the StatefulSetUpdateStrategy Default is RollingUpdate'}
					io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates cardinality [1..*] {doc 'volumeClaimTemplates is a list of claims that pods are allowed to reference The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod Every claim in this list must have at least one matching (by name) volumeMount in one container in the template A claim in this list takes precedence over any volumes in the template, with the same name'}
						optional
							String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_kind {default 'PersistentVolumeClaim', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec {doc 'spec defines the desired characteristics of a volume requested by a pod author More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
								optional
									io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
										optional
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
									io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
										optional
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
									io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
										optional
											io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
										optional
											io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
									String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
									String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
									String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
							io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status {doc 'status represents the current information/status of a persistent volume claim Read-only More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
								optional
									io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_accessModes cardinality [1..*] {doc 'accessModes contains the actual access modes the volume backing the PVC has More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_allocatedResourceStatuses cardinality [1..*] {doc 'allocatedResourceStatuses stores status of resource being resized for the given PVC Key names follow standard Kubernetes label syntax Valid values are either:	* Un-prefixed keys:		- storage - the capacity of the volume	* Custom resources must use implementation-defined prefixed names such as examplecom/my-custom-resourceApart from above values - keys that are unprefixed or have kubernetesio prefix are considered reserved and hence may not be usedClaimResourceStatus can be in any of following states:	- ControllerResizeInProgress:		State set when resize controller starts resizing the volume in control-plane	- ControllerResizeFailed:		State set when resize has failed in resize controller with a terminal error	- NodeResizePending:		State set when resize controller has finished resizing the volume but further resizing of		volume is needed on the node	- NodeResizeInProgress:		State set when kubelet starts resizing the volume	- NodeResizeFailed:		State set when resizing has failed in kubelet with a terminal error Transient errors don_t set		NodeResizeFailedFor example: if expanding a PVC for more capacity - this field can be one of the following states:	- pvcstatusallocatedResourceStatus[_storage_] = ControllerResizeInProgress     - pvcstatusallocatedResourceStatus[_storage_] = ControllerResizeFailed     - pvcstatusallocatedResourceStatus[_storage_] = NodeResizePending     - pvcstatusallocatedResourceStatus[_storage_] = NodeResizeInProgress     - pvcstatusallocatedResourceStatus[_storage_] = NodeResizeFailedWhen this field is not set, it means that no resize operation is in progress for the given PVCA controller that receives PVC update with previously unknown resourceName or ClaimResourceStatus should ignore the update for the purpose it was designed For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVCThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature'}
										alternative
											io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_allocatedResourceStatuses_storage {doc 'Specific value: storage'}
											io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_allocatedResourceStatuses_NodeResizePending {doc 'Specific value: NodeResizePending'}
											io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_allocatedResourceStatuses_ControllerResizeFailed {doc 'Specific value: ControllerResizeFailed'}
											io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_allocatedResourceStatuses_NodeResizeInProgress {doc 'Specific value: NodeResizeInProgress'}
											io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_allocatedResourceStatuses_NodeResizeFailed {doc 'Specific value: NodeResizeFailed'}
									io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_allocatedResources cardinality [1..*] {doc 'allocatedResources tracks the resources allocated to a PVC including its capacity Key names follow standard Kubernetes label syntax Valid values are either:	* Un-prefixed keys:		- storage - the capacity of the volume	* Custom resources must use implementation-defined prefixed names such as examplecom/my-custom-resourceApart from above values - keys that are unprefixed or have kubernetesio prefix are considered reserved and hence may not be usedCapacity reported here may be larger than the actual capacity when a volume expansion operation is requested For storage quota, the larger value from allocatedResources and PVCspecresources is used If allocatedResources is not set, PVCspecresources alone is used for quota calculation If a volume expansion capacity request is lowered, allocatedResources is only lowered if there are no expansion operations in progress and if the actual volume capacity is equal or lower than the requested capacityA controller that receives PVC update with previously unknown resourceName should ignore the update for the purpose it was designed For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVCThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature'}
										alternative
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_allocatedResources_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_allocatedResources_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_capacity cardinality [1..*] {doc 'capacity represents the actual resources of the underlying volume'}
										alternative
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_capacity_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_capacity_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_conditions cardinality [1..*] {doc 'conditions is the current Condition of persistent volume claim If underlying persistent volume is being resized then the Condition will be set to _Resizing_'}
										mandatory
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_conditions_status
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_conditions_type
										optional
											io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_conditions_lastProbeTime {doc 'lastProbeTime is the time we probed the condition'}
												optional
													String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_conditions_lastProbeTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the time the condition transitioned from one status to another'}
												optional
													String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_conditions_message {doc 'message is the human-readable message indicating details about last transition'}
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_conditions_reason {doc 'reason is a unique, this should be a short, machine understandable string that gives the reason for condition_s last transition If it reports Resizing that means the underlying persistent volume is being resized'}
									String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_currentVolumeAttributesClassName {doc 'currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using When unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim This is an alpha field and requires enabling VolumeAttributesClass feature'}
									io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_modifyVolumeStatus {doc 'ModifyVolumeStatus represents the status object of ControllerModifyVolume operation When this is unset, there is no ModifyVolume operation being attempted This is an alpha field and requires enabling VolumeAttributesClass feature'}
										mandatory
											io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_modifyVolumeStatus_status {doc 'status is the status of the ControllerModifyVolume operation It can be in any of following states: - Pending   Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as   the specified VolumeAttributesClass not existing - InProgress   InProgress indicates that the volume is being modified - Infeasible  Infeasible indicates that the request has been rejected as invalid by the CSI driver To	  resolve the error, a valid VolumeAttributesClass needs to be specifiedNote: New statuses can be added in the future Consumers should check for unknown statuses and fail appropriately'}
												alternative
													io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_modifyVolumeStatus_status_Pending {doc 'Specific value: Pending'}
													io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_modifyVolumeStatus_status_Infeasible {doc 'Specific value: Infeasible'}
													io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_modifyVolumeStatus_status_InProgress {doc 'Specific value: InProgress'}
										optional
											String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_modifyVolumeStatus_targetVolumeAttributesClassName {doc 'targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled'}
									String io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_status_phase {doc 'phase represents the current phase of PersistentVolumeClaim'}
			io_k8s_api_apps_v1_StatefulSetStatus {doc 'StatefulSetStatus represents the current state of a StatefulSet'}
				mandatory
					Integer io_k8s_api_apps_v1_StatefulSetStatus_replicas {doc 'replicas is the number of Pods created by the StatefulSet controller'}
				optional
					Integer io_k8s_api_apps_v1_StatefulSetStatus_availableReplicas {doc 'Total number of available pods (ready for at least minReadySeconds) targeted by this statefulset'}
					Integer io_k8s_api_apps_v1_StatefulSetStatus_collisionCount {doc 'collisionCount is the count of hash collisions for the StatefulSet The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision'}
					io_k8s_api_apps_v1_StatefulSetStatus_conditions cardinality [1..*] {doc 'Represents the latest available observations of a statefulset_s current state'}
						mandatory
							io_k8s_api_apps_v1_StatefulSetStatus_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
								alternative
									io_k8s_api_apps_v1_StatefulSetStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_apps_v1_StatefulSetStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_apps_v1_StatefulSetStatus_conditions_status_True {doc 'Specific value: True'}
							String io_k8s_api_apps_v1_StatefulSetStatus_conditions_type {doc 'Type of statefulset condition'}
						optional
							io_k8s_api_apps_v1_StatefulSetStatus_conditions_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
								optional
									String io_k8s_api_apps_v1_StatefulSetStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_apps_v1_StatefulSetStatus_conditions_message {doc 'A human readable message indicating details about the transition'}
							String io_k8s_api_apps_v1_StatefulSetStatus_conditions_reason {doc 'The reason for the condition_s last transition'}
					Integer io_k8s_api_apps_v1_StatefulSetStatus_currentReplicas {doc 'currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision'}
					String io_k8s_api_apps_v1_StatefulSetStatus_currentRevision {doc 'currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas)'}
					Integer io_k8s_api_apps_v1_StatefulSetStatus_observedGeneration {doc 'observedGeneration is the most recent generation observed for this StatefulSet It corresponds to the StatefulSet_s generation, which is updated on mutation by the API Server'}
					Integer io_k8s_api_apps_v1_StatefulSetStatus_readyReplicas {doc 'readyReplicas is the number of pods created for this StatefulSet with a Ready Condition'}
					String io_k8s_api_apps_v1_StatefulSetStatus_updateRevision {doc 'updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)'}
					Integer io_k8s_api_apps_v1_StatefulSetStatus_updatedReplicas {doc 'updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision'}
			io_k8s_api_apps_v1_StatefulSetUpdateStrategy {doc 'StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates It includes any additional parameters necessary to perform the update for the indicated strategy'}
				optional
					io_k8s_api_apps_v1_StatefulSetUpdateStrategy_rollingUpdate {doc 'RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType'}
						optional
							io_k8s_api_apps_v1_StatefulSetUpdateStrategy_rollingUpdate_maxUnavailable {default 1, doc 'The maximum number of pods that can be unavailable during the update Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%) Absolute number is calculated from percentage by rounding up This can not be 0 Defaults to 1 This field is alpha-level and is only honored by servers that enable the MaxUnavailableStatefulSet feature The field applies to all pods in the range 0 to Replicas-1 That means if there is any unavailable pod in the range 0 to Replicas-1, it will be counted towards MaxUnavailable'}
								alternative
									String io_k8s_api_apps_v1_StatefulSetUpdateStrategy_rollingUpdate_maxUnavailable_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_apps_v1_StatefulSetUpdateStrategy_rollingUpdate_maxUnavailable_asInteger {doc 'Sub-feature added of type Integer'}
							Integer io_k8s_api_apps_v1_StatefulSetUpdateStrategy_rollingUpdate_partition {default 0, doc 'Partition indicates the ordinal at which the StatefulSet should be partitioned for updates During a rolling update, all pods from ordinal Replicas-1 to Partition are updated All pods from ordinal Partition-1 to 0 remain untouched This is helpful in being able to do a canary based deployment The default value is 0'}
					String io_k8s_api_apps_v1_StatefulSetUpdateStrategy_type {doc 'Type indicates the type of the StatefulSetUpdateStrategy Default is RollingUpdate'}
			io_k8s_api_authentication_v1_BoundObjectReference {doc 'BoundObjectReference is a reference to an object that a token is bound to'}
				optional
					String io_k8s_api_authentication_v1_BoundObjectReference_apiVersion {doc 'API version of the referent'}
					String io_k8s_api_authentication_v1_BoundObjectReference_kind {doc 'Kind of the referent Valid kinds are _Pod_ and _Secret_'}
					String io_k8s_api_authentication_v1_BoundObjectReference_name {doc 'Name of the referent'}
					String io_k8s_api_authentication_v1_BoundObjectReference_uid {doc 'UID of the referent'}
			io_k8s_api_authentication_v1_SelfSubjectReview {doc 'SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request When using impersonation, users will receive the user info of the user being impersonated  If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase'}
				optional
					String io_k8s_api_authentication_v1_SelfSubjectReview_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_authentication_v1_SelfSubjectReview_kind {default 'SelfSubjectReview', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_authentication_v1_SelfSubjectReview_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_authentication_v1_SelfSubjectReview_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_authentication_v1_SelfSubjectReview_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_authentication_v1_SelfSubjectReview_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_authentication_v1_SelfSubjectReview_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_authentication_v1_SelfSubjectReview_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_authentication_v1_SelfSubjectReview_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_authentication_v1_SelfSubjectReview_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_authentication_v1_SelfSubjectReview_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_authentication_v1_SelfSubjectReview_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_authentication_v1_SelfSubjectReview_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_authentication_v1_SelfSubjectReview_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_authentication_v1_SelfSubjectReview_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_authentication_v1_SelfSubjectReview_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_authentication_v1_SelfSubjectReview_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_authentication_v1_SelfSubjectReview_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_authentication_v1_SelfSubjectReview_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_authentication_v1_SelfSubjectReview_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_authentication_v1_SelfSubjectReview_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_authentication_v1_SelfSubjectReview_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_authentication_v1_SelfSubjectReview_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_authentication_v1_SelfSubjectReview_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_authentication_v1_SelfSubjectReview_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_authentication_v1_SelfSubjectReview_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_authentication_v1_SelfSubjectReview_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_authentication_v1_SelfSubjectReview_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_authentication_v1_SelfSubjectReview_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_authentication_v1_SelfSubjectReview_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_authentication_v1_SelfSubjectReview_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_authentication_v1_SelfSubjectReview_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_authentication_v1_SelfSubjectReview_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_authentication_v1_SelfSubjectReview_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_authentication_v1_SelfSubjectReview_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_authentication_v1_SelfSubjectReview_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_authentication_v1_SelfSubjectReview_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_authentication_v1_SelfSubjectReview_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_authentication_v1_SelfSubjectReview_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_authentication_v1_SelfSubjectReview_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_authentication_v1_SelfSubjectReview_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_authentication_v1_SelfSubjectReview_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_authentication_v1_SelfSubjectReview_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_authentication_v1_SelfSubjectReview_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_authentication_v1_SelfSubjectReview_status {doc 'Status is filled in by the server with the user attributes'}
						optional
							io_k8s_api_authentication_v1_SelfSubjectReview_status_userInfo {doc 'User attributes of the user making this request'}
								optional
									io_k8s_api_authentication_v1_SelfSubjectReview_status_userInfo_extra cardinality [1..*] {doc 'Any additional information provided by the authenticator'}
										mandatory
											String io_k8s_api_authentication_v1_SelfSubjectReview_status_userInfo_extra_StringValueAdditional {doc 'Added String mandatory for complete structure Array in the model into AdditionalProperties array Array of Strings: StringValue'}
									io_k8s_api_authentication_v1_SelfSubjectReview_status_userInfo_groups cardinality [1..*] {doc 'The names of groups this user is a part of'}
										mandatory
											String io_k8s_api_authentication_v1_SelfSubjectReview_status_userInfo_groups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_authentication_v1_SelfSubjectReview_status_userInfo_uid {doc 'A unique value that identifies this user across time If this user is deleted and another user by the same name is added, they will have different UIDs'}
									String io_k8s_api_authentication_v1_SelfSubjectReview_status_userInfo_username {doc 'The name that uniquely identifies this user among all active users'}
			io_k8s_api_authentication_v1_SelfSubjectReviewStatus {doc 'SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user'}
				optional
					io_k8s_api_authentication_v1_SelfSubjectReviewStatus_userInfo {doc 'User attributes of the user making this request'}
						optional
							io_k8s_api_authentication_v1_SelfSubjectReviewStatus_userInfo_extra cardinality [1..*] {doc 'Any additional information provided by the authenticator'}
								mandatory
									String io_k8s_api_authentication_v1_SelfSubjectReviewStatus_userInfo_extra_StringValueAdditional {doc 'Added String mandatory for complete structure Array in the model into AdditionalProperties array Array of Strings: StringValue'}
							io_k8s_api_authentication_v1_SelfSubjectReviewStatus_userInfo_groups cardinality [1..*] {doc 'The names of groups this user is a part of'}
								mandatory
									String io_k8s_api_authentication_v1_SelfSubjectReviewStatus_userInfo_groups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_authentication_v1_SelfSubjectReviewStatus_userInfo_uid {doc 'A unique value that identifies this user across time If this user is deleted and another user by the same name is added, they will have different UIDs'}
							String io_k8s_api_authentication_v1_SelfSubjectReviewStatus_userInfo_username {doc 'The name that uniquely identifies this user among all active users'}
			io_k8s_api_authentication_v1_TokenRequest {doc 'TokenRequest requests a token for a given service account'}
				mandatory
					io_k8s_api_authentication_v1_TokenRequest_spec {doc 'Spec holds information about the request being evaluated'}
						mandatory
							io_k8s_api_authentication_v1_TokenRequest_spec_audiences cardinality [1..*] {doc 'Audiences are the intendend audiences of the token A recipient of a token must identify themself with an identifier in the list of audiences of the token, and otherwise should reject the token A token issued for multiple audiences may be used to authenticate against any of the audiences listed but implies a high degree of trust between the target audiences'}
								mandatory
									String io_k8s_api_authentication_v1_TokenRequest_spec_audiences_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							io_k8s_api_authentication_v1_TokenRequest_spec_boundObjectRef {doc 'BoundObjectRef is a reference to an object that the token will be bound to The token will only be valid for as long as the bound object exists NOTE: The API server_s TokenReview endpoint will validate the BoundObjectRef, but other audiences may not Keep ExpirationSeconds small if you want prompt revocation'}
								optional
									String io_k8s_api_authentication_v1_TokenRequest_spec_boundObjectRef_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_authentication_v1_TokenRequest_spec_boundObjectRef_kind {doc 'Kind of the referent Valid kinds are _Pod_ and _Secret_'}
									String io_k8s_api_authentication_v1_TokenRequest_spec_boundObjectRef_name {doc 'Name of the referent'}
									String io_k8s_api_authentication_v1_TokenRequest_spec_boundObjectRef_uid {doc 'UID of the referent'}
							Integer io_k8s_api_authentication_v1_TokenRequest_spec_expirationSeconds {doc 'ExpirationSeconds is the requested duration of validity of the request The token issuer may return a token with a different validity duration so a client needs to check the _expiration_ field in a response'}
				optional
					String io_k8s_api_authentication_v1_TokenRequest_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_authentication_v1_TokenRequest_kind {default 'TokenRequest', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_authentication_v1_TokenRequest_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_authentication_v1_TokenRequest_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_authentication_v1_TokenRequest_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_authentication_v1_TokenRequest_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_authentication_v1_TokenRequest_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_authentication_v1_TokenRequest_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_authentication_v1_TokenRequest_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_authentication_v1_TokenRequest_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_authentication_v1_TokenRequest_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_authentication_v1_TokenRequest_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_authentication_v1_TokenRequest_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_authentication_v1_TokenRequest_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_authentication_v1_TokenRequest_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_authentication_v1_TokenRequest_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_authentication_v1_TokenRequest_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_authentication_v1_TokenRequest_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_authentication_v1_TokenRequest_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_authentication_v1_TokenRequest_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_authentication_v1_TokenRequest_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_authentication_v1_TokenRequest_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_authentication_v1_TokenRequest_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_authentication_v1_TokenRequest_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_authentication_v1_TokenRequest_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_authentication_v1_TokenRequest_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_authentication_v1_TokenRequest_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_authentication_v1_TokenRequest_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_authentication_v1_TokenRequest_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_authentication_v1_TokenRequest_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_authentication_v1_TokenRequest_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_authentication_v1_TokenRequest_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_authentication_v1_TokenRequest_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_authentication_v1_TokenRequest_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_authentication_v1_TokenRequest_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_authentication_v1_TokenRequest_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_authentication_v1_TokenRequest_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_authentication_v1_TokenRequest_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_authentication_v1_TokenRequest_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_authentication_v1_TokenRequest_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_authentication_v1_TokenRequest_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_authentication_v1_TokenRequest_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_authentication_v1_TokenRequest_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_authentication_v1_TokenRequest_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_authentication_v1_TokenRequest_status {doc 'Status is filled in by the server and indicates whether the token can be authenticated'}
						mandatory
							io_k8s_api_authentication_v1_TokenRequest_status_expirationTimestamp {doc 'ExpirationTimestamp is the time of expiration of the returned token'}
								optional
									String io_k8s_api_authentication_v1_TokenRequest_status_expirationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_authentication_v1_TokenRequest_status_token {doc 'Token is the opaque bearer token'}
			io_k8s_api_authentication_v1_TokenRequestSpec {doc 'TokenRequestSpec contains client provided parameters of a token request'}
				mandatory
					io_k8s_api_authentication_v1_TokenRequestSpec_audiences cardinality [1..*] {doc 'Audiences are the intendend audiences of the token A recipient of a token must identify themself with an identifier in the list of audiences of the token, and otherwise should reject the token A token issued for multiple audiences may be used to authenticate against any of the audiences listed but implies a high degree of trust between the target audiences'}
						mandatory
							String io_k8s_api_authentication_v1_TokenRequestSpec_audiences_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					io_k8s_api_authentication_v1_TokenRequestSpec_boundObjectRef {doc 'BoundObjectRef is a reference to an object that the token will be bound to The token will only be valid for as long as the bound object exists NOTE: The API server_s TokenReview endpoint will validate the BoundObjectRef, but other audiences may not Keep ExpirationSeconds small if you want prompt revocation'}
						optional
							String io_k8s_api_authentication_v1_TokenRequestSpec_boundObjectRef_apiVersion {doc 'API version of the referent'}
							String io_k8s_api_authentication_v1_TokenRequestSpec_boundObjectRef_kind {doc 'Kind of the referent Valid kinds are _Pod_ and _Secret_'}
							String io_k8s_api_authentication_v1_TokenRequestSpec_boundObjectRef_name {doc 'Name of the referent'}
							String io_k8s_api_authentication_v1_TokenRequestSpec_boundObjectRef_uid {doc 'UID of the referent'}
					Integer io_k8s_api_authentication_v1_TokenRequestSpec_expirationSeconds {doc 'ExpirationSeconds is the requested duration of validity of the request The token issuer may return a token with a different validity duration so a client needs to check the _expiration_ field in a response'}
			io_k8s_api_authentication_v1_TokenRequestStatus {doc 'TokenRequestStatus is the result of a token request'}
				mandatory
					io_k8s_api_authentication_v1_TokenRequestStatus_expirationTimestamp {doc 'ExpirationTimestamp is the time of expiration of the returned token'}
						optional
							String io_k8s_api_authentication_v1_TokenRequestStatus_expirationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_api_authentication_v1_TokenRequestStatus_token {doc 'Token is the opaque bearer token'}
			io_k8s_api_authentication_v1_TokenReview {doc 'TokenReview attempts to authenticate a token to a known user Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver'}
				mandatory
					io_k8s_api_authentication_v1_TokenReview_spec {doc 'Spec holds information about the request being evaluated'}
						optional
							io_k8s_api_authentication_v1_TokenReview_spec_audiences cardinality [1..*] {doc 'Audiences is a list of the identifiers that the resource server presented with the token identifies as Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver'}
								mandatory
									String io_k8s_api_authentication_v1_TokenReview_spec_audiences_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_authentication_v1_TokenReview_spec_token {doc 'Token is the opaque bearer token'}
				optional
					String io_k8s_api_authentication_v1_TokenReview_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_authentication_v1_TokenReview_kind {default 'TokenReview', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_authentication_v1_TokenReview_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_authentication_v1_TokenReview_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_authentication_v1_TokenReview_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_authentication_v1_TokenReview_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_authentication_v1_TokenReview_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_authentication_v1_TokenReview_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_authentication_v1_TokenReview_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_authentication_v1_TokenReview_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_authentication_v1_TokenReview_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_authentication_v1_TokenReview_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_authentication_v1_TokenReview_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_authentication_v1_TokenReview_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_authentication_v1_TokenReview_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_authentication_v1_TokenReview_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_authentication_v1_TokenReview_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_authentication_v1_TokenReview_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_authentication_v1_TokenReview_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_authentication_v1_TokenReview_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_authentication_v1_TokenReview_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_authentication_v1_TokenReview_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_authentication_v1_TokenReview_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_authentication_v1_TokenReview_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_authentication_v1_TokenReview_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_authentication_v1_TokenReview_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_authentication_v1_TokenReview_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_authentication_v1_TokenReview_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_authentication_v1_TokenReview_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_authentication_v1_TokenReview_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_authentication_v1_TokenReview_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_authentication_v1_TokenReview_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_authentication_v1_TokenReview_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_authentication_v1_TokenReview_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_authentication_v1_TokenReview_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_authentication_v1_TokenReview_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_authentication_v1_TokenReview_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_authentication_v1_TokenReview_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_authentication_v1_TokenReview_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_authentication_v1_TokenReview_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_authentication_v1_TokenReview_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_authentication_v1_TokenReview_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_authentication_v1_TokenReview_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_authentication_v1_TokenReview_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_authentication_v1_TokenReview_status {doc 'Status is filled in by the server and indicates whether the request can be authenticated'}
						optional
							io_k8s_api_authentication_v1_TokenReview_status_audiences cardinality [1..*] {doc 'Audiences are audience identifiers chosen by the authenticator that are compatible with both the TokenReview and token An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token_s audiences A client of the TokenReview API that sets the specaudiences field should validate that a compatible audience identifier is returned in the statusaudiences field to ensure that the TokenReview server is audience aware If a TokenReview returns an empty statusaudience field where statusauthenticated is true, the token is valid against the audience of the Kubernetes API server'}
								mandatory
									String io_k8s_api_authentication_v1_TokenReview_status_audiences_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_authentication_v1_TokenReview_status_authenticated {doc 'Authenticated indicates that the token was associated with a known user'}
							String io_k8s_api_authentication_v1_TokenReview_status_error {doc 'Error indicates that the token couldn_t be checked'}
							io_k8s_api_authentication_v1_TokenReview_status_user {doc 'User is the UserInfo associated with the provided token'}
								optional
									io_k8s_api_authentication_v1_TokenReview_status_user_extra cardinality [1..*] {doc 'Any additional information provided by the authenticator'}
										mandatory
											String io_k8s_api_authentication_v1_TokenReview_status_user_extra_StringValueAdditional {doc 'Added String mandatory for complete structure Array in the model into AdditionalProperties array Array of Strings: StringValue'}
									io_k8s_api_authentication_v1_TokenReview_status_user_groups cardinality [1..*] {doc 'The names of groups this user is a part of'}
										mandatory
											String io_k8s_api_authentication_v1_TokenReview_status_user_groups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_authentication_v1_TokenReview_status_user_uid {doc 'A unique value that identifies this user across time If this user is deleted and another user by the same name is added, they will have different UIDs'}
									String io_k8s_api_authentication_v1_TokenReview_status_user_username {doc 'The name that uniquely identifies this user among all active users'}
			io_k8s_api_authentication_v1_TokenReviewSpec {doc 'TokenReviewSpec is a description of the token authentication request'}
				optional
					io_k8s_api_authentication_v1_TokenReviewSpec_audiences cardinality [1..*] {doc 'Audiences is a list of the identifiers that the resource server presented with the token identifies as Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver'}
						mandatory
							String io_k8s_api_authentication_v1_TokenReviewSpec_audiences_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					String io_k8s_api_authentication_v1_TokenReviewSpec_token {doc 'Token is the opaque bearer token'}
			io_k8s_api_authentication_v1_TokenReviewStatus {doc 'TokenReviewStatus is the result of the token authentication request'}
				optional
					io_k8s_api_authentication_v1_TokenReviewStatus_audiences cardinality [1..*] {doc 'Audiences are audience identifiers chosen by the authenticator that are compatible with both the TokenReview and token An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token_s audiences A client of the TokenReview API that sets the specaudiences field should validate that a compatible audience identifier is returned in the statusaudiences field to ensure that the TokenReview server is audience aware If a TokenReview returns an empty statusaudience field where statusauthenticated is true, the token is valid against the audience of the Kubernetes API server'}
						mandatory
							String io_k8s_api_authentication_v1_TokenReviewStatus_audiences_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_authentication_v1_TokenReviewStatus_authenticated {doc 'Authenticated indicates that the token was associated with a known user'}
					String io_k8s_api_authentication_v1_TokenReviewStatus_error {doc 'Error indicates that the token couldn_t be checked'}
					io_k8s_api_authentication_v1_TokenReviewStatus_user {doc 'User is the UserInfo associated with the provided token'}
						optional
							io_k8s_api_authentication_v1_TokenReviewStatus_user_extra cardinality [1..*] {doc 'Any additional information provided by the authenticator'}
								mandatory
									String io_k8s_api_authentication_v1_TokenReviewStatus_user_extra_StringValueAdditional {doc 'Added String mandatory for complete structure Array in the model into AdditionalProperties array Array of Strings: StringValue'}
							io_k8s_api_authentication_v1_TokenReviewStatus_user_groups cardinality [1..*] {doc 'The names of groups this user is a part of'}
								mandatory
									String io_k8s_api_authentication_v1_TokenReviewStatus_user_groups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_authentication_v1_TokenReviewStatus_user_uid {doc 'A unique value that identifies this user across time If this user is deleted and another user by the same name is added, they will have different UIDs'}
							String io_k8s_api_authentication_v1_TokenReviewStatus_user_username {doc 'The name that uniquely identifies this user among all active users'}
			io_k8s_api_authentication_v1_UserInfo {doc 'UserInfo holds the information about the user needed to implement the userInfo interface'}
				optional
					io_k8s_api_authentication_v1_UserInfo_extra cardinality [1..*] {doc 'Any additional information provided by the authenticator'}
						mandatory
							String io_k8s_api_authentication_v1_UserInfo_extra_StringValueAdditional {doc 'Added String mandatory for complete structure Array in the model into AdditionalProperties array Array of Strings: StringValue'}
					io_k8s_api_authentication_v1_UserInfo_groups cardinality [1..*] {doc 'The names of groups this user is a part of'}
						mandatory
							String io_k8s_api_authentication_v1_UserInfo_groups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					String io_k8s_api_authentication_v1_UserInfo_uid {doc 'A unique value that identifies this user across time If this user is deleted and another user by the same name is added, they will have different UIDs'}
					String io_k8s_api_authentication_v1_UserInfo_username {doc 'The name that uniquely identifies this user among all active users'}
			io_k8s_api_authentication_v1alpha1_SelfSubjectReview {doc 'SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request When using impersonation, users will receive the user info of the user being impersonated  If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase'}
				optional
					String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_kind {default 'SelfSubjectReview', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_authentication_v1alpha1_SelfSubjectReview_status {doc 'Status is filled in by the server with the user attributes'}
						optional
							io_k8s_api_authentication_v1alpha1_SelfSubjectReview_status_userInfo {doc 'User attributes of the user making this request'}
								optional
									io_k8s_api_authentication_v1alpha1_SelfSubjectReview_status_userInfo_extra cardinality [1..*] {doc 'Any additional information provided by the authenticator'}
										mandatory
											String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_status_userInfo_extra_StringValueAdditional {doc 'Added String mandatory for complete structure Array in the model into AdditionalProperties array Array of Strings: StringValue'}
									io_k8s_api_authentication_v1alpha1_SelfSubjectReview_status_userInfo_groups cardinality [1..*] {doc 'The names of groups this user is a part of'}
										mandatory
											String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_status_userInfo_groups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_status_userInfo_uid {doc 'A unique value that identifies this user across time If this user is deleted and another user by the same name is added, they will have different UIDs'}
									String io_k8s_api_authentication_v1alpha1_SelfSubjectReview_status_userInfo_username {doc 'The name that uniquely identifies this user among all active users'}
			io_k8s_api_authentication_v1alpha1_SelfSubjectReviewStatus {doc 'SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user'}
				optional
					io_k8s_api_authentication_v1alpha1_SelfSubjectReviewStatus_userInfo {doc 'User attributes of the user making this request'}
						optional
							io_k8s_api_authentication_v1alpha1_SelfSubjectReviewStatus_userInfo_extra cardinality [1..*] {doc 'Any additional information provided by the authenticator'}
								mandatory
									String io_k8s_api_authentication_v1alpha1_SelfSubjectReviewStatus_userInfo_extra_StringValueAdditional {doc 'Added String mandatory for complete structure Array in the model into AdditionalProperties array Array of Strings: StringValue'}
							io_k8s_api_authentication_v1alpha1_SelfSubjectReviewStatus_userInfo_groups cardinality [1..*] {doc 'The names of groups this user is a part of'}
								mandatory
									String io_k8s_api_authentication_v1alpha1_SelfSubjectReviewStatus_userInfo_groups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_authentication_v1alpha1_SelfSubjectReviewStatus_userInfo_uid {doc 'A unique value that identifies this user across time If this user is deleted and another user by the same name is added, they will have different UIDs'}
							String io_k8s_api_authentication_v1alpha1_SelfSubjectReviewStatus_userInfo_username {doc 'The name that uniquely identifies this user among all active users'}
			io_k8s_api_authentication_v1beta1_SelfSubjectReview {doc 'SelfSubjectReview contains the user information that the kube-apiserver has about the user making this request When using impersonation, users will receive the user info of the user being impersonated  If impersonation or request header authentication is used, any extra keys will have their case ignored and returned as lowercase'}
				optional
					String io_k8s_api_authentication_v1beta1_SelfSubjectReview_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_authentication_v1beta1_SelfSubjectReview_kind {default 'SelfSubjectReview', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_authentication_v1beta1_SelfSubjectReview_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_authentication_v1beta1_SelfSubjectReview_status {doc 'Status is filled in by the server with the user attributes'}
						optional
							io_k8s_api_authentication_v1beta1_SelfSubjectReview_status_userInfo {doc 'User attributes of the user making this request'}
								optional
									io_k8s_api_authentication_v1beta1_SelfSubjectReview_status_userInfo_extra cardinality [1..*] {doc 'Any additional information provided by the authenticator'}
										mandatory
											String io_k8s_api_authentication_v1beta1_SelfSubjectReview_status_userInfo_extra_StringValueAdditional {doc 'Added String mandatory for complete structure Array in the model into AdditionalProperties array Array of Strings: StringValue'}
									io_k8s_api_authentication_v1beta1_SelfSubjectReview_status_userInfo_groups cardinality [1..*] {doc 'The names of groups this user is a part of'}
										mandatory
											String io_k8s_api_authentication_v1beta1_SelfSubjectReview_status_userInfo_groups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_authentication_v1beta1_SelfSubjectReview_status_userInfo_uid {doc 'A unique value that identifies this user across time If this user is deleted and another user by the same name is added, they will have different UIDs'}
									String io_k8s_api_authentication_v1beta1_SelfSubjectReview_status_userInfo_username {doc 'The name that uniquely identifies this user among all active users'}
			io_k8s_api_authentication_v1beta1_SelfSubjectReviewStatus {doc 'SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user'}
				optional
					io_k8s_api_authentication_v1beta1_SelfSubjectReviewStatus_userInfo {doc 'User attributes of the user making this request'}
						optional
							io_k8s_api_authentication_v1beta1_SelfSubjectReviewStatus_userInfo_extra cardinality [1..*] {doc 'Any additional information provided by the authenticator'}
								mandatory
									String io_k8s_api_authentication_v1beta1_SelfSubjectReviewStatus_userInfo_extra_StringValueAdditional {doc 'Added String mandatory for complete structure Array in the model into AdditionalProperties array Array of Strings: StringValue'}
							io_k8s_api_authentication_v1beta1_SelfSubjectReviewStatus_userInfo_groups cardinality [1..*] {doc 'The names of groups this user is a part of'}
								mandatory
									String io_k8s_api_authentication_v1beta1_SelfSubjectReviewStatus_userInfo_groups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_authentication_v1beta1_SelfSubjectReviewStatus_userInfo_uid {doc 'A unique value that identifies this user across time If this user is deleted and another user by the same name is added, they will have different UIDs'}
							String io_k8s_api_authentication_v1beta1_SelfSubjectReviewStatus_userInfo_username {doc 'The name that uniquely identifies this user among all active users'}
			io_k8s_api_authorization_v1_LocalSubjectAccessReview {doc 'LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking'}
				mandatory
					io_k8s_api_authorization_v1_LocalSubjectAccessReview_spec {doc 'Spec holds information about the request being evaluated  specnamespace must be equal to the namespace you made the request against  If empty, it is defaulted'}
						optional
							io_k8s_api_authorization_v1_LocalSubjectAccessReview_spec_extra cardinality [1..*] {doc 'Extra corresponds to the userInfoGetExtra() method from the authenticator  Since that is input to the authorizer it needs a reflection here'}
								mandatory
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_spec_extra_StringValueAdditional {doc 'Added String mandatory for complete structure Array in the model into AdditionalProperties array Array of Strings: StringValue'}
							io_k8s_api_authorization_v1_LocalSubjectAccessReview_spec_groups cardinality [1..*] {doc 'Groups is the groups you_re testing for'}
								mandatory
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_spec_groups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_authorization_v1_LocalSubjectAccessReview_spec_nonResourceAttributes {doc 'NonResourceAttributes describes information for a non-resource access request'}
								optional
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_spec_nonResourceAttributes_path {doc 'Path is the URL path of the request'}
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_spec_nonResourceAttributes_verb {doc 'Verb is the standard HTTP verb'}
							io_k8s_api_authorization_v1_LocalSubjectAccessReview_spec_resourceAttributes {doc 'ResourceAuthorizationAttributes describes information for a resource access request'}
								optional
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_spec_resourceAttributes_group {doc 'Group is the API Group of the Resource  * means all'}
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_spec_resourceAttributes_name {doc 'Name is the name of the resource being requested for a get or deleted for a delete  (empty) means all'}
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_spec_resourceAttributes_namespace {doc 'Namespace is the namespace of the action being requested  Currently, there is no distinction between no namespace and all namespaces  (empty) is defaulted for LocalSubjectAccessReviews  (empty) is empty for cluster-scoped resources  (empty) means all for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview'}
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_spec_resourceAttributes_resource {doc 'Resource is one of the existing resource types  * means all'}
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_spec_resourceAttributes_subresource {doc 'Subresource is one of the existing resource types   means none'}
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_spec_resourceAttributes_verb {doc 'Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy  * means all'}
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_spec_resourceAttributes_version {doc 'Version is the API Version of the Resource  * means all'}
							String io_k8s_api_authorization_v1_LocalSubjectAccessReview_spec_uid {doc 'UID information about the requesting user'}
							String io_k8s_api_authorization_v1_LocalSubjectAccessReview_spec_user {doc 'User is the user you_re testing for If you specify User but not Groups, then is it interpreted as What if User were not a member of any groups'}
				optional
					String io_k8s_api_authorization_v1_LocalSubjectAccessReview_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_authorization_v1_LocalSubjectAccessReview_kind {default 'LocalSubjectAccessReview', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_authorization_v1_LocalSubjectAccessReview_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_authorization_v1_LocalSubjectAccessReview_status {doc 'Status is filled in by the server and indicates whether the request is allowed or not'}
						mandatory
							io_k8s_api_authorization_v1_LocalSubjectAccessReview_status_allowed {doc 'Allowed is required True if the action would be allowed, false otherwise'}
						optional
							io_k8s_api_authorization_v1_LocalSubjectAccessReview_status_denied {doc 'Denied is optional True if the action would be denied, otherwise false If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action Denied may not be true if Allowed is true'}
							String io_k8s_api_authorization_v1_LocalSubjectAccessReview_status_evaluationError {doc 'EvaluationError is an indication that some error occurred during the authorization check It is entirely possible to get an error and be able to continue determine authorization status in spite of it For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request'}
							String io_k8s_api_authorization_v1_LocalSubjectAccessReview_status_reason {doc 'Reason is optional  It indicates why a request was allowed or denied'}
			io_k8s_api_authorization_v1_NonResourceAttributes {doc 'NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface'}
				optional
					String io_k8s_api_authorization_v1_NonResourceAttributes_path {doc 'Path is the URL path of the request'}
					String io_k8s_api_authorization_v1_NonResourceAttributes_verb {doc 'Verb is the standard HTTP verb'}
			io_k8s_api_authorization_v1_NonResourceRule {doc 'NonResourceRule holds information that describes a rule for the non-resource'}
				mandatory
					io_k8s_api_authorization_v1_NonResourceRule_verbs cardinality [1..*] {doc 'Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options  * means all'}
						mandatory
							String io_k8s_api_authorization_v1_NonResourceRule_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					io_k8s_api_authorization_v1_NonResourceRule_nonResourceURLs cardinality [1..*] {doc 'NonResourceURLs is a set of partial urls that a user should have access to  *s are allowed, but only as the full, final step in the path  * means all'}
						mandatory
							String io_k8s_api_authorization_v1_NonResourceRule_nonResourceURLs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_authorization_v1_ResourceAttributes {doc 'ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface'}
				optional
					String io_k8s_api_authorization_v1_ResourceAttributes_group {doc 'Group is the API Group of the Resource  * means all'}
					String io_k8s_api_authorization_v1_ResourceAttributes_name {doc 'Name is the name of the resource being requested for a get or deleted for a delete  (empty) means all'}
					String io_k8s_api_authorization_v1_ResourceAttributes_namespace {doc 'Namespace is the namespace of the action being requested  Currently, there is no distinction between no namespace and all namespaces  (empty) is defaulted for LocalSubjectAccessReviews  (empty) is empty for cluster-scoped resources  (empty) means all for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview'}
					String io_k8s_api_authorization_v1_ResourceAttributes_resource {doc 'Resource is one of the existing resource types  * means all'}
					String io_k8s_api_authorization_v1_ResourceAttributes_subresource {doc 'Subresource is one of the existing resource types   means none'}
					String io_k8s_api_authorization_v1_ResourceAttributes_verb {doc 'Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy  * means all'}
					String io_k8s_api_authorization_v1_ResourceAttributes_version {doc 'Version is the API Version of the Resource  * means all'}
			io_k8s_api_authorization_v1_ResourceRule {doc 'ResourceRule is the list of actions the subject is allowed to perform on resources The list ordering isn_t significant, may contain duplicates, and possibly be incomplete'}
				mandatory
					io_k8s_api_authorization_v1_ResourceRule_verbs cardinality [1..*] {doc 'Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy  * means all'}
						mandatory
							String io_k8s_api_authorization_v1_ResourceRule_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					io_k8s_api_authorization_v1_ResourceRule_apiGroups cardinality [1..*] {doc 'APIGroups is the name of the APIGroup that contains the resources  If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed  * means all'}
						mandatory
							String io_k8s_api_authorization_v1_ResourceRule_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_authorization_v1_ResourceRule_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed  * means all'}
						mandatory
							String io_k8s_api_authorization_v1_ResourceRule_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_authorization_v1_ResourceRule_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies to  * means all in the specified apiGroups */foo represents the subresource _foo_ for all resources in the specified apiGroups'}
						mandatory
							String io_k8s_api_authorization_v1_ResourceRule_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_authorization_v1_SelfSubjectAccessReview {doc 'SelfSubjectAccessReview checks whether or the current user can perform an action  Not filling in a specnamespace means in all namespaces  Self is a special case, because users should always be able to check whether they can perform an action'}
				mandatory
					io_k8s_api_authorization_v1_SelfSubjectAccessReview_spec {doc 'Spec holds information about the request being evaluated  user and groups must be empty'}
						optional
							io_k8s_api_authorization_v1_SelfSubjectAccessReview_spec_nonResourceAttributes {doc 'NonResourceAttributes describes information for a non-resource access request'}
								optional
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_spec_nonResourceAttributes_path {doc 'Path is the URL path of the request'}
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_spec_nonResourceAttributes_verb {doc 'Verb is the standard HTTP verb'}
							io_k8s_api_authorization_v1_SelfSubjectAccessReview_spec_resourceAttributes {doc 'ResourceAuthorizationAttributes describes information for a resource access request'}
								optional
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_spec_resourceAttributes_group {doc 'Group is the API Group of the Resource  * means all'}
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_spec_resourceAttributes_name {doc 'Name is the name of the resource being requested for a get or deleted for a delete  (empty) means all'}
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_spec_resourceAttributes_namespace {doc 'Namespace is the namespace of the action being requested  Currently, there is no distinction between no namespace and all namespaces  (empty) is defaulted for LocalSubjectAccessReviews  (empty) is empty for cluster-scoped resources  (empty) means all for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview'}
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_spec_resourceAttributes_resource {doc 'Resource is one of the existing resource types  * means all'}
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_spec_resourceAttributes_subresource {doc 'Subresource is one of the existing resource types   means none'}
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_spec_resourceAttributes_verb {doc 'Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy  * means all'}
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_spec_resourceAttributes_version {doc 'Version is the API Version of the Resource  * means all'}
				optional
					String io_k8s_api_authorization_v1_SelfSubjectAccessReview_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_authorization_v1_SelfSubjectAccessReview_kind {default 'SelfSubjectAccessReview', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_authorization_v1_SelfSubjectAccessReview_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_authorization_v1_SelfSubjectAccessReview_status {doc 'Status is filled in by the server and indicates whether the request is allowed or not'}
						mandatory
							io_k8s_api_authorization_v1_SelfSubjectAccessReview_status_allowed {doc 'Allowed is required True if the action would be allowed, false otherwise'}
						optional
							io_k8s_api_authorization_v1_SelfSubjectAccessReview_status_denied {doc 'Denied is optional True if the action would be denied, otherwise false If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action Denied may not be true if Allowed is true'}
							String io_k8s_api_authorization_v1_SelfSubjectAccessReview_status_evaluationError {doc 'EvaluationError is an indication that some error occurred during the authorization check It is entirely possible to get an error and be able to continue determine authorization status in spite of it For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request'}
							String io_k8s_api_authorization_v1_SelfSubjectAccessReview_status_reason {doc 'Reason is optional  It indicates why a request was allowed or denied'}
			io_k8s_api_authorization_v1_SelfSubjectAccessReviewSpec {doc 'SelfSubjectAccessReviewSpec is a description of the access request  Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set'}
				optional
					io_k8s_api_authorization_v1_SelfSubjectAccessReviewSpec_nonResourceAttributes {doc 'NonResourceAttributes describes information for a non-resource access request'}
						optional
							String io_k8s_api_authorization_v1_SelfSubjectAccessReviewSpec_nonResourceAttributes_path {doc 'Path is the URL path of the request'}
							String io_k8s_api_authorization_v1_SelfSubjectAccessReviewSpec_nonResourceAttributes_verb {doc 'Verb is the standard HTTP verb'}
					io_k8s_api_authorization_v1_SelfSubjectAccessReviewSpec_resourceAttributes {doc 'ResourceAuthorizationAttributes describes information for a resource access request'}
						optional
							String io_k8s_api_authorization_v1_SelfSubjectAccessReviewSpec_resourceAttributes_group {doc 'Group is the API Group of the Resource  * means all'}
							String io_k8s_api_authorization_v1_SelfSubjectAccessReviewSpec_resourceAttributes_name {doc 'Name is the name of the resource being requested for a get or deleted for a delete  (empty) means all'}
							String io_k8s_api_authorization_v1_SelfSubjectAccessReviewSpec_resourceAttributes_namespace {doc 'Namespace is the namespace of the action being requested  Currently, there is no distinction between no namespace and all namespaces  (empty) is defaulted for LocalSubjectAccessReviews  (empty) is empty for cluster-scoped resources  (empty) means all for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview'}
							String io_k8s_api_authorization_v1_SelfSubjectAccessReviewSpec_resourceAttributes_resource {doc 'Resource is one of the existing resource types  * means all'}
							String io_k8s_api_authorization_v1_SelfSubjectAccessReviewSpec_resourceAttributes_subresource {doc 'Subresource is one of the existing resource types   means none'}
							String io_k8s_api_authorization_v1_SelfSubjectAccessReviewSpec_resourceAttributes_verb {doc 'Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy  * means all'}
							String io_k8s_api_authorization_v1_SelfSubjectAccessReviewSpec_resourceAttributes_version {doc 'Version is the API Version of the Resource  * means all'}
			io_k8s_api_authorization_v1_SelfSubjectRulesReview {doc 'SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace The returned list of actions may be incomplete depending on the server_s authorization mode, and any errors experienced during the evaluation SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server'}
				mandatory
					io_k8s_api_authorization_v1_SelfSubjectRulesReview_spec {doc 'Spec holds information about the request being evaluated'}
						mandatory
							String io_k8s_api_authorization_v1_SelfSubjectRulesReview_spec_namespace {doc 'Namespace to evaluate rules for Required'}
				optional
					String io_k8s_api_authorization_v1_SelfSubjectRulesReview_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_authorization_v1_SelfSubjectRulesReview_kind {default 'SelfSubjectRulesReview', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_authorization_v1_SelfSubjectRulesReview_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_authorization_v1_SelfSubjectRulesReview_status {doc 'Status is filled in by the server and indicates the set of actions a user can perform'}
						mandatory
							io_k8s_api_authorization_v1_SelfSubjectRulesReview_status_incomplete {doc 'Incomplete is true when the rules returned by this call are incomplete This is most commonly encountered when an authorizer, such as an external authorizer, doesn_t support rules evaluation'}
							io_k8s_api_authorization_v1_SelfSubjectRulesReview_status_nonResourceRules cardinality [1..*] {doc 'NonResourceRules is the list of actions the subject is allowed to perform on non-resources The list ordering isn_t significant, may contain duplicates, and possibly be incomplete'}
								mandatory
									io_k8s_api_authorization_v1_SelfSubjectRulesReview_status_nonResourceRules_verbs cardinality [1..*] {doc 'Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options  * means all'}
										mandatory
											String io_k8s_api_authorization_v1_SelfSubjectRulesReview_status_nonResourceRules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_authorization_v1_SelfSubjectRulesReview_status_nonResourceRules_nonResourceURLs cardinality [1..*] {doc 'NonResourceURLs is a set of partial urls that a user should have access to  *s are allowed, but only as the full, final step in the path  * means all'}
										mandatory
											String io_k8s_api_authorization_v1_SelfSubjectRulesReview_status_nonResourceRules_nonResourceURLs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_authorization_v1_SelfSubjectRulesReview_status_resourceRules cardinality [1..*] {doc 'ResourceRules is the list of actions the subject is allowed to perform on resources The list ordering isn_t significant, may contain duplicates, and possibly be incomplete'}
								mandatory
									io_k8s_api_authorization_v1_SelfSubjectRulesReview_status_resourceRules_verbs cardinality [1..*] {doc 'Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy  * means all'}
										mandatory
											String io_k8s_api_authorization_v1_SelfSubjectRulesReview_status_resourceRules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_authorization_v1_SelfSubjectRulesReview_status_resourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the name of the APIGroup that contains the resources  If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed  * means all'}
										mandatory
											String io_k8s_api_authorization_v1_SelfSubjectRulesReview_status_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_authorization_v1_SelfSubjectRulesReview_status_resourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed  * means all'}
										mandatory
											String io_k8s_api_authorization_v1_SelfSubjectRulesReview_status_resourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_authorization_v1_SelfSubjectRulesReview_status_resourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies to  * means all in the specified apiGroups */foo represents the subresource _foo_ for all resources in the specified apiGroups'}
										mandatory
											String io_k8s_api_authorization_v1_SelfSubjectRulesReview_status_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							String io_k8s_api_authorization_v1_SelfSubjectRulesReview_status_evaluationError {doc 'EvaluationError can appear in combination with Rules It indicates an error occurred during rule evaluation, such as an authorizer that doesn_t support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete'}
			io_k8s_api_authorization_v1_SelfSubjectRulesReviewSpec {doc 'SelfSubjectRulesReviewSpec defines the specification for SelfSubjectRulesReview'}
				mandatory
					String io_k8s_api_authorization_v1_SelfSubjectRulesReviewSpec_namespace {doc 'Namespace to evaluate rules for Required'}
			io_k8s_api_authorization_v1_SubjectAccessReview {doc 'SubjectAccessReview checks whether or not a user or group can perform an action'}
				mandatory
					io_k8s_api_authorization_v1_SubjectAccessReview_spec {doc 'Spec holds information about the request being evaluated'}
						optional
							io_k8s_api_authorization_v1_SubjectAccessReview_spec_extra cardinality [1..*] {doc 'Extra corresponds to the userInfoGetExtra() method from the authenticator  Since that is input to the authorizer it needs a reflection here'}
								mandatory
									String io_k8s_api_authorization_v1_SubjectAccessReview_spec_extra_StringValueAdditional {doc 'Added String mandatory for complete structure Array in the model into AdditionalProperties array Array of Strings: StringValue'}
							io_k8s_api_authorization_v1_SubjectAccessReview_spec_groups cardinality [1..*] {doc 'Groups is the groups you_re testing for'}
								mandatory
									String io_k8s_api_authorization_v1_SubjectAccessReview_spec_groups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_authorization_v1_SubjectAccessReview_spec_nonResourceAttributes {doc 'NonResourceAttributes describes information for a non-resource access request'}
								optional
									String io_k8s_api_authorization_v1_SubjectAccessReview_spec_nonResourceAttributes_path {doc 'Path is the URL path of the request'}
									String io_k8s_api_authorization_v1_SubjectAccessReview_spec_nonResourceAttributes_verb {doc 'Verb is the standard HTTP verb'}
							io_k8s_api_authorization_v1_SubjectAccessReview_spec_resourceAttributes {doc 'ResourceAuthorizationAttributes describes information for a resource access request'}
								optional
									String io_k8s_api_authorization_v1_SubjectAccessReview_spec_resourceAttributes_group {doc 'Group is the API Group of the Resource  * means all'}
									String io_k8s_api_authorization_v1_SubjectAccessReview_spec_resourceAttributes_name {doc 'Name is the name of the resource being requested for a get or deleted for a delete  (empty) means all'}
									String io_k8s_api_authorization_v1_SubjectAccessReview_spec_resourceAttributes_namespace {doc 'Namespace is the namespace of the action being requested  Currently, there is no distinction between no namespace and all namespaces  (empty) is defaulted for LocalSubjectAccessReviews  (empty) is empty for cluster-scoped resources  (empty) means all for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview'}
									String io_k8s_api_authorization_v1_SubjectAccessReview_spec_resourceAttributes_resource {doc 'Resource is one of the existing resource types  * means all'}
									String io_k8s_api_authorization_v1_SubjectAccessReview_spec_resourceAttributes_subresource {doc 'Subresource is one of the existing resource types   means none'}
									String io_k8s_api_authorization_v1_SubjectAccessReview_spec_resourceAttributes_verb {doc 'Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy  * means all'}
									String io_k8s_api_authorization_v1_SubjectAccessReview_spec_resourceAttributes_version {doc 'Version is the API Version of the Resource  * means all'}
							String io_k8s_api_authorization_v1_SubjectAccessReview_spec_uid {doc 'UID information about the requesting user'}
							String io_k8s_api_authorization_v1_SubjectAccessReview_spec_user {doc 'User is the user you_re testing for If you specify User but not Groups, then is it interpreted as What if User were not a member of any groups'}
				optional
					String io_k8s_api_authorization_v1_SubjectAccessReview_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_authorization_v1_SubjectAccessReview_kind {default 'SubjectAccessReview', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_authorization_v1_SubjectAccessReview_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_authorization_v1_SubjectAccessReview_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_authorization_v1_SubjectAccessReview_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_authorization_v1_SubjectAccessReview_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_authorization_v1_SubjectAccessReview_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_authorization_v1_SubjectAccessReview_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_authorization_v1_SubjectAccessReview_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_authorization_v1_SubjectAccessReview_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_authorization_v1_SubjectAccessReview_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_authorization_v1_SubjectAccessReview_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_authorization_v1_SubjectAccessReview_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_authorization_v1_SubjectAccessReview_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_authorization_v1_SubjectAccessReview_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_authorization_v1_SubjectAccessReview_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_authorization_v1_SubjectAccessReview_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_authorization_v1_SubjectAccessReview_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_authorization_v1_SubjectAccessReview_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_authorization_v1_SubjectAccessReview_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_authorization_v1_SubjectAccessReview_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_authorization_v1_SubjectAccessReview_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_authorization_v1_SubjectAccessReview_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_authorization_v1_SubjectAccessReview_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_authorization_v1_SubjectAccessReview_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_authorization_v1_SubjectAccessReview_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_authorization_v1_SubjectAccessReview_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_authorization_v1_SubjectAccessReview_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_authorization_v1_SubjectAccessReview_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_authorization_v1_SubjectAccessReview_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_authorization_v1_SubjectAccessReview_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_authorization_v1_SubjectAccessReview_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_authorization_v1_SubjectAccessReview_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_authorization_v1_SubjectAccessReview_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_authorization_v1_SubjectAccessReview_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_authorization_v1_SubjectAccessReview_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_authorization_v1_SubjectAccessReview_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_authorization_v1_SubjectAccessReview_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_authorization_v1_SubjectAccessReview_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_authorization_v1_SubjectAccessReview_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_authorization_v1_SubjectAccessReview_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_authorization_v1_SubjectAccessReview_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_authorization_v1_SubjectAccessReview_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_authorization_v1_SubjectAccessReview_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_authorization_v1_SubjectAccessReview_status {doc 'Status is filled in by the server and indicates whether the request is allowed or not'}
						mandatory
							io_k8s_api_authorization_v1_SubjectAccessReview_status_allowed {doc 'Allowed is required True if the action would be allowed, false otherwise'}
						optional
							io_k8s_api_authorization_v1_SubjectAccessReview_status_denied {doc 'Denied is optional True if the action would be denied, otherwise false If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action Denied may not be true if Allowed is true'}
							String io_k8s_api_authorization_v1_SubjectAccessReview_status_evaluationError {doc 'EvaluationError is an indication that some error occurred during the authorization check It is entirely possible to get an error and be able to continue determine authorization status in spite of it For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request'}
							String io_k8s_api_authorization_v1_SubjectAccessReview_status_reason {doc 'Reason is optional  It indicates why a request was allowed or denied'}
			io_k8s_api_authorization_v1_SubjectAccessReviewSpec {doc 'SubjectAccessReviewSpec is a description of the access request  Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set'}
				optional
					io_k8s_api_authorization_v1_SubjectAccessReviewSpec_extra cardinality [1..*] {doc 'Extra corresponds to the userInfoGetExtra() method from the authenticator  Since that is input to the authorizer it needs a reflection here'}
						mandatory
							String io_k8s_api_authorization_v1_SubjectAccessReviewSpec_extra_StringValueAdditional {doc 'Added String mandatory for complete structure Array in the model into AdditionalProperties array Array of Strings: StringValue'}
					io_k8s_api_authorization_v1_SubjectAccessReviewSpec_groups cardinality [1..*] {doc 'Groups is the groups you_re testing for'}
						mandatory
							String io_k8s_api_authorization_v1_SubjectAccessReviewSpec_groups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_authorization_v1_SubjectAccessReviewSpec_nonResourceAttributes {doc 'NonResourceAttributes describes information for a non-resource access request'}
						optional
							String io_k8s_api_authorization_v1_SubjectAccessReviewSpec_nonResourceAttributes_path {doc 'Path is the URL path of the request'}
							String io_k8s_api_authorization_v1_SubjectAccessReviewSpec_nonResourceAttributes_verb {doc 'Verb is the standard HTTP verb'}
					io_k8s_api_authorization_v1_SubjectAccessReviewSpec_resourceAttributes {doc 'ResourceAuthorizationAttributes describes information for a resource access request'}
						optional
							String io_k8s_api_authorization_v1_SubjectAccessReviewSpec_resourceAttributes_group {doc 'Group is the API Group of the Resource  * means all'}
							String io_k8s_api_authorization_v1_SubjectAccessReviewSpec_resourceAttributes_name {doc 'Name is the name of the resource being requested for a get or deleted for a delete  (empty) means all'}
							String io_k8s_api_authorization_v1_SubjectAccessReviewSpec_resourceAttributes_namespace {doc 'Namespace is the namespace of the action being requested  Currently, there is no distinction between no namespace and all namespaces  (empty) is defaulted for LocalSubjectAccessReviews  (empty) is empty for cluster-scoped resources  (empty) means all for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview'}
							String io_k8s_api_authorization_v1_SubjectAccessReviewSpec_resourceAttributes_resource {doc 'Resource is one of the existing resource types  * means all'}
							String io_k8s_api_authorization_v1_SubjectAccessReviewSpec_resourceAttributes_subresource {doc 'Subresource is one of the existing resource types   means none'}
							String io_k8s_api_authorization_v1_SubjectAccessReviewSpec_resourceAttributes_verb {doc 'Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy  * means all'}
							String io_k8s_api_authorization_v1_SubjectAccessReviewSpec_resourceAttributes_version {doc 'Version is the API Version of the Resource  * means all'}
					String io_k8s_api_authorization_v1_SubjectAccessReviewSpec_uid {doc 'UID information about the requesting user'}
					String io_k8s_api_authorization_v1_SubjectAccessReviewSpec_user {doc 'User is the user you_re testing for If you specify User but not Groups, then is it interpreted as What if User were not a member of any groups'}
			io_k8s_api_authorization_v1_SubjectAccessReviewStatus {doc 'SubjectAccessReviewStatus'}
				mandatory
					io_k8s_api_authorization_v1_SubjectAccessReviewStatus_allowed {doc 'Allowed is required True if the action would be allowed, false otherwise'}
				optional
					io_k8s_api_authorization_v1_SubjectAccessReviewStatus_denied {doc 'Denied is optional True if the action would be denied, otherwise false If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action Denied may not be true if Allowed is true'}
					String io_k8s_api_authorization_v1_SubjectAccessReviewStatus_evaluationError {doc 'EvaluationError is an indication that some error occurred during the authorization check It is entirely possible to get an error and be able to continue determine authorization status in spite of it For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request'}
					String io_k8s_api_authorization_v1_SubjectAccessReviewStatus_reason {doc 'Reason is optional  It indicates why a request was allowed or denied'}
			io_k8s_api_authorization_v1_SubjectRulesReviewStatus {doc 'SubjectRulesReviewStatus contains the result of a rules check This check can be incomplete depending on the set of authorizers the server is configured with and any errors experienced during evaluation Because authorization rules are additive, if a rule appears in a list it_s safe to assume the subject has that permission, even if that list is incomplete'}
				mandatory
					io_k8s_api_authorization_v1_SubjectRulesReviewStatus_incomplete {doc 'Incomplete is true when the rules returned by this call are incomplete This is most commonly encountered when an authorizer, such as an external authorizer, doesn_t support rules evaluation'}
					io_k8s_api_authorization_v1_SubjectRulesReviewStatus_nonResourceRules cardinality [1..*] {doc 'NonResourceRules is the list of actions the subject is allowed to perform on non-resources The list ordering isn_t significant, may contain duplicates, and possibly be incomplete'}
						mandatory
							io_k8s_api_authorization_v1_SubjectRulesReviewStatus_nonResourceRules_verbs cardinality [1..*] {doc 'Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options  * means all'}
								mandatory
									String io_k8s_api_authorization_v1_SubjectRulesReviewStatus_nonResourceRules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							io_k8s_api_authorization_v1_SubjectRulesReviewStatus_nonResourceRules_nonResourceURLs cardinality [1..*] {doc 'NonResourceURLs is a set of partial urls that a user should have access to  *s are allowed, but only as the full, final step in the path  * means all'}
								mandatory
									String io_k8s_api_authorization_v1_SubjectRulesReviewStatus_nonResourceRules_nonResourceURLs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_authorization_v1_SubjectRulesReviewStatus_resourceRules cardinality [1..*] {doc 'ResourceRules is the list of actions the subject is allowed to perform on resources The list ordering isn_t significant, may contain duplicates, and possibly be incomplete'}
						mandatory
							io_k8s_api_authorization_v1_SubjectRulesReviewStatus_resourceRules_verbs cardinality [1..*] {doc 'Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy  * means all'}
								mandatory
									String io_k8s_api_authorization_v1_SubjectRulesReviewStatus_resourceRules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							io_k8s_api_authorization_v1_SubjectRulesReviewStatus_resourceRules_apiGroups cardinality [1..*] {doc 'APIGroups is the name of the APIGroup that contains the resources  If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed  * means all'}
								mandatory
									String io_k8s_api_authorization_v1_SubjectRulesReviewStatus_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_authorization_v1_SubjectRulesReviewStatus_resourceRules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed  * means all'}
								mandatory
									String io_k8s_api_authorization_v1_SubjectRulesReviewStatus_resourceRules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_authorization_v1_SubjectRulesReviewStatus_resourceRules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies to  * means all in the specified apiGroups */foo represents the subresource _foo_ for all resources in the specified apiGroups'}
								mandatory
									String io_k8s_api_authorization_v1_SubjectRulesReviewStatus_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					String io_k8s_api_authorization_v1_SubjectRulesReviewStatus_evaluationError {doc 'EvaluationError can appear in combination with Rules It indicates an error occurred during rule evaluation, such as an authorizer that doesn_t support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete'}
			io_k8s_api_autoscaling_v1_CrossVersionObjectReference {doc 'CrossVersionObjectReference contains enough information to let you identify the referred resource'}
				mandatory
					String io_k8s_api_autoscaling_v1_CrossVersionObjectReference_kind {doc 'kind is the kind of the referent; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					String io_k8s_api_autoscaling_v1_CrossVersionObjectReference_name {doc 'name is the name of the referent; More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
				optional
					String io_k8s_api_autoscaling_v1_CrossVersionObjectReference_apiVersion {doc 'apiVersion is the API version of the referent'}
			io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler {doc 'configuration of a horizontal pod autoscaler'}
				optional
					String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_kind {default 'HorizontalPodAutoscaler', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata {doc 'Standard object metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_spec {doc 'spec defines the behaviour of autoscaler More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						mandatory
							Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_spec_maxReplicas {doc 'maxReplicas is the upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas'}
							io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_spec_scaleTargetRef {doc 'reference to scaled resource; horizontal pod autoscaler will learn the current resource consumption and will set the desired number of pods by using its Scale subresource'}
								mandatory
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_spec_scaleTargetRef_kind {doc 'kind is the kind of the referent; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_spec_scaleTargetRef_name {doc 'name is the name of the referent; More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
								optional
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_spec_scaleTargetRef_apiVersion {doc 'apiVersion is the API version of the referent'}
						optional
							Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_spec_minReplicas {default 1, doc 'minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down  It defaults to 1 pod  minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured  Scaling is active as long as at least one metric value is available'}
							Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_spec_targetCPUUtilizationPercentage {doc 'targetCPUUtilizationPercentage is the target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified the default autoscaling policy will be used'}
					io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_status {doc 'status is the current information about the autoscaler'}
						mandatory
							Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_status_currentReplicas {doc 'currentReplicas is the current number of replicas of pods managed by this autoscaler'}
							Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_status_desiredReplicas {doc 'desiredReplicas is the  desired number of replicas of pods managed by this autoscaler'}
						optional
							Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_status_currentCPUUtilizationPercentage {doc 'currentCPUUtilizationPercentage is the current average CPU utilization over all pods, represented as a percentage of requested CPU, eg 70 means that an average pod is using now 70% of its requested CPU'}
							io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_status_lastScaleTime {doc 'lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed'}
								optional
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_status_lastScaleTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler_status_observedGeneration {doc 'observedGeneration is the most recent generation observed by this autoscaler'}
			io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList {doc 'list of horizontal pod autoscaler objects'}
				mandatory
					io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items cardinality [1..*] {doc 'items is the list of horizontal pod autoscaler objects'}
						optional
							String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_kind {default 'HorizontalPodAutoscaler', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata {doc 'Standard object metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_spec {doc 'spec defines the behaviour of autoscaler More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_spec_maxReplicas {doc 'maxReplicas is the upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas'}
									io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_spec_scaleTargetRef {doc 'reference to scaled resource; horizontal pod autoscaler will learn the current resource consumption and will set the desired number of pods by using its Scale subresource'}
										mandatory
											String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_spec_scaleTargetRef_kind {doc 'kind is the kind of the referent; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_spec_scaleTargetRef_name {doc 'name is the name of the referent; More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
										optional
											String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_spec_scaleTargetRef_apiVersion {doc 'apiVersion is the API version of the referent'}
								optional
									Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_spec_minReplicas {default 1, doc 'minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down  It defaults to 1 pod  minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured  Scaling is active as long as at least one metric value is available'}
									Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_spec_targetCPUUtilizationPercentage {doc 'targetCPUUtilizationPercentage is the target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified the default autoscaling policy will be used'}
							io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_status {doc 'status is the current information about the autoscaler'}
								mandatory
									Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_status_currentReplicas {doc 'currentReplicas is the current number of replicas of pods managed by this autoscaler'}
									Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_status_desiredReplicas {doc 'desiredReplicas is the  desired number of replicas of pods managed by this autoscaler'}
								optional
									Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_status_currentCPUUtilizationPercentage {doc 'currentCPUUtilizationPercentage is the current average CPU utilization over all pods, represented as a percentage of requested CPU, eg 70 means that an average pod is using now 70% of its requested CPU'}
									io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_status_lastScaleTime {doc 'lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed'}
										optional
											String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_status_lastScaleTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_items_status_observedGeneration {doc 'observedGeneration is the most recent generation observed by this autoscaler'}
				optional
					String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_kind {default 'HorizontalPodAutoscalerList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_metadata {doc 'Standard list metadata'}
						optional
							String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerSpec {doc 'specification of a horizontal pod autoscaler'}
				mandatory
					Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerSpec_maxReplicas {doc 'maxReplicas is the upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas'}
					io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerSpec_scaleTargetRef {doc 'reference to scaled resource; horizontal pod autoscaler will learn the current resource consumption and will set the desired number of pods by using its Scale subresource'}
						mandatory
							String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerSpec_scaleTargetRef_kind {doc 'kind is the kind of the referent; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerSpec_scaleTargetRef_name {doc 'name is the name of the referent; More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
						optional
							String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerSpec_scaleTargetRef_apiVersion {doc 'apiVersion is the API version of the referent'}
				optional
					Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerSpec_minReplicas {default 1, doc 'minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down  It defaults to 1 pod  minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured  Scaling is active as long as at least one metric value is available'}
					Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerSpec_targetCPUUtilizationPercentage {doc 'targetCPUUtilizationPercentage is the target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified the default autoscaling policy will be used'}
			io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerStatus {doc 'current status of a horizontal pod autoscaler'}
				mandatory
					Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerStatus_currentReplicas {doc 'currentReplicas is the current number of replicas of pods managed by this autoscaler'}
					Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerStatus_desiredReplicas {doc 'desiredReplicas is the  desired number of replicas of pods managed by this autoscaler'}
				optional
					Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerStatus_currentCPUUtilizationPercentage {doc 'currentCPUUtilizationPercentage is the current average CPU utilization over all pods, represented as a percentage of requested CPU, eg 70 means that an average pod is using now 70% of its requested CPU'}
					io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerStatus_lastScaleTime {doc 'lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed'}
						optional
							String io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerStatus_lastScaleTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					Integer io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerStatus_observedGeneration {doc 'observedGeneration is the most recent generation observed by this autoscaler'}
			io_k8s_api_autoscaling_v1_Scale {doc 'Scale represents a scaling request for a resource'}
				optional
					String io_k8s_api_autoscaling_v1_Scale_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_autoscaling_v1_Scale_kind {default 'Scale', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_autoscaling_v1_Scale_metadata {doc 'Standard object metadata; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_autoscaling_v1_Scale_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_autoscaling_v1_Scale_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_autoscaling_v1_Scale_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_autoscaling_v1_Scale_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_autoscaling_v1_Scale_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_autoscaling_v1_Scale_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_autoscaling_v1_Scale_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_autoscaling_v1_Scale_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_autoscaling_v1_Scale_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_autoscaling_v1_Scale_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_autoscaling_v1_Scale_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_autoscaling_v1_Scale_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_autoscaling_v1_Scale_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_autoscaling_v1_Scale_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_autoscaling_v1_Scale_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_autoscaling_v1_Scale_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_autoscaling_v1_Scale_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_autoscaling_v1_Scale_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_autoscaling_v1_Scale_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_autoscaling_v1_Scale_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_autoscaling_v1_Scale_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_autoscaling_v1_Scale_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_autoscaling_v1_Scale_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_autoscaling_v1_Scale_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_autoscaling_v1_Scale_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_autoscaling_v1_Scale_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_autoscaling_v1_Scale_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_autoscaling_v1_Scale_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_autoscaling_v1_Scale_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_autoscaling_v1_Scale_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_autoscaling_v1_Scale_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_autoscaling_v1_Scale_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_autoscaling_v1_Scale_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_autoscaling_v1_Scale_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_autoscaling_v1_Scale_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_autoscaling_v1_Scale_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_autoscaling_v1_Scale_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_autoscaling_v1_Scale_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_autoscaling_v1_Scale_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_autoscaling_v1_Scale_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_autoscaling_v1_Scale_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_autoscaling_v1_Scale_spec {doc 'spec defines the behavior of the scale More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							Integer io_k8s_api_autoscaling_v1_Scale_spec_replicas {doc 'replicas is the desired number of instances for the scaled object'}
					io_k8s_api_autoscaling_v1_Scale_status {doc 'status is the current status of the scale More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status Read-only'}
						mandatory
							Integer io_k8s_api_autoscaling_v1_Scale_status_replicas {doc 'replicas is the actual number of observed instances of the scaled object'}
						optional
							String io_k8s_api_autoscaling_v1_Scale_status_selector {doc 'selector is the label query over pods that should match the replicas count This is same as the label selector but in the string format to avoid introspection by clients The string will be in the same format as the query-param syntax More info about label selectors: https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/'}
			io_k8s_api_autoscaling_v1_ScaleSpec {doc 'ScaleSpec describes the attributes of a scale subresource'}
				optional
					Integer io_k8s_api_autoscaling_v1_ScaleSpec_replicas {doc 'replicas is the desired number of instances for the scaled object'}
			io_k8s_api_autoscaling_v1_ScaleStatus {doc 'ScaleStatus represents the current status of a scale subresource'}
				mandatory
					Integer io_k8s_api_autoscaling_v1_ScaleStatus_replicas {doc 'replicas is the actual number of observed instances of the scaled object'}
				optional
					String io_k8s_api_autoscaling_v1_ScaleStatus_selector {doc 'selector is the label query over pods that should match the replicas count This is same as the label selector but in the string format to avoid introspection by clients The string will be in the same format as the query-param syntax More info about label selectors: https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/'}
			io_k8s_api_autoscaling_v2_ContainerResourceMetricSource {doc 'ContainerResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (eg CPU or memory)  The values will be averaged together before being compared to the target  Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the pods source  Only one target type should be set'}
				mandatory
					String io_k8s_api_autoscaling_v2_ContainerResourceMetricSource_container {doc 'container is the name of the container in the pods of the scaling target'}
					String io_k8s_api_autoscaling_v2_ContainerResourceMetricSource_name {doc 'name is the name of the resource in question'}
					io_k8s_api_autoscaling_v2_ContainerResourceMetricSource_target {doc 'target specifies the target value for the given metric'}
						mandatory
							io_k8s_api_autoscaling_v2_ContainerResourceMetricSource_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
								alternative
									io_k8s_api_autoscaling_v2_ContainerResourceMetricSource_target_type_Utilization {doc 'Specific value: Utilization'}
									io_k8s_api_autoscaling_v2_ContainerResourceMetricSource_target_type_Value {doc 'Specific value: Value'}
									io_k8s_api_autoscaling_v2_ContainerResourceMetricSource_target_type_AverageValue {doc 'Specific value: AverageValue'}
						optional
							Integer io_k8s_api_autoscaling_v2_ContainerResourceMetricSource_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
							io_k8s_api_autoscaling_v2_ContainerResourceMetricSource_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
								alternative
									String io_k8s_api_autoscaling_v2_ContainerResourceMetricSource_target_averageValue_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_autoscaling_v2_ContainerResourceMetricSource_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_autoscaling_v2_ContainerResourceMetricSource_target_value {doc 'value is the target value of the metric (as a quantity)'}
								alternative
									String io_k8s_api_autoscaling_v2_ContainerResourceMetricSource_target_value_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_autoscaling_v2_ContainerResourceMetricSource_target_value_asNumber {doc 'Sub-feature added of type Number'}
			io_k8s_api_autoscaling_v2_ContainerResourceMetricStatus {doc 'ContainerResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing a single container in each pod in the current scale target (eg CPU or memory)  Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the pods source'}
				mandatory
					String io_k8s_api_autoscaling_v2_ContainerResourceMetricStatus_container {doc 'container is the name of the container in the pods of the scaling target'}
					io_k8s_api_autoscaling_v2_ContainerResourceMetricStatus_current {doc 'current contains the current value for the given metric'}
						optional
							Integer io_k8s_api_autoscaling_v2_ContainerResourceMetricStatus_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
							io_k8s_api_autoscaling_v2_ContainerResourceMetricStatus_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
								alternative
									String io_k8s_api_autoscaling_v2_ContainerResourceMetricStatus_current_averageValue_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_autoscaling_v2_ContainerResourceMetricStatus_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_autoscaling_v2_ContainerResourceMetricStatus_current_value {doc 'value is the current value of the metric (as a quantity)'}
								alternative
									String io_k8s_api_autoscaling_v2_ContainerResourceMetricStatus_current_value_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_autoscaling_v2_ContainerResourceMetricStatus_current_value_asNumber {doc 'Sub-feature added of type Number'}
					String io_k8s_api_autoscaling_v2_ContainerResourceMetricStatus_name {doc 'name is the name of the resource in question'}
			io_k8s_api_autoscaling_v2_CrossVersionObjectReference {doc 'CrossVersionObjectReference contains enough information to let you identify the referred resource'}
				mandatory
					String io_k8s_api_autoscaling_v2_CrossVersionObjectReference_kind {doc 'kind is the kind of the referent; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					String io_k8s_api_autoscaling_v2_CrossVersionObjectReference_name {doc 'name is the name of the referent; More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
				optional
					String io_k8s_api_autoscaling_v2_CrossVersionObjectReference_apiVersion {doc 'apiVersion is the API version of the referent'}
			io_k8s_api_autoscaling_v2_ExternalMetricSource {doc 'ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)'}
				mandatory
					io_k8s_api_autoscaling_v2_ExternalMetricSource_metric {doc 'metric identifies the target metric by name and selector'}
						mandatory
							String io_k8s_api_autoscaling_v2_ExternalMetricSource_metric_name {doc 'name is the name of the given metric'}
						optional
							io_k8s_api_autoscaling_v2_ExternalMetricSource_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
								optional
									io_k8s_api_autoscaling_v2_ExternalMetricSource_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_autoscaling_v2_ExternalMetricSource_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_autoscaling_v2_ExternalMetricSource_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_autoscaling_v2_ExternalMetricSource_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_autoscaling_v2_ExternalMetricSource_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_autoscaling_v2_ExternalMetricSource_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_autoscaling_v2_ExternalMetricSource_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_autoscaling_v2_ExternalMetricSource_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_autoscaling_v2_ExternalMetricSource_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_autoscaling_v2_ExternalMetricSource_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_autoscaling_v2_ExternalMetricSource_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_autoscaling_v2_ExternalMetricSource_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_autoscaling_v2_ExternalMetricSource_target {doc 'target specifies the target value for the given metric'}
						mandatory
							io_k8s_api_autoscaling_v2_ExternalMetricSource_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
								alternative
									io_k8s_api_autoscaling_v2_ExternalMetricSource_target_type_Utilization {doc 'Specific value: Utilization'}
									io_k8s_api_autoscaling_v2_ExternalMetricSource_target_type_Value {doc 'Specific value: Value'}
									io_k8s_api_autoscaling_v2_ExternalMetricSource_target_type_AverageValue {doc 'Specific value: AverageValue'}
						optional
							Integer io_k8s_api_autoscaling_v2_ExternalMetricSource_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
							io_k8s_api_autoscaling_v2_ExternalMetricSource_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
								alternative
									String io_k8s_api_autoscaling_v2_ExternalMetricSource_target_averageValue_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_autoscaling_v2_ExternalMetricSource_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_autoscaling_v2_ExternalMetricSource_target_value {doc 'value is the target value of the metric (as a quantity)'}
								alternative
									String io_k8s_api_autoscaling_v2_ExternalMetricSource_target_value_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_autoscaling_v2_ExternalMetricSource_target_value_asNumber {doc 'Sub-feature added of type Number'}
			io_k8s_api_autoscaling_v2_ExternalMetricStatus {doc 'ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object'}
				mandatory
					io_k8s_api_autoscaling_v2_ExternalMetricStatus_current {doc 'current contains the current value for the given metric'}
						optional
							Integer io_k8s_api_autoscaling_v2_ExternalMetricStatus_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
							io_k8s_api_autoscaling_v2_ExternalMetricStatus_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
								alternative
									String io_k8s_api_autoscaling_v2_ExternalMetricStatus_current_averageValue_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_autoscaling_v2_ExternalMetricStatus_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_autoscaling_v2_ExternalMetricStatus_current_value {doc 'value is the current value of the metric (as a quantity)'}
								alternative
									String io_k8s_api_autoscaling_v2_ExternalMetricStatus_current_value_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_autoscaling_v2_ExternalMetricStatus_current_value_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_autoscaling_v2_ExternalMetricStatus_metric {doc 'metric identifies the target metric by name and selector'}
						mandatory
							String io_k8s_api_autoscaling_v2_ExternalMetricStatus_metric_name {doc 'name is the name of the given metric'}
						optional
							io_k8s_api_autoscaling_v2_ExternalMetricStatus_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
								optional
									io_k8s_api_autoscaling_v2_ExternalMetricStatus_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_autoscaling_v2_ExternalMetricStatus_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_autoscaling_v2_ExternalMetricStatus_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_autoscaling_v2_ExternalMetricStatus_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_autoscaling_v2_ExternalMetricStatus_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_autoscaling_v2_ExternalMetricStatus_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_autoscaling_v2_ExternalMetricStatus_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_autoscaling_v2_ExternalMetricStatus_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_autoscaling_v2_ExternalMetricStatus_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_autoscaling_v2_ExternalMetricStatus_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_autoscaling_v2_ExternalMetricStatus_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_autoscaling_v2_ExternalMetricStatus_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
			io_k8s_api_autoscaling_v2_HPAScalingPolicy {doc 'HPAScalingPolicy is a single policy which must hold true for a specified past interval'}
				mandatory
					Integer io_k8s_api_autoscaling_v2_HPAScalingPolicy_periodSeconds {doc 'periodSeconds specifies the window of time for which the policy should hold true PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min)'}
					String io_k8s_api_autoscaling_v2_HPAScalingPolicy_type {doc 'type is used to specify the scaling policy'}
					Integer io_k8s_api_autoscaling_v2_HPAScalingPolicy_value {doc 'value contains the amount of change which is permitted by the policy It must be greater than zero'}
			io_k8s_api_autoscaling_v2_HPAScalingRules {doc 'HPAScalingRules configures the scaling behavior for one direction These Rules are applied after calculating DesiredReplicas from metrics for the HPA They can limit the scaling velocity by specifying scaling policies They can prevent flapping by specifying the stabilization window, so that the number of replicas is not set instantly, instead, the safest value from the stabilization window is chosen'}
				optional
					io_k8s_api_autoscaling_v2_HPAScalingRules_policies cardinality [1..*] {doc 'policies is a list of potential scaling polices which can be used during scaling At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid'}
						mandatory
							Integer io_k8s_api_autoscaling_v2_HPAScalingRules_policies_periodSeconds {doc 'periodSeconds specifies the window of time for which the policy should hold true PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min)'}
							String io_k8s_api_autoscaling_v2_HPAScalingRules_policies_type {doc 'type is used to specify the scaling policy'}
							Integer io_k8s_api_autoscaling_v2_HPAScalingRules_policies_value {doc 'value contains the amount of change which is permitted by the policy It must be greater than zero'}
					String io_k8s_api_autoscaling_v2_HPAScalingRules_selectPolicy {doc 'selectPolicy is used to specify which policy should be used If not set, the default value Max is used'}
					Integer io_k8s_api_autoscaling_v2_HPAScalingRules_stabilizationWindowSeconds {doc 'stabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour) If not set, use the default values: - For scale up: 0 (ie no stabilization is done) - For scale down: 300 (ie the stabilization window is 300 seconds long)'}
			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler {doc 'HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified'}
				optional
					String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_kind {default 'HorizontalPodAutoscaler', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata {doc 'metadata is the standard object metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec {doc 'spec is the specification for the behaviour of the autoscaler More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						mandatory
							Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_maxReplicas {doc 'maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up It cannot be less that minReplicas'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_scaleTargetRef {doc 'scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count'}
								mandatory
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_scaleTargetRef_kind {doc 'kind is the kind of the referent; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_scaleTargetRef_name {doc 'name is the name of the referent; More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
								optional
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_scaleTargetRef_apiVersion {doc 'apiVersion is the API version of the referent'}
						optional
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior {doc 'behavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively) If not set, the default HPAScalingRules for scale up and scale down are used'}
								optional
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleDown {doc 'scaleDown is scaling policy for scaling Down If not set, the default value is to allow to scale down to minReplicas pods, with a 300 second stabilization window (ie, the highest recommendation for the last 300sec is used)'}
										optional
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleDown_policies cardinality [1..*] {doc 'policies is a list of potential scaling polices which can be used during scaling At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid'}
												mandatory
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleDown_policies_periodSeconds {doc 'periodSeconds specifies the window of time for which the policy should hold true PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min)'}
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleDown_policies_type {doc 'type is used to specify the scaling policy'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleDown_policies_value {doc 'value contains the amount of change which is permitted by the policy It must be greater than zero'}
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleDown_selectPolicy {doc 'selectPolicy is used to specify which policy should be used If not set, the default value Max is used'}
											Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleDown_stabilizationWindowSeconds {doc 'stabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour) If not set, use the default values: - For scale up: 0 (ie no stabilization is done) - For scale down: 300 (ie the stabilization window is 300 seconds long)'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleUp {doc 'scaleUp is scaling policy for scaling Up If not set, the default value is the higher of:  * increase no more than 4 pods per 60 seconds  * double the number of pods per 60 secondsNo stabilization is used'}
										optional
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleUp_policies cardinality [1..*] {doc 'policies is a list of potential scaling polices which can be used during scaling At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid'}
												mandatory
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleUp_policies_periodSeconds {doc 'periodSeconds specifies the window of time for which the policy should hold true PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min)'}
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleUp_policies_type {doc 'type is used to specify the scaling policy'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleUp_policies_value {doc 'value contains the amount of change which is permitted by the policy It must be greater than zero'}
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleUp_selectPolicy {doc 'selectPolicy is used to specify which policy should be used If not set, the default value Max is used'}
											Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleUp_stabilizationWindowSeconds {doc 'stabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour) If not set, use the default values: - For scale up: 0 (ie no stabilization is done) - For scale down: 300 (ie the stabilization window is 300 seconds long)'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics cardinality [1..*] {doc 'metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used)  The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods  Ergo, metrics used must decrease as the pod count is increased, and vice-versa  See the individual metric source types for more information about how each type of metric must respond If not set, the default metric will be set to 80% average CPU utilization'}
								mandatory
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_type {doc 'type is the type of metric source  It should be one of ContainerResource, External, Object, Pods or Resource, each mapping to a matching field in the object Note: ContainerResource type is available on when the feature-gate HPAContainerMetrics is enabled'}
										alternative
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_type_Resource {doc 'Specific value: Resource'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_type_ContainerResource {doc 'Specific value: ContainerResource'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_type_Pods {doc 'Specific value: Pods'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_type_Object {doc 'Specific value: Object'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_type_External {doc 'Specific value: External'}
								optional
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_containerResource {doc 'containerResource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the current scale target (eg CPU or memory) Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the pods source This is an alpha feature and can be enabled by the HPAContainerMetrics feature flag'}
										mandatory
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_containerResource_container {doc 'container is the name of the container in the pods of the scaling target'}
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_containerResource_name {doc 'name is the name of the resource in question'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_containerResource_target {doc 'target specifies the target value for the given metric'}
												mandatory
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_containerResource_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
														alternative
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_containerResource_target_type_Utilization {doc 'Specific value: Utilization'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_containerResource_target_type_Value {doc 'Specific value: Value'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_containerResource_target_type_AverageValue {doc 'Specific value: AverageValue'}
												optional
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_containerResource_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_containerResource_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
														alternative
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_containerResource_target_averageValue_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_containerResource_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_containerResource_target_value {doc 'value is the target value of the metric (as a quantity)'}
														alternative
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_containerResource_target_value_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_containerResource_target_value_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external {doc 'external refers to a global metric that is not associated with any Kubernetes object It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)'}
										mandatory
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_metric {doc 'metric identifies the target metric by name and selector'}
												mandatory
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_metric_name {doc 'name is the name of the given metric'}
												optional
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
														optional
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_target {doc 'target specifies the target value for the given metric'}
												mandatory
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
														alternative
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_target_type_Utilization {doc 'Specific value: Utilization'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_target_type_Value {doc 'Specific value: Value'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_target_type_AverageValue {doc 'Specific value: AverageValue'}
												optional
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
														alternative
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_target_averageValue_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_target_value {doc 'value is the target value of the metric (as a quantity)'}
														alternative
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_target_value_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_target_value_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object {doc 'object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)'}
										mandatory
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_describedObject {doc 'describedObject specifies the descriptions of a object,such as kind,name apiVersion'}
												mandatory
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_describedObject_kind {doc 'kind is the kind of the referent; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_describedObject_name {doc 'name is the name of the referent; More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
												optional
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_describedObject_apiVersion {doc 'apiVersion is the API version of the referent'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_metric {doc 'metric identifies the target metric by name and selector'}
												mandatory
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_metric_name {doc 'name is the name of the given metric'}
												optional
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
														optional
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_target {doc 'target specifies the target value for the given metric'}
												mandatory
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
														alternative
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_target_type_Utilization {doc 'Specific value: Utilization'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_target_type_Value {doc 'Specific value: Value'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_target_type_AverageValue {doc 'Specific value: AverageValue'}
												optional
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
														alternative
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_target_averageValue_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_target_value {doc 'value is the target value of the metric (as a quantity)'}
														alternative
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_target_value_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_target_value_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods {doc 'pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second)  The values will be averaged together before being compared to the target value'}
										mandatory
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_metric {doc 'metric identifies the target metric by name and selector'}
												mandatory
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_metric_name {doc 'name is the name of the given metric'}
												optional
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
														optional
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_target {doc 'target specifies the target value for the given metric'}
												mandatory
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
														alternative
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_target_type_Utilization {doc 'Specific value: Utilization'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_target_type_Value {doc 'Specific value: Value'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_target_type_AverageValue {doc 'Specific value: AverageValue'}
												optional
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
														alternative
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_target_averageValue_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_target_value {doc 'value is the target value of the metric (as a quantity)'}
														alternative
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_target_value_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_target_value_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_resource {doc 'resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (eg CPU or memory) Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the pods source'}
										mandatory
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_resource_name {doc 'name is the name of the resource in question'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_resource_target {doc 'target specifies the target value for the given metric'}
												mandatory
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_resource_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
														alternative
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_resource_target_type_Utilization {doc 'Specific value: Utilization'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_resource_target_type_Value {doc 'Specific value: Value'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_resource_target_type_AverageValue {doc 'Specific value: AverageValue'}
												optional
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_resource_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_resource_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
														alternative
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_resource_target_averageValue_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_resource_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_resource_target_value {doc 'value is the target value of the metric (as a quantity)'}
														alternative
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_resource_target_value_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_resource_target_value_asNumber {doc 'Sub-feature added of type Number'}
							Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_minReplicas {default 1, doc 'minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down  It defaults to 1 pod  minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured  Scaling is active as long as at least one metric value is available'}
					io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status {doc 'status is the current information about the autoscaler'}
						mandatory
							Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_desiredReplicas {doc 'desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler'}
						optional
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_conditions cardinality [1..*] {doc 'conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met'}
								mandatory
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_conditions_status {doc 'status is the status of the condition (True, False, Unknown)'}
										alternative
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_conditions_status_True {doc 'Specific value: True'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_conditions_type {doc 'type describes the current condition'}
								optional
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another'}
										optional
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_conditions_message {doc 'message is a human-readable explanation containing details about the transition'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_conditions_reason {doc 'reason is the reason for the condition_s last transition'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics cardinality [1..*] {doc 'currentMetrics is the last read state of the metrics used by this autoscaler'}
								mandatory
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_type {doc 'type is the type of metric source  It will be one of ContainerResource, External, Object, Pods or Resource, each corresponds to a matching field in the object Note: ContainerResource type is available on when the feature-gate HPAContainerMetrics is enabled'}
										alternative
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_type_Resource {doc 'Specific value: Resource'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_type_ContainerResource {doc 'Specific value: ContainerResource'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_type_Pods {doc 'Specific value: Pods'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_type_Object {doc 'Specific value: Object'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_type_External {doc 'Specific value: External'}
								optional
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_containerResource {doc 'container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod in the current scale target (eg CPU or memory) Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the pods source'}
										mandatory
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_containerResource_container {doc 'container is the name of the container in the pods of the scaling target'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_containerResource_current {doc 'current contains the current value for the given metric'}
												optional
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_containerResource_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_containerResource_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
														alternative
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_containerResource_current_averageValue_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_containerResource_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_containerResource_current_value {doc 'value is the current value of the metric (as a quantity)'}
														alternative
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_containerResource_current_value_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_containerResource_current_value_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_containerResource_name {doc 'name is the name of the resource in question'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external {doc 'external refers to a global metric that is not associated with any Kubernetes object It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)'}
										mandatory
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_current {doc 'current contains the current value for the given metric'}
												optional
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
														alternative
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_current_averageValue_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_current_value {doc 'value is the current value of the metric (as a quantity)'}
														alternative
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_current_value_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_current_value_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_metric {doc 'metric identifies the target metric by name and selector'}
												mandatory
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_metric_name {doc 'name is the name of the given metric'}
												optional
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
														optional
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object {doc 'object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)'}
										mandatory
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_current {doc 'current contains the current value for the given metric'}
												optional
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
														alternative
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_current_averageValue_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_current_value {doc 'value is the current value of the metric (as a quantity)'}
														alternative
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_current_value_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_current_value_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_describedObject {doc 'DescribedObject specifies the descriptions of a object,such as kind,name apiVersion'}
												mandatory
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_describedObject_kind {doc 'kind is the kind of the referent; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_describedObject_name {doc 'name is the name of the referent; More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
												optional
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_describedObject_apiVersion {doc 'apiVersion is the API version of the referent'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_metric {doc 'metric identifies the target metric by name and selector'}
												mandatory
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_metric_name {doc 'name is the name of the given metric'}
												optional
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
														optional
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods {doc 'pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second)  The values will be averaged together before being compared to the target value'}
										mandatory
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_current {doc 'current contains the current value for the given metric'}
												optional
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
														alternative
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_current_averageValue_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_current_value {doc 'value is the current value of the metric (as a quantity)'}
														alternative
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_current_value_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_current_value_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_metric {doc 'metric identifies the target metric by name and selector'}
												mandatory
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_metric_name {doc 'name is the name of the given metric'}
												optional
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
														optional
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_resource {doc 'resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (eg CPU or memory) Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the pods source'}
										mandatory
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_resource_current {doc 'current contains the current value for the given metric'}
												optional
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_resource_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_resource_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
														alternative
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_resource_current_averageValue_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_resource_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_resource_current_value {doc 'value is the current value of the metric (as a quantity)'}
														alternative
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_resource_current_value_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_resource_current_value_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_resource_name {doc 'name is the name of the resource in question'}
							Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentReplicas {doc 'currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_lastScaleTime {doc 'lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed'}
								optional
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_lastScaleTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_observedGeneration {doc 'observedGeneration is the most recent generation observed by this autoscaler'}
			io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior {doc 'HorizontalPodAutoscalerBehavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively)'}
				optional
					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleDown {doc 'scaleDown is scaling policy for scaling Down If not set, the default value is to allow to scale down to minReplicas pods, with a 300 second stabilization window (ie, the highest recommendation for the last 300sec is used)'}
						optional
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleDown_policies cardinality [1..*] {doc 'policies is a list of potential scaling polices which can be used during scaling At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid'}
								mandatory
									Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleDown_policies_periodSeconds {doc 'periodSeconds specifies the window of time for which the policy should hold true PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min)'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleDown_policies_type {doc 'type is used to specify the scaling policy'}
									Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleDown_policies_value {doc 'value contains the amount of change which is permitted by the policy It must be greater than zero'}
							String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleDown_selectPolicy {doc 'selectPolicy is used to specify which policy should be used If not set, the default value Max is used'}
							Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleDown_stabilizationWindowSeconds {doc 'stabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour) If not set, use the default values: - For scale up: 0 (ie no stabilization is done) - For scale down: 300 (ie the stabilization window is 300 seconds long)'}
					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleUp {doc 'scaleUp is scaling policy for scaling Up If not set, the default value is the higher of:  * increase no more than 4 pods per 60 seconds  * double the number of pods per 60 secondsNo stabilization is used'}
						optional
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleUp_policies cardinality [1..*] {doc 'policies is a list of potential scaling polices which can be used during scaling At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid'}
								mandatory
									Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleUp_policies_periodSeconds {doc 'periodSeconds specifies the window of time for which the policy should hold true PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min)'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleUp_policies_type {doc 'type is used to specify the scaling policy'}
									Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleUp_policies_value {doc 'value contains the amount of change which is permitted by the policy It must be greater than zero'}
							String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleUp_selectPolicy {doc 'selectPolicy is used to specify which policy should be used If not set, the default value Max is used'}
							Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleUp_stabilizationWindowSeconds {doc 'stabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour) If not set, use the default values: - For scale up: 0 (ie no stabilization is done) - For scale down: 300 (ie the stabilization window is 300 seconds long)'}
			io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerCondition {doc 'HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point'}
				mandatory
					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerCondition_status {doc 'status is the status of the condition (True, False, Unknown)'}
						alternative
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerCondition_status_Unknown {doc 'Specific value: Unknown'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerCondition_status_False {doc 'Specific value: False'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerCondition_status_True {doc 'Specific value: True'}
					String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerCondition_type {doc 'type describes the current condition'}
				optional
					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerCondition_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another'}
						optional
							String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerCondition_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerCondition_message {doc 'message is a human-readable explanation containing details about the transition'}
					String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerCondition_reason {doc 'reason is the reason for the condition_s last transition'}
			io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList {doc 'HorizontalPodAutoscalerList is a list of horizontal pod autoscaler objects'}
				mandatory
					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items cardinality [1..*] {doc 'items is the list of horizontal pod autoscaler objects'}
						optional
							String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_kind {default 'HorizontalPodAutoscaler', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata {doc 'metadata is the standard object metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec {doc 'spec is the specification for the behaviour of the autoscaler More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_maxReplicas {doc 'maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up It cannot be less that minReplicas'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_scaleTargetRef {doc 'scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count'}
										mandatory
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_scaleTargetRef_kind {doc 'kind is the kind of the referent; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_scaleTargetRef_name {doc 'name is the name of the referent; More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
										optional
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_scaleTargetRef_apiVersion {doc 'apiVersion is the API version of the referent'}
								optional
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior {doc 'behavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively) If not set, the default HPAScalingRules for scale up and scale down are used'}
										optional
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleDown {doc 'scaleDown is scaling policy for scaling Down If not set, the default value is to allow to scale down to minReplicas pods, with a 300 second stabilization window (ie, the highest recommendation for the last 300sec is used)'}
												optional
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleDown_policies cardinality [1..*] {doc 'policies is a list of potential scaling polices which can be used during scaling At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid'}
														mandatory
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleDown_policies_periodSeconds {doc 'periodSeconds specifies the window of time for which the policy should hold true PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min)'}
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleDown_policies_type {doc 'type is used to specify the scaling policy'}
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleDown_policies_value {doc 'value contains the amount of change which is permitted by the policy It must be greater than zero'}
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleDown_selectPolicy {doc 'selectPolicy is used to specify which policy should be used If not set, the default value Max is used'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleDown_stabilizationWindowSeconds {doc 'stabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour) If not set, use the default values: - For scale up: 0 (ie no stabilization is done) - For scale down: 300 (ie the stabilization window is 300 seconds long)'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleUp {doc 'scaleUp is scaling policy for scaling Up If not set, the default value is the higher of:  * increase no more than 4 pods per 60 seconds  * double the number of pods per 60 secondsNo stabilization is used'}
												optional
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleUp_policies cardinality [1..*] {doc 'policies is a list of potential scaling polices which can be used during scaling At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid'}
														mandatory
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleUp_policies_periodSeconds {doc 'periodSeconds specifies the window of time for which the policy should hold true PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min)'}
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleUp_policies_type {doc 'type is used to specify the scaling policy'}
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleUp_policies_value {doc 'value contains the amount of change which is permitted by the policy It must be greater than zero'}
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleUp_selectPolicy {doc 'selectPolicy is used to specify which policy should be used If not set, the default value Max is used'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleUp_stabilizationWindowSeconds {doc 'stabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour) If not set, use the default values: - For scale up: 0 (ie no stabilization is done) - For scale down: 300 (ie the stabilization window is 300 seconds long)'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics cardinality [1..*] {doc 'metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used)  The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods  Ergo, metrics used must decrease as the pod count is increased, and vice-versa  See the individual metric source types for more information about how each type of metric must respond If not set, the default metric will be set to 80% average CPU utilization'}
										mandatory
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_type {doc 'type is the type of metric source  It should be one of ContainerResource, External, Object, Pods or Resource, each mapping to a matching field in the object Note: ContainerResource type is available on when the feature-gate HPAContainerMetrics is enabled'}
												alternative
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_type_Resource {doc 'Specific value: Resource'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_type_ContainerResource {doc 'Specific value: ContainerResource'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_type_Pods {doc 'Specific value: Pods'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_type_Object {doc 'Specific value: Object'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_type_External {doc 'Specific value: External'}
										optional
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_containerResource {doc 'containerResource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the current scale target (eg CPU or memory) Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the pods source This is an alpha feature and can be enabled by the HPAContainerMetrics feature flag'}
												mandatory
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_containerResource_container {doc 'container is the name of the container in the pods of the scaling target'}
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_containerResource_name {doc 'name is the name of the resource in question'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_containerResource_target {doc 'target specifies the target value for the given metric'}
														mandatory
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_containerResource_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
																alternative
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_containerResource_target_type_Utilization {doc 'Specific value: Utilization'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_containerResource_target_type_Value {doc 'Specific value: Value'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_containerResource_target_type_AverageValue {doc 'Specific value: AverageValue'}
														optional
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_containerResource_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_containerResource_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
																alternative
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_containerResource_target_averageValue_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_containerResource_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_containerResource_target_value {doc 'value is the target value of the metric (as a quantity)'}
																alternative
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_containerResource_target_value_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_containerResource_target_value_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external {doc 'external refers to a global metric that is not associated with any Kubernetes object It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)'}
												mandatory
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_metric {doc 'metric identifies the target metric by name and selector'}
														mandatory
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_metric_name {doc 'name is the name of the given metric'}
														optional
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
																optional
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_target {doc 'target specifies the target value for the given metric'}
														mandatory
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
																alternative
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_target_type_Utilization {doc 'Specific value: Utilization'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_target_type_Value {doc 'Specific value: Value'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_target_type_AverageValue {doc 'Specific value: AverageValue'}
														optional
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
																alternative
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_target_averageValue_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_target_value {doc 'value is the target value of the metric (as a quantity)'}
																alternative
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_target_value_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_target_value_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object {doc 'object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)'}
												mandatory
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_describedObject {doc 'describedObject specifies the descriptions of a object,such as kind,name apiVersion'}
														mandatory
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_describedObject_kind {doc 'kind is the kind of the referent; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_describedObject_name {doc 'name is the name of the referent; More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
														optional
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_describedObject_apiVersion {doc 'apiVersion is the API version of the referent'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_metric {doc 'metric identifies the target metric by name and selector'}
														mandatory
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_metric_name {doc 'name is the name of the given metric'}
														optional
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
																optional
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_target {doc 'target specifies the target value for the given metric'}
														mandatory
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
																alternative
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_target_type_Utilization {doc 'Specific value: Utilization'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_target_type_Value {doc 'Specific value: Value'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_target_type_AverageValue {doc 'Specific value: AverageValue'}
														optional
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
																alternative
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_target_averageValue_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_target_value {doc 'value is the target value of the metric (as a quantity)'}
																alternative
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_target_value_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_target_value_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods {doc 'pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second)  The values will be averaged together before being compared to the target value'}
												mandatory
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_metric {doc 'metric identifies the target metric by name and selector'}
														mandatory
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_metric_name {doc 'name is the name of the given metric'}
														optional
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
																optional
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_target {doc 'target specifies the target value for the given metric'}
														mandatory
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
																alternative
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_target_type_Utilization {doc 'Specific value: Utilization'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_target_type_Value {doc 'Specific value: Value'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_target_type_AverageValue {doc 'Specific value: AverageValue'}
														optional
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
																alternative
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_target_averageValue_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_target_value {doc 'value is the target value of the metric (as a quantity)'}
																alternative
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_target_value_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_target_value_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_resource {doc 'resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (eg CPU or memory) Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the pods source'}
												mandatory
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_resource_name {doc 'name is the name of the resource in question'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_resource_target {doc 'target specifies the target value for the given metric'}
														mandatory
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_resource_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
																alternative
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_resource_target_type_Utilization {doc 'Specific value: Utilization'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_resource_target_type_Value {doc 'Specific value: Value'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_resource_target_type_AverageValue {doc 'Specific value: AverageValue'}
														optional
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_resource_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_resource_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
																alternative
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_resource_target_averageValue_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_resource_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_resource_target_value {doc 'value is the target value of the metric (as a quantity)'}
																alternative
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_resource_target_value_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_resource_target_value_asNumber {doc 'Sub-feature added of type Number'}
									Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_minReplicas {default 1, doc 'minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down  It defaults to 1 pod  minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured  Scaling is active as long as at least one metric value is available'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status {doc 'status is the current information about the autoscaler'}
								mandatory
									Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_desiredReplicas {doc 'desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler'}
								optional
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_conditions cardinality [1..*] {doc 'conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met'}
										mandatory
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_conditions_status {doc 'status is the status of the condition (True, False, Unknown)'}
												alternative
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_conditions_status_True {doc 'Specific value: True'}
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_conditions_type {doc 'type describes the current condition'}
										optional
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another'}
												optional
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_conditions_message {doc 'message is a human-readable explanation containing details about the transition'}
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_conditions_reason {doc 'reason is the reason for the condition_s last transition'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics cardinality [1..*] {doc 'currentMetrics is the last read state of the metrics used by this autoscaler'}
										mandatory
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_type {doc 'type is the type of metric source  It will be one of ContainerResource, External, Object, Pods or Resource, each corresponds to a matching field in the object Note: ContainerResource type is available on when the feature-gate HPAContainerMetrics is enabled'}
												alternative
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_type_Resource {doc 'Specific value: Resource'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_type_ContainerResource {doc 'Specific value: ContainerResource'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_type_Pods {doc 'Specific value: Pods'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_type_Object {doc 'Specific value: Object'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_type_External {doc 'Specific value: External'}
										optional
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_containerResource {doc 'container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod in the current scale target (eg CPU or memory) Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the pods source'}
												mandatory
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_containerResource_container {doc 'container is the name of the container in the pods of the scaling target'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_containerResource_current {doc 'current contains the current value for the given metric'}
														optional
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_containerResource_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_containerResource_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
																alternative
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_containerResource_current_averageValue_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_containerResource_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_containerResource_current_value {doc 'value is the current value of the metric (as a quantity)'}
																alternative
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_containerResource_current_value_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_containerResource_current_value_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_containerResource_name {doc 'name is the name of the resource in question'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external {doc 'external refers to a global metric that is not associated with any Kubernetes object It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)'}
												mandatory
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_current {doc 'current contains the current value for the given metric'}
														optional
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
																alternative
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_current_averageValue_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_current_value {doc 'value is the current value of the metric (as a quantity)'}
																alternative
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_current_value_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_current_value_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_metric {doc 'metric identifies the target metric by name and selector'}
														mandatory
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_metric_name {doc 'name is the name of the given metric'}
														optional
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
																optional
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object {doc 'object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)'}
												mandatory
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_current {doc 'current contains the current value for the given metric'}
														optional
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
																alternative
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_current_averageValue_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_current_value {doc 'value is the current value of the metric (as a quantity)'}
																alternative
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_current_value_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_current_value_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_describedObject {doc 'DescribedObject specifies the descriptions of a object,such as kind,name apiVersion'}
														mandatory
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_describedObject_kind {doc 'kind is the kind of the referent; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_describedObject_name {doc 'name is the name of the referent; More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
														optional
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_describedObject_apiVersion {doc 'apiVersion is the API version of the referent'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_metric {doc 'metric identifies the target metric by name and selector'}
														mandatory
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_metric_name {doc 'name is the name of the given metric'}
														optional
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
																optional
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods {doc 'pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second)  The values will be averaged together before being compared to the target value'}
												mandatory
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_current {doc 'current contains the current value for the given metric'}
														optional
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
																alternative
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_current_averageValue_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_current_value {doc 'value is the current value of the metric (as a quantity)'}
																alternative
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_current_value_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_current_value_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_metric {doc 'metric identifies the target metric by name and selector'}
														mandatory
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_metric_name {doc 'name is the name of the given metric'}
														optional
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
																optional
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_resource {doc 'resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (eg CPU or memory) Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the pods source'}
												mandatory
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_resource_current {doc 'current contains the current value for the given metric'}
														optional
															Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_resource_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_resource_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
																alternative
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_resource_current_averageValue_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_resource_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_resource_current_value {doc 'value is the current value of the metric (as a quantity)'}
																alternative
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_resource_current_value_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_resource_current_value_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_resource_name {doc 'name is the name of the resource in question'}
									Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentReplicas {doc 'currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_lastScaleTime {doc 'lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed'}
										optional
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_lastScaleTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_observedGeneration {doc 'observedGeneration is the most recent generation observed by this autoscaler'}
				optional
					String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_kind {default 'HorizontalPodAutoscalerList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_metadata {doc 'metadata is the standard list metadata'}
						optional
							String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec {doc 'HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler'}
				mandatory
					Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_maxReplicas {doc 'maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up It cannot be less that minReplicas'}
					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_scaleTargetRef {doc 'scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count'}
						mandatory
							String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_scaleTargetRef_kind {doc 'kind is the kind of the referent; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_scaleTargetRef_name {doc 'name is the name of the referent; More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
						optional
							String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_scaleTargetRef_apiVersion {doc 'apiVersion is the API version of the referent'}
				optional
					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior {doc 'behavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively) If not set, the default HPAScalingRules for scale up and scale down are used'}
						optional
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleDown {doc 'scaleDown is scaling policy for scaling Down If not set, the default value is to allow to scale down to minReplicas pods, with a 300 second stabilization window (ie, the highest recommendation for the last 300sec is used)'}
								optional
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleDown_policies cardinality [1..*] {doc 'policies is a list of potential scaling polices which can be used during scaling At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid'}
										mandatory
											Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleDown_policies_periodSeconds {doc 'periodSeconds specifies the window of time for which the policy should hold true PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min)'}
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleDown_policies_type {doc 'type is used to specify the scaling policy'}
											Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleDown_policies_value {doc 'value contains the amount of change which is permitted by the policy It must be greater than zero'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleDown_selectPolicy {doc 'selectPolicy is used to specify which policy should be used If not set, the default value Max is used'}
									Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleDown_stabilizationWindowSeconds {doc 'stabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour) If not set, use the default values: - For scale up: 0 (ie no stabilization is done) - For scale down: 300 (ie the stabilization window is 300 seconds long)'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleUp {doc 'scaleUp is scaling policy for scaling Up If not set, the default value is the higher of:  * increase no more than 4 pods per 60 seconds  * double the number of pods per 60 secondsNo stabilization is used'}
								optional
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleUp_policies cardinality [1..*] {doc 'policies is a list of potential scaling polices which can be used during scaling At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid'}
										mandatory
											Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleUp_policies_periodSeconds {doc 'periodSeconds specifies the window of time for which the policy should hold true PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min)'}
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleUp_policies_type {doc 'type is used to specify the scaling policy'}
											Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleUp_policies_value {doc 'value contains the amount of change which is permitted by the policy It must be greater than zero'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleUp_selectPolicy {doc 'selectPolicy is used to specify which policy should be used If not set, the default value Max is used'}
									Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleUp_stabilizationWindowSeconds {doc 'stabilizationWindowSeconds is the number of seconds for which past recommendations should be considered while scaling up or scaling down StabilizationWindowSeconds must be greater than or equal to zero and less than or equal to 3600 (one hour) If not set, use the default values: - For scale up: 0 (ie no stabilization is done) - For scale down: 300 (ie the stabilization window is 300 seconds long)'}
					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics cardinality [1..*] {doc 'metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used)  The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods  Ergo, metrics used must decrease as the pod count is increased, and vice-versa  See the individual metric source types for more information about how each type of metric must respond If not set, the default metric will be set to 80% average CPU utilization'}
						mandatory
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_type {doc 'type is the type of metric source  It should be one of ContainerResource, External, Object, Pods or Resource, each mapping to a matching field in the object Note: ContainerResource type is available on when the feature-gate HPAContainerMetrics is enabled'}
								alternative
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_type_Resource {doc 'Specific value: Resource'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_type_ContainerResource {doc 'Specific value: ContainerResource'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_type_Pods {doc 'Specific value: Pods'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_type_Object {doc 'Specific value: Object'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_type_External {doc 'Specific value: External'}
						optional
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_containerResource {doc 'containerResource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the current scale target (eg CPU or memory) Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the pods source This is an alpha feature and can be enabled by the HPAContainerMetrics feature flag'}
								mandatory
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_containerResource_container {doc 'container is the name of the container in the pods of the scaling target'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_containerResource_name {doc 'name is the name of the resource in question'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_containerResource_target {doc 'target specifies the target value for the given metric'}
										mandatory
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_containerResource_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
												alternative
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_containerResource_target_type_Utilization {doc 'Specific value: Utilization'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_containerResource_target_type_Value {doc 'Specific value: Value'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_containerResource_target_type_AverageValue {doc 'Specific value: AverageValue'}
										optional
											Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_containerResource_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_containerResource_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
												alternative
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_containerResource_target_averageValue_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_containerResource_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_containerResource_target_value {doc 'value is the target value of the metric (as a quantity)'}
												alternative
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_containerResource_target_value_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_containerResource_target_value_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external {doc 'external refers to a global metric that is not associated with any Kubernetes object It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)'}
								mandatory
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_metric {doc 'metric identifies the target metric by name and selector'}
										mandatory
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_metric_name {doc 'name is the name of the given metric'}
										optional
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
												optional
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_target {doc 'target specifies the target value for the given metric'}
										mandatory
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
												alternative
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_target_type_Utilization {doc 'Specific value: Utilization'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_target_type_Value {doc 'Specific value: Value'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_target_type_AverageValue {doc 'Specific value: AverageValue'}
										optional
											Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
												alternative
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_target_averageValue_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_target_value {doc 'value is the target value of the metric (as a quantity)'}
												alternative
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_target_value_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_target_value_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object {doc 'object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)'}
								mandatory
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_describedObject {doc 'describedObject specifies the descriptions of a object,such as kind,name apiVersion'}
										mandatory
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_describedObject_kind {doc 'kind is the kind of the referent; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_describedObject_name {doc 'name is the name of the referent; More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
										optional
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_describedObject_apiVersion {doc 'apiVersion is the API version of the referent'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_metric {doc 'metric identifies the target metric by name and selector'}
										mandatory
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_metric_name {doc 'name is the name of the given metric'}
										optional
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
												optional
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_target {doc 'target specifies the target value for the given metric'}
										mandatory
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
												alternative
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_target_type_Utilization {doc 'Specific value: Utilization'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_target_type_Value {doc 'Specific value: Value'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_target_type_AverageValue {doc 'Specific value: AverageValue'}
										optional
											Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
												alternative
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_target_averageValue_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_target_value {doc 'value is the target value of the metric (as a quantity)'}
												alternative
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_target_value_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_target_value_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods {doc 'pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second)  The values will be averaged together before being compared to the target value'}
								mandatory
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_metric {doc 'metric identifies the target metric by name and selector'}
										mandatory
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_metric_name {doc 'name is the name of the given metric'}
										optional
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
												optional
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_target {doc 'target specifies the target value for the given metric'}
										mandatory
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
												alternative
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_target_type_Utilization {doc 'Specific value: Utilization'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_target_type_Value {doc 'Specific value: Value'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_target_type_AverageValue {doc 'Specific value: AverageValue'}
										optional
											Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
												alternative
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_target_averageValue_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_target_value {doc 'value is the target value of the metric (as a quantity)'}
												alternative
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_target_value_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_target_value_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_resource {doc 'resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (eg CPU or memory) Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the pods source'}
								mandatory
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_resource_name {doc 'name is the name of the resource in question'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_resource_target {doc 'target specifies the target value for the given metric'}
										mandatory
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_resource_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
												alternative
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_resource_target_type_Utilization {doc 'Specific value: Utilization'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_resource_target_type_Value {doc 'Specific value: Value'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_resource_target_type_AverageValue {doc 'Specific value: AverageValue'}
										optional
											Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_resource_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_resource_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
												alternative
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_resource_target_averageValue_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_resource_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_resource_target_value {doc 'value is the target value of the metric (as a quantity)'}
												alternative
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_resource_target_value_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_resource_target_value_asNumber {doc 'Sub-feature added of type Number'}
					Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_minReplicas {default 1, doc 'minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down  It defaults to 1 pod  minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured  Scaling is active as long as at least one metric value is available'}
			io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus {doc 'HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler'}
				mandatory
					Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_desiredReplicas {doc 'desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler'}
				optional
					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_conditions cardinality [1..*] {doc 'conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met'}
						mandatory
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_conditions_status {doc 'status is the status of the condition (True, False, Unknown)'}
								alternative
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_conditions_status_True {doc 'Specific value: True'}
							String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_conditions_type {doc 'type describes the current condition'}
						optional
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another'}
								optional
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_conditions_message {doc 'message is a human-readable explanation containing details about the transition'}
							String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_conditions_reason {doc 'reason is the reason for the condition_s last transition'}
					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics cardinality [1..*] {doc 'currentMetrics is the last read state of the metrics used by this autoscaler'}
						mandatory
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_type {doc 'type is the type of metric source  It will be one of ContainerResource, External, Object, Pods or Resource, each corresponds to a matching field in the object Note: ContainerResource type is available on when the feature-gate HPAContainerMetrics is enabled'}
								alternative
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_type_Resource {doc 'Specific value: Resource'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_type_ContainerResource {doc 'Specific value: ContainerResource'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_type_Pods {doc 'Specific value: Pods'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_type_Object {doc 'Specific value: Object'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_type_External {doc 'Specific value: External'}
						optional
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_containerResource {doc 'container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod in the current scale target (eg CPU or memory) Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the pods source'}
								mandatory
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_containerResource_container {doc 'container is the name of the container in the pods of the scaling target'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_containerResource_current {doc 'current contains the current value for the given metric'}
										optional
											Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_containerResource_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_containerResource_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
												alternative
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_containerResource_current_averageValue_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_containerResource_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_containerResource_current_value {doc 'value is the current value of the metric (as a quantity)'}
												alternative
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_containerResource_current_value_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_containerResource_current_value_asNumber {doc 'Sub-feature added of type Number'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_containerResource_name {doc 'name is the name of the resource in question'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external {doc 'external refers to a global metric that is not associated with any Kubernetes object It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)'}
								mandatory
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_current {doc 'current contains the current value for the given metric'}
										optional
											Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
												alternative
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_current_averageValue_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_current_value {doc 'value is the current value of the metric (as a quantity)'}
												alternative
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_current_value_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_current_value_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_metric {doc 'metric identifies the target metric by name and selector'}
										mandatory
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_metric_name {doc 'name is the name of the given metric'}
										optional
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
												optional
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object {doc 'object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)'}
								mandatory
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_current {doc 'current contains the current value for the given metric'}
										optional
											Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
												alternative
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_current_averageValue_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_current_value {doc 'value is the current value of the metric (as a quantity)'}
												alternative
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_current_value_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_current_value_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_describedObject {doc 'DescribedObject specifies the descriptions of a object,such as kind,name apiVersion'}
										mandatory
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_describedObject_kind {doc 'kind is the kind of the referent; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_describedObject_name {doc 'name is the name of the referent; More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
										optional
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_describedObject_apiVersion {doc 'apiVersion is the API version of the referent'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_metric {doc 'metric identifies the target metric by name and selector'}
										mandatory
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_metric_name {doc 'name is the name of the given metric'}
										optional
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
												optional
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods {doc 'pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second)  The values will be averaged together before being compared to the target value'}
								mandatory
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_current {doc 'current contains the current value for the given metric'}
										optional
											Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
												alternative
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_current_averageValue_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_current_value {doc 'value is the current value of the metric (as a quantity)'}
												alternative
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_current_value_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_current_value_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_metric {doc 'metric identifies the target metric by name and selector'}
										mandatory
											String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_metric_name {doc 'name is the name of the given metric'}
										optional
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
												optional
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_resource {doc 'resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (eg CPU or memory) Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the pods source'}
								mandatory
									io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_resource_current {doc 'current contains the current value for the given metric'}
										optional
											Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_resource_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_resource_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
												alternative
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_resource_current_averageValue_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_resource_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_resource_current_value {doc 'value is the current value of the metric (as a quantity)'}
												alternative
													String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_resource_current_value_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_resource_current_value_asNumber {doc 'Sub-feature added of type Number'}
									String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_resource_name {doc 'name is the name of the resource in question'}
					Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentReplicas {doc 'currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler'}
					io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_lastScaleTime {doc 'lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed'}
						optional
							String io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_lastScaleTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					Integer io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_observedGeneration {doc 'observedGeneration is the most recent generation observed by this autoscaler'}
			io_k8s_api_autoscaling_v2_MetricIdentifier {doc 'MetricIdentifier defines the name and optionally selector for a metric'}
				mandatory
					String io_k8s_api_autoscaling_v2_MetricIdentifier_name {doc 'name is the name of the given metric'}
				optional
					io_k8s_api_autoscaling_v2_MetricIdentifier_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
						optional
							io_k8s_api_autoscaling_v2_MetricIdentifier_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_autoscaling_v2_MetricIdentifier_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_autoscaling_v2_MetricIdentifier_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_autoscaling_v2_MetricIdentifier_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_autoscaling_v2_MetricIdentifier_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_autoscaling_v2_MetricIdentifier_selector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_autoscaling_v2_MetricIdentifier_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_autoscaling_v2_MetricIdentifier_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_autoscaling_v2_MetricIdentifier_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_autoscaling_v2_MetricIdentifier_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_autoscaling_v2_MetricIdentifier_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_autoscaling_v2_MetricIdentifier_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
			io_k8s_api_autoscaling_v2_MetricSpec {doc 'MetricSpec specifies how to scale based on a single metric (only type and one other matching field should be set at once)'}
				mandatory
					io_k8s_api_autoscaling_v2_MetricSpec_type {doc 'type is the type of metric source  It should be one of ContainerResource, External, Object, Pods or Resource, each mapping to a matching field in the object Note: ContainerResource type is available on when the feature-gate HPAContainerMetrics is enabled'}
						alternative
							io_k8s_api_autoscaling_v2_MetricSpec_type_Resource {doc 'Specific value: Resource'}
							io_k8s_api_autoscaling_v2_MetricSpec_type_ContainerResource {doc 'Specific value: ContainerResource'}
							io_k8s_api_autoscaling_v2_MetricSpec_type_Pods {doc 'Specific value: Pods'}
							io_k8s_api_autoscaling_v2_MetricSpec_type_Object {doc 'Specific value: Object'}
							io_k8s_api_autoscaling_v2_MetricSpec_type_External {doc 'Specific value: External'}
				optional
					io_k8s_api_autoscaling_v2_MetricSpec_containerResource {doc 'containerResource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod of the current scale target (eg CPU or memory) Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the pods source This is an alpha feature and can be enabled by the HPAContainerMetrics feature flag'}
						mandatory
							String io_k8s_api_autoscaling_v2_MetricSpec_containerResource_container {doc 'container is the name of the container in the pods of the scaling target'}
							String io_k8s_api_autoscaling_v2_MetricSpec_containerResource_name {doc 'name is the name of the resource in question'}
							io_k8s_api_autoscaling_v2_MetricSpec_containerResource_target {doc 'target specifies the target value for the given metric'}
								mandatory
									io_k8s_api_autoscaling_v2_MetricSpec_containerResource_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
										alternative
											io_k8s_api_autoscaling_v2_MetricSpec_containerResource_target_type_Utilization {doc 'Specific value: Utilization'}
											io_k8s_api_autoscaling_v2_MetricSpec_containerResource_target_type_Value {doc 'Specific value: Value'}
											io_k8s_api_autoscaling_v2_MetricSpec_containerResource_target_type_AverageValue {doc 'Specific value: AverageValue'}
								optional
									Integer io_k8s_api_autoscaling_v2_MetricSpec_containerResource_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
									io_k8s_api_autoscaling_v2_MetricSpec_containerResource_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
										alternative
											String io_k8s_api_autoscaling_v2_MetricSpec_containerResource_target_averageValue_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_autoscaling_v2_MetricSpec_containerResource_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_autoscaling_v2_MetricSpec_containerResource_target_value {doc 'value is the target value of the metric (as a quantity)'}
										alternative
											String io_k8s_api_autoscaling_v2_MetricSpec_containerResource_target_value_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_autoscaling_v2_MetricSpec_containerResource_target_value_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_autoscaling_v2_MetricSpec_external {doc 'external refers to a global metric that is not associated with any Kubernetes object It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)'}
						mandatory
							io_k8s_api_autoscaling_v2_MetricSpec_external_metric {doc 'metric identifies the target metric by name and selector'}
								mandatory
									String io_k8s_api_autoscaling_v2_MetricSpec_external_metric_name {doc 'name is the name of the given metric'}
								optional
									io_k8s_api_autoscaling_v2_MetricSpec_external_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
										optional
											io_k8s_api_autoscaling_v2_MetricSpec_external_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_autoscaling_v2_MetricSpec_external_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_autoscaling_v2_MetricSpec_external_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_autoscaling_v2_MetricSpec_external_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_autoscaling_v2_MetricSpec_external_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_autoscaling_v2_MetricSpec_external_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_autoscaling_v2_MetricSpec_external_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_autoscaling_v2_MetricSpec_external_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_autoscaling_v2_MetricSpec_external_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_autoscaling_v2_MetricSpec_external_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_autoscaling_v2_MetricSpec_external_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_autoscaling_v2_MetricSpec_external_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_autoscaling_v2_MetricSpec_external_target {doc 'target specifies the target value for the given metric'}
								mandatory
									io_k8s_api_autoscaling_v2_MetricSpec_external_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
										alternative
											io_k8s_api_autoscaling_v2_MetricSpec_external_target_type_Utilization {doc 'Specific value: Utilization'}
											io_k8s_api_autoscaling_v2_MetricSpec_external_target_type_Value {doc 'Specific value: Value'}
											io_k8s_api_autoscaling_v2_MetricSpec_external_target_type_AverageValue {doc 'Specific value: AverageValue'}
								optional
									Integer io_k8s_api_autoscaling_v2_MetricSpec_external_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
									io_k8s_api_autoscaling_v2_MetricSpec_external_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
										alternative
											String io_k8s_api_autoscaling_v2_MetricSpec_external_target_averageValue_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_autoscaling_v2_MetricSpec_external_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_autoscaling_v2_MetricSpec_external_target_value {doc 'value is the target value of the metric (as a quantity)'}
										alternative
											String io_k8s_api_autoscaling_v2_MetricSpec_external_target_value_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_autoscaling_v2_MetricSpec_external_target_value_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_autoscaling_v2_MetricSpec_object {doc 'object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)'}
						mandatory
							io_k8s_api_autoscaling_v2_MetricSpec_object_describedObject {doc 'describedObject specifies the descriptions of a object,such as kind,name apiVersion'}
								mandatory
									String io_k8s_api_autoscaling_v2_MetricSpec_object_describedObject_kind {doc 'kind is the kind of the referent; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_autoscaling_v2_MetricSpec_object_describedObject_name {doc 'name is the name of the referent; More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
								optional
									String io_k8s_api_autoscaling_v2_MetricSpec_object_describedObject_apiVersion {doc 'apiVersion is the API version of the referent'}
							io_k8s_api_autoscaling_v2_MetricSpec_object_metric {doc 'metric identifies the target metric by name and selector'}
								mandatory
									String io_k8s_api_autoscaling_v2_MetricSpec_object_metric_name {doc 'name is the name of the given metric'}
								optional
									io_k8s_api_autoscaling_v2_MetricSpec_object_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
										optional
											io_k8s_api_autoscaling_v2_MetricSpec_object_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_autoscaling_v2_MetricSpec_object_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_autoscaling_v2_MetricSpec_object_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_autoscaling_v2_MetricSpec_object_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_autoscaling_v2_MetricSpec_object_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_autoscaling_v2_MetricSpec_object_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_autoscaling_v2_MetricSpec_object_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_autoscaling_v2_MetricSpec_object_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_autoscaling_v2_MetricSpec_object_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_autoscaling_v2_MetricSpec_object_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_autoscaling_v2_MetricSpec_object_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_autoscaling_v2_MetricSpec_object_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_autoscaling_v2_MetricSpec_object_target {doc 'target specifies the target value for the given metric'}
								mandatory
									io_k8s_api_autoscaling_v2_MetricSpec_object_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
										alternative
											io_k8s_api_autoscaling_v2_MetricSpec_object_target_type_Utilization {doc 'Specific value: Utilization'}
											io_k8s_api_autoscaling_v2_MetricSpec_object_target_type_Value {doc 'Specific value: Value'}
											io_k8s_api_autoscaling_v2_MetricSpec_object_target_type_AverageValue {doc 'Specific value: AverageValue'}
								optional
									Integer io_k8s_api_autoscaling_v2_MetricSpec_object_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
									io_k8s_api_autoscaling_v2_MetricSpec_object_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
										alternative
											String io_k8s_api_autoscaling_v2_MetricSpec_object_target_averageValue_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_autoscaling_v2_MetricSpec_object_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_autoscaling_v2_MetricSpec_object_target_value {doc 'value is the target value of the metric (as a quantity)'}
										alternative
											String io_k8s_api_autoscaling_v2_MetricSpec_object_target_value_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_autoscaling_v2_MetricSpec_object_target_value_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_autoscaling_v2_MetricSpec_pods {doc 'pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second)  The values will be averaged together before being compared to the target value'}
						mandatory
							io_k8s_api_autoscaling_v2_MetricSpec_pods_metric {doc 'metric identifies the target metric by name and selector'}
								mandatory
									String io_k8s_api_autoscaling_v2_MetricSpec_pods_metric_name {doc 'name is the name of the given metric'}
								optional
									io_k8s_api_autoscaling_v2_MetricSpec_pods_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
										optional
											io_k8s_api_autoscaling_v2_MetricSpec_pods_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_autoscaling_v2_MetricSpec_pods_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_autoscaling_v2_MetricSpec_pods_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_autoscaling_v2_MetricSpec_pods_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_autoscaling_v2_MetricSpec_pods_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_autoscaling_v2_MetricSpec_pods_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_autoscaling_v2_MetricSpec_pods_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_autoscaling_v2_MetricSpec_pods_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_autoscaling_v2_MetricSpec_pods_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_autoscaling_v2_MetricSpec_pods_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_autoscaling_v2_MetricSpec_pods_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_autoscaling_v2_MetricSpec_pods_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_autoscaling_v2_MetricSpec_pods_target {doc 'target specifies the target value for the given metric'}
								mandatory
									io_k8s_api_autoscaling_v2_MetricSpec_pods_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
										alternative
											io_k8s_api_autoscaling_v2_MetricSpec_pods_target_type_Utilization {doc 'Specific value: Utilization'}
											io_k8s_api_autoscaling_v2_MetricSpec_pods_target_type_Value {doc 'Specific value: Value'}
											io_k8s_api_autoscaling_v2_MetricSpec_pods_target_type_AverageValue {doc 'Specific value: AverageValue'}
								optional
									Integer io_k8s_api_autoscaling_v2_MetricSpec_pods_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
									io_k8s_api_autoscaling_v2_MetricSpec_pods_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
										alternative
											String io_k8s_api_autoscaling_v2_MetricSpec_pods_target_averageValue_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_autoscaling_v2_MetricSpec_pods_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_autoscaling_v2_MetricSpec_pods_target_value {doc 'value is the target value of the metric (as a quantity)'}
										alternative
											String io_k8s_api_autoscaling_v2_MetricSpec_pods_target_value_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_autoscaling_v2_MetricSpec_pods_target_value_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_autoscaling_v2_MetricSpec_resource {doc 'resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (eg CPU or memory) Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the pods source'}
						mandatory
							String io_k8s_api_autoscaling_v2_MetricSpec_resource_name {doc 'name is the name of the resource in question'}
							io_k8s_api_autoscaling_v2_MetricSpec_resource_target {doc 'target specifies the target value for the given metric'}
								mandatory
									io_k8s_api_autoscaling_v2_MetricSpec_resource_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
										alternative
											io_k8s_api_autoscaling_v2_MetricSpec_resource_target_type_Utilization {doc 'Specific value: Utilization'}
											io_k8s_api_autoscaling_v2_MetricSpec_resource_target_type_Value {doc 'Specific value: Value'}
											io_k8s_api_autoscaling_v2_MetricSpec_resource_target_type_AverageValue {doc 'Specific value: AverageValue'}
								optional
									Integer io_k8s_api_autoscaling_v2_MetricSpec_resource_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
									io_k8s_api_autoscaling_v2_MetricSpec_resource_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
										alternative
											String io_k8s_api_autoscaling_v2_MetricSpec_resource_target_averageValue_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_autoscaling_v2_MetricSpec_resource_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_autoscaling_v2_MetricSpec_resource_target_value {doc 'value is the target value of the metric (as a quantity)'}
										alternative
											String io_k8s_api_autoscaling_v2_MetricSpec_resource_target_value_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_autoscaling_v2_MetricSpec_resource_target_value_asNumber {doc 'Sub-feature added of type Number'}
			io_k8s_api_autoscaling_v2_MetricStatus {doc 'MetricStatus describes the last-read state of a single metric'}
				mandatory
					io_k8s_api_autoscaling_v2_MetricStatus_type {doc 'type is the type of metric source  It will be one of ContainerResource, External, Object, Pods or Resource, each corresponds to a matching field in the object Note: ContainerResource type is available on when the feature-gate HPAContainerMetrics is enabled'}
						alternative
							io_k8s_api_autoscaling_v2_MetricStatus_type_Resource {doc 'Specific value: Resource'}
							io_k8s_api_autoscaling_v2_MetricStatus_type_ContainerResource {doc 'Specific value: ContainerResource'}
							io_k8s_api_autoscaling_v2_MetricStatus_type_Pods {doc 'Specific value: Pods'}
							io_k8s_api_autoscaling_v2_MetricStatus_type_Object {doc 'Specific value: Object'}
							io_k8s_api_autoscaling_v2_MetricStatus_type_External {doc 'Specific value: External'}
				optional
					io_k8s_api_autoscaling_v2_MetricStatus_containerResource {doc 'container resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing a single container in each pod in the current scale target (eg CPU or memory) Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the pods source'}
						mandatory
							String io_k8s_api_autoscaling_v2_MetricStatus_containerResource_container {doc 'container is the name of the container in the pods of the scaling target'}
							io_k8s_api_autoscaling_v2_MetricStatus_containerResource_current {doc 'current contains the current value for the given metric'}
								optional
									Integer io_k8s_api_autoscaling_v2_MetricStatus_containerResource_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
									io_k8s_api_autoscaling_v2_MetricStatus_containerResource_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
										alternative
											String io_k8s_api_autoscaling_v2_MetricStatus_containerResource_current_averageValue_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_autoscaling_v2_MetricStatus_containerResource_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_autoscaling_v2_MetricStatus_containerResource_current_value {doc 'value is the current value of the metric (as a quantity)'}
										alternative
											String io_k8s_api_autoscaling_v2_MetricStatus_containerResource_current_value_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_autoscaling_v2_MetricStatus_containerResource_current_value_asNumber {doc 'Sub-feature added of type Number'}
							String io_k8s_api_autoscaling_v2_MetricStatus_containerResource_name {doc 'name is the name of the resource in question'}
					io_k8s_api_autoscaling_v2_MetricStatus_external {doc 'external refers to a global metric that is not associated with any Kubernetes object It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster)'}
						mandatory
							io_k8s_api_autoscaling_v2_MetricStatus_external_current {doc 'current contains the current value for the given metric'}
								optional
									Integer io_k8s_api_autoscaling_v2_MetricStatus_external_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
									io_k8s_api_autoscaling_v2_MetricStatus_external_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
										alternative
											String io_k8s_api_autoscaling_v2_MetricStatus_external_current_averageValue_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_autoscaling_v2_MetricStatus_external_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_autoscaling_v2_MetricStatus_external_current_value {doc 'value is the current value of the metric (as a quantity)'}
										alternative
											String io_k8s_api_autoscaling_v2_MetricStatus_external_current_value_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_autoscaling_v2_MetricStatus_external_current_value_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_autoscaling_v2_MetricStatus_external_metric {doc 'metric identifies the target metric by name and selector'}
								mandatory
									String io_k8s_api_autoscaling_v2_MetricStatus_external_metric_name {doc 'name is the name of the given metric'}
								optional
									io_k8s_api_autoscaling_v2_MetricStatus_external_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
										optional
											io_k8s_api_autoscaling_v2_MetricStatus_external_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_autoscaling_v2_MetricStatus_external_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_autoscaling_v2_MetricStatus_external_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_autoscaling_v2_MetricStatus_external_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_autoscaling_v2_MetricStatus_external_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_autoscaling_v2_MetricStatus_external_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_autoscaling_v2_MetricStatus_external_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_autoscaling_v2_MetricStatus_external_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_autoscaling_v2_MetricStatus_external_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_autoscaling_v2_MetricStatus_external_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_autoscaling_v2_MetricStatus_external_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_autoscaling_v2_MetricStatus_external_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_autoscaling_v2_MetricStatus_object {doc 'object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object)'}
						mandatory
							io_k8s_api_autoscaling_v2_MetricStatus_object_current {doc 'current contains the current value for the given metric'}
								optional
									Integer io_k8s_api_autoscaling_v2_MetricStatus_object_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
									io_k8s_api_autoscaling_v2_MetricStatus_object_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
										alternative
											String io_k8s_api_autoscaling_v2_MetricStatus_object_current_averageValue_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_autoscaling_v2_MetricStatus_object_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_autoscaling_v2_MetricStatus_object_current_value {doc 'value is the current value of the metric (as a quantity)'}
										alternative
											String io_k8s_api_autoscaling_v2_MetricStatus_object_current_value_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_autoscaling_v2_MetricStatus_object_current_value_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_autoscaling_v2_MetricStatus_object_describedObject {doc 'DescribedObject specifies the descriptions of a object,such as kind,name apiVersion'}
								mandatory
									String io_k8s_api_autoscaling_v2_MetricStatus_object_describedObject_kind {doc 'kind is the kind of the referent; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_autoscaling_v2_MetricStatus_object_describedObject_name {doc 'name is the name of the referent; More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
								optional
									String io_k8s_api_autoscaling_v2_MetricStatus_object_describedObject_apiVersion {doc 'apiVersion is the API version of the referent'}
							io_k8s_api_autoscaling_v2_MetricStatus_object_metric {doc 'metric identifies the target metric by name and selector'}
								mandatory
									String io_k8s_api_autoscaling_v2_MetricStatus_object_metric_name {doc 'name is the name of the given metric'}
								optional
									io_k8s_api_autoscaling_v2_MetricStatus_object_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
										optional
											io_k8s_api_autoscaling_v2_MetricStatus_object_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_autoscaling_v2_MetricStatus_object_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_autoscaling_v2_MetricStatus_object_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_autoscaling_v2_MetricStatus_object_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_autoscaling_v2_MetricStatus_object_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_autoscaling_v2_MetricStatus_object_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_autoscaling_v2_MetricStatus_object_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_autoscaling_v2_MetricStatus_object_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_autoscaling_v2_MetricStatus_object_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_autoscaling_v2_MetricStatus_object_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_autoscaling_v2_MetricStatus_object_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_autoscaling_v2_MetricStatus_object_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_autoscaling_v2_MetricStatus_pods {doc 'pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second)  The values will be averaged together before being compared to the target value'}
						mandatory
							io_k8s_api_autoscaling_v2_MetricStatus_pods_current {doc 'current contains the current value for the given metric'}
								optional
									Integer io_k8s_api_autoscaling_v2_MetricStatus_pods_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
									io_k8s_api_autoscaling_v2_MetricStatus_pods_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
										alternative
											String io_k8s_api_autoscaling_v2_MetricStatus_pods_current_averageValue_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_autoscaling_v2_MetricStatus_pods_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_autoscaling_v2_MetricStatus_pods_current_value {doc 'value is the current value of the metric (as a quantity)'}
										alternative
											String io_k8s_api_autoscaling_v2_MetricStatus_pods_current_value_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_autoscaling_v2_MetricStatus_pods_current_value_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_autoscaling_v2_MetricStatus_pods_metric {doc 'metric identifies the target metric by name and selector'}
								mandatory
									String io_k8s_api_autoscaling_v2_MetricStatus_pods_metric_name {doc 'name is the name of the given metric'}
								optional
									io_k8s_api_autoscaling_v2_MetricStatus_pods_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
										optional
											io_k8s_api_autoscaling_v2_MetricStatus_pods_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_autoscaling_v2_MetricStatus_pods_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_autoscaling_v2_MetricStatus_pods_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_autoscaling_v2_MetricStatus_pods_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_autoscaling_v2_MetricStatus_pods_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_autoscaling_v2_MetricStatus_pods_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_autoscaling_v2_MetricStatus_pods_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_autoscaling_v2_MetricStatus_pods_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_autoscaling_v2_MetricStatus_pods_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_autoscaling_v2_MetricStatus_pods_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_autoscaling_v2_MetricStatus_pods_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_autoscaling_v2_MetricStatus_pods_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_autoscaling_v2_MetricStatus_resource {doc 'resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (eg CPU or memory) Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the pods source'}
						mandatory
							io_k8s_api_autoscaling_v2_MetricStatus_resource_current {doc 'current contains the current value for the given metric'}
								optional
									Integer io_k8s_api_autoscaling_v2_MetricStatus_resource_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
									io_k8s_api_autoscaling_v2_MetricStatus_resource_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
										alternative
											String io_k8s_api_autoscaling_v2_MetricStatus_resource_current_averageValue_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_autoscaling_v2_MetricStatus_resource_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_autoscaling_v2_MetricStatus_resource_current_value {doc 'value is the current value of the metric (as a quantity)'}
										alternative
											String io_k8s_api_autoscaling_v2_MetricStatus_resource_current_value_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_autoscaling_v2_MetricStatus_resource_current_value_asNumber {doc 'Sub-feature added of type Number'}
							String io_k8s_api_autoscaling_v2_MetricStatus_resource_name {doc 'name is the name of the resource in question'}
			io_k8s_api_autoscaling_v2_MetricTarget {doc 'MetricTarget defines the target value, average value, or average utilization of a specific metric'}
				mandatory
					io_k8s_api_autoscaling_v2_MetricTarget_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
						alternative
							io_k8s_api_autoscaling_v2_MetricTarget_type_Utilization {doc 'Specific value: Utilization'}
							io_k8s_api_autoscaling_v2_MetricTarget_type_Value {doc 'Specific value: Value'}
							io_k8s_api_autoscaling_v2_MetricTarget_type_AverageValue {doc 'Specific value: AverageValue'}
				optional
					Integer io_k8s_api_autoscaling_v2_MetricTarget_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
					io_k8s_api_autoscaling_v2_MetricTarget_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
						alternative
							String io_k8s_api_autoscaling_v2_MetricTarget_averageValue_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_autoscaling_v2_MetricTarget_averageValue_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_autoscaling_v2_MetricTarget_value {doc 'value is the target value of the metric (as a quantity)'}
						alternative
							String io_k8s_api_autoscaling_v2_MetricTarget_value_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_autoscaling_v2_MetricTarget_value_asNumber {doc 'Sub-feature added of type Number'}
			io_k8s_api_autoscaling_v2_MetricValueStatus {doc 'MetricValueStatus holds the current value for a metric'}
				optional
					Integer io_k8s_api_autoscaling_v2_MetricValueStatus_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
					io_k8s_api_autoscaling_v2_MetricValueStatus_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
						alternative
							String io_k8s_api_autoscaling_v2_MetricValueStatus_averageValue_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_autoscaling_v2_MetricValueStatus_averageValue_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_autoscaling_v2_MetricValueStatus_value {doc 'value is the current value of the metric (as a quantity)'}
						alternative
							String io_k8s_api_autoscaling_v2_MetricValueStatus_value_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_autoscaling_v2_MetricValueStatus_value_asNumber {doc 'Sub-feature added of type Number'}
			io_k8s_api_autoscaling_v2_ObjectMetricSource {doc 'ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object)'}
				mandatory
					io_k8s_api_autoscaling_v2_ObjectMetricSource_describedObject {doc 'describedObject specifies the descriptions of a object,such as kind,name apiVersion'}
						mandatory
							String io_k8s_api_autoscaling_v2_ObjectMetricSource_describedObject_kind {doc 'kind is the kind of the referent; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							String io_k8s_api_autoscaling_v2_ObjectMetricSource_describedObject_name {doc 'name is the name of the referent; More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
						optional
							String io_k8s_api_autoscaling_v2_ObjectMetricSource_describedObject_apiVersion {doc 'apiVersion is the API version of the referent'}
					io_k8s_api_autoscaling_v2_ObjectMetricSource_metric {doc 'metric identifies the target metric by name and selector'}
						mandatory
							String io_k8s_api_autoscaling_v2_ObjectMetricSource_metric_name {doc 'name is the name of the given metric'}
						optional
							io_k8s_api_autoscaling_v2_ObjectMetricSource_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
								optional
									io_k8s_api_autoscaling_v2_ObjectMetricSource_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_autoscaling_v2_ObjectMetricSource_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_autoscaling_v2_ObjectMetricSource_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_autoscaling_v2_ObjectMetricSource_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_autoscaling_v2_ObjectMetricSource_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_autoscaling_v2_ObjectMetricSource_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_autoscaling_v2_ObjectMetricSource_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_autoscaling_v2_ObjectMetricSource_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_autoscaling_v2_ObjectMetricSource_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_autoscaling_v2_ObjectMetricSource_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_autoscaling_v2_ObjectMetricSource_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_autoscaling_v2_ObjectMetricSource_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_autoscaling_v2_ObjectMetricSource_target {doc 'target specifies the target value for the given metric'}
						mandatory
							io_k8s_api_autoscaling_v2_ObjectMetricSource_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
								alternative
									io_k8s_api_autoscaling_v2_ObjectMetricSource_target_type_Utilization {doc 'Specific value: Utilization'}
									io_k8s_api_autoscaling_v2_ObjectMetricSource_target_type_Value {doc 'Specific value: Value'}
									io_k8s_api_autoscaling_v2_ObjectMetricSource_target_type_AverageValue {doc 'Specific value: AverageValue'}
						optional
							Integer io_k8s_api_autoscaling_v2_ObjectMetricSource_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
							io_k8s_api_autoscaling_v2_ObjectMetricSource_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
								alternative
									String io_k8s_api_autoscaling_v2_ObjectMetricSource_target_averageValue_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_autoscaling_v2_ObjectMetricSource_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_autoscaling_v2_ObjectMetricSource_target_value {doc 'value is the target value of the metric (as a quantity)'}
								alternative
									String io_k8s_api_autoscaling_v2_ObjectMetricSource_target_value_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_autoscaling_v2_ObjectMetricSource_target_value_asNumber {doc 'Sub-feature added of type Number'}
			io_k8s_api_autoscaling_v2_ObjectMetricStatus {doc 'ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object)'}
				mandatory
					io_k8s_api_autoscaling_v2_ObjectMetricStatus_current {doc 'current contains the current value for the given metric'}
						optional
							Integer io_k8s_api_autoscaling_v2_ObjectMetricStatus_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
							io_k8s_api_autoscaling_v2_ObjectMetricStatus_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
								alternative
									String io_k8s_api_autoscaling_v2_ObjectMetricStatus_current_averageValue_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_autoscaling_v2_ObjectMetricStatus_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_autoscaling_v2_ObjectMetricStatus_current_value {doc 'value is the current value of the metric (as a quantity)'}
								alternative
									String io_k8s_api_autoscaling_v2_ObjectMetricStatus_current_value_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_autoscaling_v2_ObjectMetricStatus_current_value_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_autoscaling_v2_ObjectMetricStatus_describedObject {doc 'DescribedObject specifies the descriptions of a object,such as kind,name apiVersion'}
						mandatory
							String io_k8s_api_autoscaling_v2_ObjectMetricStatus_describedObject_kind {doc 'kind is the kind of the referent; More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							String io_k8s_api_autoscaling_v2_ObjectMetricStatus_describedObject_name {doc 'name is the name of the referent; More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
						optional
							String io_k8s_api_autoscaling_v2_ObjectMetricStatus_describedObject_apiVersion {doc 'apiVersion is the API version of the referent'}
					io_k8s_api_autoscaling_v2_ObjectMetricStatus_metric {doc 'metric identifies the target metric by name and selector'}
						mandatory
							String io_k8s_api_autoscaling_v2_ObjectMetricStatus_metric_name {doc 'name is the name of the given metric'}
						optional
							io_k8s_api_autoscaling_v2_ObjectMetricStatus_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
								optional
									io_k8s_api_autoscaling_v2_ObjectMetricStatus_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_autoscaling_v2_ObjectMetricStatus_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_autoscaling_v2_ObjectMetricStatus_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_autoscaling_v2_ObjectMetricStatus_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_autoscaling_v2_ObjectMetricStatus_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_autoscaling_v2_ObjectMetricStatus_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_autoscaling_v2_ObjectMetricStatus_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_autoscaling_v2_ObjectMetricStatus_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_autoscaling_v2_ObjectMetricStatus_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_autoscaling_v2_ObjectMetricStatus_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_autoscaling_v2_ObjectMetricStatus_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_autoscaling_v2_ObjectMetricStatus_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
			io_k8s_api_autoscaling_v2_PodsMetricSource {doc 'PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second) The values will be averaged together before being compared to the target value'}
				mandatory
					io_k8s_api_autoscaling_v2_PodsMetricSource_metric {doc 'metric identifies the target metric by name and selector'}
						mandatory
							String io_k8s_api_autoscaling_v2_PodsMetricSource_metric_name {doc 'name is the name of the given metric'}
						optional
							io_k8s_api_autoscaling_v2_PodsMetricSource_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
								optional
									io_k8s_api_autoscaling_v2_PodsMetricSource_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_autoscaling_v2_PodsMetricSource_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_autoscaling_v2_PodsMetricSource_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_autoscaling_v2_PodsMetricSource_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_autoscaling_v2_PodsMetricSource_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_autoscaling_v2_PodsMetricSource_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_autoscaling_v2_PodsMetricSource_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_autoscaling_v2_PodsMetricSource_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_autoscaling_v2_PodsMetricSource_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_autoscaling_v2_PodsMetricSource_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_autoscaling_v2_PodsMetricSource_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_autoscaling_v2_PodsMetricSource_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_autoscaling_v2_PodsMetricSource_target {doc 'target specifies the target value for the given metric'}
						mandatory
							io_k8s_api_autoscaling_v2_PodsMetricSource_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
								alternative
									io_k8s_api_autoscaling_v2_PodsMetricSource_target_type_Utilization {doc 'Specific value: Utilization'}
									io_k8s_api_autoscaling_v2_PodsMetricSource_target_type_Value {doc 'Specific value: Value'}
									io_k8s_api_autoscaling_v2_PodsMetricSource_target_type_AverageValue {doc 'Specific value: AverageValue'}
						optional
							Integer io_k8s_api_autoscaling_v2_PodsMetricSource_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
							io_k8s_api_autoscaling_v2_PodsMetricSource_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
								alternative
									String io_k8s_api_autoscaling_v2_PodsMetricSource_target_averageValue_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_autoscaling_v2_PodsMetricSource_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_autoscaling_v2_PodsMetricSource_target_value {doc 'value is the target value of the metric (as a quantity)'}
								alternative
									String io_k8s_api_autoscaling_v2_PodsMetricSource_target_value_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_autoscaling_v2_PodsMetricSource_target_value_asNumber {doc 'Sub-feature added of type Number'}
			io_k8s_api_autoscaling_v2_PodsMetricStatus {doc 'PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second)'}
				mandatory
					io_k8s_api_autoscaling_v2_PodsMetricStatus_current {doc 'current contains the current value for the given metric'}
						optional
							Integer io_k8s_api_autoscaling_v2_PodsMetricStatus_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
							io_k8s_api_autoscaling_v2_PodsMetricStatus_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
								alternative
									String io_k8s_api_autoscaling_v2_PodsMetricStatus_current_averageValue_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_autoscaling_v2_PodsMetricStatus_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_autoscaling_v2_PodsMetricStatus_current_value {doc 'value is the current value of the metric (as a quantity)'}
								alternative
									String io_k8s_api_autoscaling_v2_PodsMetricStatus_current_value_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_autoscaling_v2_PodsMetricStatus_current_value_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_autoscaling_v2_PodsMetricStatus_metric {doc 'metric identifies the target metric by name and selector'}
						mandatory
							String io_k8s_api_autoscaling_v2_PodsMetricStatus_metric_name {doc 'name is the name of the given metric'}
						optional
							io_k8s_api_autoscaling_v2_PodsMetricStatus_metric_selector {doc 'selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics'}
								optional
									io_k8s_api_autoscaling_v2_PodsMetricStatus_metric_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_autoscaling_v2_PodsMetricStatus_metric_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_autoscaling_v2_PodsMetricStatus_metric_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_autoscaling_v2_PodsMetricStatus_metric_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_autoscaling_v2_PodsMetricStatus_metric_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_autoscaling_v2_PodsMetricStatus_metric_selector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_autoscaling_v2_PodsMetricStatus_metric_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_autoscaling_v2_PodsMetricStatus_metric_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_autoscaling_v2_PodsMetricStatus_metric_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_autoscaling_v2_PodsMetricStatus_metric_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_autoscaling_v2_PodsMetricStatus_metric_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_autoscaling_v2_PodsMetricStatus_metric_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
			io_k8s_api_autoscaling_v2_ResourceMetricSource {doc 'ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (eg CPU or memory)  The values will be averaged together before being compared to the target  Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the pods source  Only one target type should be set'}
				mandatory
					String io_k8s_api_autoscaling_v2_ResourceMetricSource_name {doc 'name is the name of the resource in question'}
					io_k8s_api_autoscaling_v2_ResourceMetricSource_target {doc 'target specifies the target value for the given metric'}
						mandatory
							io_k8s_api_autoscaling_v2_ResourceMetricSource_target_type {doc 'type represents whether the metric type is Utilization, Value, or AverageValue'}
								alternative
									io_k8s_api_autoscaling_v2_ResourceMetricSource_target_type_Utilization {doc 'Specific value: Utilization'}
									io_k8s_api_autoscaling_v2_ResourceMetricSource_target_type_Value {doc 'Specific value: Value'}
									io_k8s_api_autoscaling_v2_ResourceMetricSource_target_type_AverageValue {doc 'Specific value: AverageValue'}
						optional
							Integer io_k8s_api_autoscaling_v2_ResourceMetricSource_target_averageUtilization {doc 'averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods Currently only valid for Resource metric source type'}
							io_k8s_api_autoscaling_v2_ResourceMetricSource_target_averageValue {doc 'averageValue is the target value of the average of the metric across all relevant pods (as a quantity)'}
								alternative
									String io_k8s_api_autoscaling_v2_ResourceMetricSource_target_averageValue_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_autoscaling_v2_ResourceMetricSource_target_averageValue_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_autoscaling_v2_ResourceMetricSource_target_value {doc 'value is the target value of the metric (as a quantity)'}
								alternative
									String io_k8s_api_autoscaling_v2_ResourceMetricSource_target_value_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_autoscaling_v2_ResourceMetricSource_target_value_asNumber {doc 'Sub-feature added of type Number'}
			io_k8s_api_autoscaling_v2_ResourceMetricStatus {doc 'ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (eg CPU or memory)  Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the pods source'}
				mandatory
					io_k8s_api_autoscaling_v2_ResourceMetricStatus_current {doc 'current contains the current value for the given metric'}
						optional
							Integer io_k8s_api_autoscaling_v2_ResourceMetricStatus_current_averageUtilization {doc 'currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods'}
							io_k8s_api_autoscaling_v2_ResourceMetricStatus_current_averageValue {doc 'averageValue is the current value of the average of the metric across all relevant pods (as a quantity)'}
								alternative
									String io_k8s_api_autoscaling_v2_ResourceMetricStatus_current_averageValue_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_autoscaling_v2_ResourceMetricStatus_current_averageValue_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_autoscaling_v2_ResourceMetricStatus_current_value {doc 'value is the current value of the metric (as a quantity)'}
								alternative
									String io_k8s_api_autoscaling_v2_ResourceMetricStatus_current_value_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_autoscaling_v2_ResourceMetricStatus_current_value_asNumber {doc 'Sub-feature added of type Number'}
					String io_k8s_api_autoscaling_v2_ResourceMetricStatus_name {doc 'name is the name of the resource in question'}
			io_k8s_api_batch_v1_CronJob {doc 'CronJob represents the configuration of a single cron job'}
				optional
					String io_k8s_api_batch_v1_CronJob_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_batch_v1_CronJob_kind {default 'CronJob', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_batch_v1_CronJob_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_batch_v1_CronJob_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_batch_v1_CronJob_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_batch_v1_CronJob_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_batch_v1_CronJob_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_batch_v1_CronJob_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_batch_v1_CronJob_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_batch_v1_CronJob_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_batch_v1_CronJob_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_batch_v1_CronJob_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_batch_v1_CronJob_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_batch_v1_CronJob_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_batch_v1_CronJob_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_batch_v1_CronJob_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_batch_v1_CronJob_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_batch_v1_CronJob_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_batch_v1_CronJob_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_batch_v1_CronJob_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_batch_v1_CronJob_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_batch_v1_CronJob_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_batch_v1_CronJob_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_batch_v1_CronJob_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_batch_v1_CronJob_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_batch_v1_CronJob_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_batch_v1_CronJob_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_batch_v1_CronJob_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_batch_v1_CronJob_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_batch_v1_CronJob_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_batch_v1_CronJob_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_batch_v1_CronJob_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_batch_v1_CronJob_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_batch_v1_CronJob_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_batch_v1_CronJob_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_batch_v1_CronJob_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_batch_v1_CronJob_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_batch_v1_CronJob_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_batch_v1_CronJob_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_batch_v1_CronJob_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_batch_v1_CronJob_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_batch_v1_CronJob_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_batch_v1_CronJob_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_batch_v1_CronJob_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_batch_v1_CronJob_spec {doc 'Specification of the desired behavior of a cron job, including the schedule More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						mandatory
							io_k8s_api_batch_v1_CronJob_spec_jobTemplate {doc 'Specifies the job that will be created when executing a CronJob'}
								optional
									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata {doc 'Standard object_s metadata of the jobs created from this template More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
												optional
													String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
											Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
											Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
												mandatory
													String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
												optional
													String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_managedFields_apiVersion {doc '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'}
													String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
														optional
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
													String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
														alternative
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
													String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_managedFields_subresource {doc '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'}
													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_managedFields_time {doc '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'}
														optional
															String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
													String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
													String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
													String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
												optional
													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec {doc 'Specification of the desired behavior of the job More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
										mandatory
											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template {doc 'Describes the pod that will be created when executing a job The only allowed templatespecrestartPolicy values are Never or OnFailure More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
												optional
													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
														optional
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																optional
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																optional
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
															Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_deletionGracePeriodSeconds {doc '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'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																optional
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_finalizers cardinality [1..*] {doc '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'}
																mandatory
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
															Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																mandatory
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_managedFields cardinality [1..*] {doc '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'}
																optional
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_managedFields_apiVersion {doc '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'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																		alternative
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_managedFields_subresource {doc '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'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_managedFields_time {doc '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'}
																		optional
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
															String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
																mandatory
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																optional
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
															String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
															String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
															String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
														mandatory
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
																mandatory
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
																optional
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																		optional
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																								alternative
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																		alternative
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																						optional
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																						mandatory
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																						mandatory
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																						mandatory
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																						optional
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																						mandatory
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																						mandatory
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																						mandatory
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																		optional
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																		mandatory
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				alternative
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				alternative
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																						alternative
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																						mandatory
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																						alternative
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																						mandatory
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																		optional
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
														optional
															Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
																optional
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																						optional
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																										alternative
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																										alternative
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																						optional
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																										alternative
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																										alternative
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																						optional
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																								optional
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																												alternative
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																										optional
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																								optional
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																												alternative
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																										optional
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																						optional
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																						optional
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																						optional
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																								optional
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																												alternative
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																										optional
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																								optional
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																												alternative
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																										optional
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																						optional
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																						optional
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
																optional
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_dnsConfig_options_name {doc 'Required'}
																		optional
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_dnsConfig_options_value
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
																alternative
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_dnsPolicy_None {doc 'Specific value: None'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
																mandatory
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
																optional
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																		optional
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																								alternative
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																		alternative
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																						optional
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																						mandatory
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																						mandatory
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																						mandatory
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																						optional
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																						mandatory
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																						mandatory
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																						mandatory
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																		optional
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																		mandatory
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				alternative
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				alternative
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																						alternative
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																						mandatory
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																						alternative
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																						mandatory
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																		optional
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
																mandatory
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
																optional
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
															String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
																optional
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
																mandatory
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
																optional
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																		optional
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																								alternative
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																		alternative
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																						optional
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																						mandatory
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																						mandatory
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																						mandatory
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																						optional
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																						mandatory
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																						mandatory
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																						mandatory
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																		optional
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																		mandatory
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				alternative
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				alternative
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																						alternative
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																						mandatory
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																						alternative
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																						mandatory
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																		optional
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
															String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
																mandatory
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
																mandatory
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
																		alternative
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows {doc 'Specific value: windows'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_linux {doc 'Specific value: linux'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
																alternative
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
																alternative
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
															Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
															String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
																mandatory
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
																mandatory
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
																optional
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
																alternative
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
															String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
															String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
																mandatory
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
																optional
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
																		alternative
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																		optional
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																		optional
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
															String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
															String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
															Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
																optional
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
																		alternative
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
																		alternative
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
																	Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
																mandatory
																	Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
																optional
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
																mandatory
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																optional
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
																		mandatory
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																		optional
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
																		optional
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																				optional
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
																		optional
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
																		optional
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																								alternative
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																		optional
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																				alternative
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
																				mandatory
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																						optional
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																								optional
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																								optional
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																								optional
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																										alternative
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																										alternative
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																								optional
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																												alternative
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																										optional
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																						optional
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																								optional
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																								optional
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																								optional
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																								optional
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																										optional
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																										alternative
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																										optional
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																								optional
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
																		optional
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
																		optional
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
																		optional
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
																				optional
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																						optional
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																								optional
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																												alternative
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																										optional
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																						optional
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																								optional
																									Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																						optional
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																								optional
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																										optional
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																									Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																									io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																										optional
																											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																												alternative
																													String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																													Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																						optional
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																									String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																								optional
																									Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																							io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																						optional
																							String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																							Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
																		optional
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
																		optional
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																				optional
																					Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
																				optional
																					String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
																		optional
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																				alternative
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																					io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
																			String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
												alternative
													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_Never {doc 'Specific value: Never'}
													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_OnFailure {doc 'Specific value: OnFailure'}
										optional
											Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_activeDeadlineSeconds {doc 'Specifies the duration in seconds relative to the startTime that the job may be continuously active before the system tries to terminate it; value must be positive integer If a Job is suspended (at creation or through an update), this timer will effectively be stopped and reset when the Job is resumed again'}
											Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_backoffLimit {default 6, doc 'Specifies the number of retries before marking this job failed Defaults to 6'}
											Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_backoffLimitPerIndex {doc 'Specifies the limit for the number of retries within an index before marking this index as failed When enabled the number of failures per index is kept in the pod_s batchkubernetesio/job-index-failure-count annotation It can only be set when Job_s completionMode=Indexed, and the Pod_s restart policy is Never The field is immutable This field is beta-level It can be used when the JobBackoffLimitPerIndex feature gate is enabled (enabled by default)'}
											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_completionMode {doc 'completionMode specifies how Pod completions are tracked It can be NonIndexed (default) or IndexedNonIndexed means that the Job is considered complete when there have been speccompletions successfully completed Pods Each Pod completion is homologous to each otherIndexed means that the Pods of a Job get an associated completion index from 0 to (speccompletions - 1), available in the annotation batchkubernetesio/job-completion-index The Job is considered complete when there is one successfully completed Pod for each index When value is Indexed, speccompletions must be specified and specparallelism must be less than or equal to 10^5 In addition, The Pod name takes the form $(job-name)-$(index)-$(random-string), the Pod hostname takes the form $(job-name)-$(index)More completion modes can be added in the future If the Job controller observes a mode that it doesn_t recognize, which is possible during upgrades due to version skew, the controller skips updates for the Job'}
												alternative
													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_completionMode_Indexed {doc 'Specific value: Indexed'}
													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_completionMode_NonIndexed {doc 'Specific value: NonIndexed'}
											Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_completions {doc 'Specifies the desired number of successfully finished pods the job should be run with  Setting to null means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value  Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_managedBy {doc 'ManagedBy field indicates the controller that manages a Job The k8s Job controller reconciles jobs which don_t have this field at all or the field value is the reserved string kubernetesio/job-controller, but skips reconciling Jobs with a custom value for this field The value must be a valid domain-prefixed path (eg acmeio/foo) - all characters before the first / must be a valid subdomain as defined by RFC 1123 All characters trailing the first / must be valid HTTP Path characters as defined by RFC 3986 The value cannot exceed 64 charactersThis field is alpha-level The job controller accepts setting the field when the feature gate JobManagedBy is enabled (disabled by default)'}
											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_manualSelector {doc 'manualSelector controls generation of pod labels and pod selectors Leave manualSelector unset unless you are certain what you are doing When false or unset, the system pick labels unique to this job and appends those labels to the pod template  When true, the user is responsible for picking unique labels and specifying the selector  Failure to pick a unique label may cause this and other jobs to not function correctly  However, You may see manualSelector=true in jobs that were created with the old extensions/v1beta1 API More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector'}
											Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_maxFailedIndexes {doc 'Specifies the maximal number of failed indexes before marking the Job as failed, when backoffLimitPerIndex is set Once the number of failed indexes exceeds this number the entire Job is marked as Failed and its execution is terminated When left as null the job continues execution of all of its indexes and is marked with the Complete Job condition It can only be specified when backoffLimitPerIndex is set It can be null or up to completions It is required and must be less than or equal to 10^4 when is completions greater than 10^5 This field is beta-level It can be used when the JobBackoffLimitPerIndex feature gate is enabled (enabled by default)'}
											Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_parallelism {doc 'Specifies the maximum desired number of pods the job should run at any given time The actual number of pods running in steady state will be less than this number when ((speccompletions - statussuccessful) < specparallelism), ie when the work left to do is less than max parallelism More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podFailurePolicy {doc 'Specifies the policy of handling failed pods In particular, it allows to specify the set of actions and conditions which need to be satisfied to take the associated action If empty, the default behaviour applies - the counter of failed pods, represented by the jobs_s statusfailed field, is incremented and it is checked against the backoffLimit This field cannot be used in combination with restartPolicy=OnFailureThis field is beta-level It can be used when the JobPodFailurePolicy feature gate is enabled (enabled by default)'}
												mandatory
													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podFailurePolicy_rules cardinality [1..*] {doc 'A list of pod failure policy rules The rules are evaluated in order Once a rule matches a Pod failure, the remaining of the rules are ignored When no rule matches the Pod failure, the default handling applies - the counter of pod failures is incremented and it is checked against the backoffLimit At most 20 elements are allowed'}
														mandatory
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podFailurePolicy_rules_action {doc 'Specifies the action taken on a pod failure when the requirements are satisfied Possible values are:- FailJob: indicates that the pod_s job is marked as Failed and all  running pods are terminated- FailIndex: indicates that the pod_s index is marked as Failed and will  not be restarted  This value is beta-level It can be used when the  JobBackoffLimitPerIndex feature gate is enabled (enabled by default)- Ignore: indicates that the counter towards the backoffLimit is not  incremented and a replacement pod is created- Count: indicates that the pod is handled in the default way - the  counter towards the backoffLimit is incrementedAdditional values are considered to be added in the future Clients should react to an unknown action by skipping the rule'}
																alternative
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podFailurePolicy_rules_action_FailIndex {doc 'Specific value: FailIndex'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podFailurePolicy_rules_action_Count {doc 'Specific value: Count'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podFailurePolicy_rules_action_FailJob {doc 'Specific value: FailJob'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podFailurePolicy_rules_action_Ignore {doc 'Specific value: Ignore'}
														optional
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes {doc 'Represents the requirement on the container exit codes'}
																mandatory
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes_operator {doc 'Represents the relationship between the container exit code(s) and the specified values Containers completed with success (exit code 0) are excluded from the requirement check Possible values are:- In: the requirement is satisfied if at least one container exit code  (might be multiple if there are multiple containers not restricted  by the _containerName_ field) is in the set of specified values- NotIn: the requirement is satisfied if at least one container exit code  (might be multiple if there are multiple containers not restricted  by the _containerName_ field) is not in the set of specified valuesAdditional values are considered to be added in the future Clients should react to an unknown operator by assuming the requirement is not satisfied'}
																		alternative
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes_operator_In {doc 'Specific value: In'}
																			io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes_operator_containerName {doc 'Specific value: containerName'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes_values cardinality [1..*] {doc 'Specifies the set of values Each returned container exit code (might be multiple in case of multiple containers) is checked against this set of values with respect to the operator The list of values must be ordered and must not contain duplicates Value _0_ cannot be used for the In operator At least one element is required At most 255 elements are allowed'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes_values_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
																optional
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes_containerName {doc 'Restricts the check for exit codes to the container with the specified name When null, the rule applies to all containers When specified, it should match one the container or initContainer names in the pod template'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podFailurePolicy_rules_onPodConditions cardinality [1..*] {doc 'Represents the requirement on the pod conditions The requirement is represented as a list of pod condition patterns The requirement is satisfied if at least one pattern matches an actual pod condition At most 20 elements are allowed'}
																mandatory
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podFailurePolicy_rules_onPodConditions_status {default true, doc 'Specifies the required Pod condition status To match a pod condition it is required that the specified status equals the pod condition status Defaults to True'}
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podFailurePolicy_rules_onPodConditions_type {doc 'Specifies the required Pod condition type To match a pod condition it is required that specified type equals the pod condition type'}
											String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podReplacementPolicy {doc 'podReplacementPolicy specifies when to create replacement Pods Possible values are: - TerminatingOrFailed means that we recreate pods  when they are terminating (has a metadatadeletionTimestamp) or failed- Failed means to wait until a previously created Pod is fully terminated (has phase  Failed or Succeeded) before creating a replacement PodWhen using podFailurePolicy, Failed is the the only allowed value TerminatingOrFailed and Failed are allowed values when podFailurePolicy is not in use This is an beta field To use this, enable the JobPodReplacementPolicy feature toggle This is on by default'}
											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_selector {doc 'A label query over pods that should match the pod count Normally, the system sets this field for you More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/#label-selectors'}
												optional
													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_successPolicy {doc 'successPolicy specifies the policy when the Job can be declared as succeeded If empty, the default behavior applies - the Job is declared as succeeded only when the number of succeeded pods equals to the completions When the field is specified, it must be immutable and works only for the Indexed Jobs Once the Job meets the SuccessPolicy, the lingering pods are terminatedThis field  is alpha-level To use this field, you must enable the JobSuccessPolicy feature gate (disabled by default)'}
												mandatory
													io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_successPolicy_rules cardinality [1..*] {doc 'rules represents the list of alternative rules for the declaring the Jobs as successful before statussucceeded >= speccompletions Once any of the rules are met, the SucceededCriteriaMet condition is added, and the lingering pods are removed The terminal state for such a Job has the Complete condition Additionally, these rules are evaluated in order; Once the Job meets one of the rules, other rules are ignored At most 20 elements are allowed'}
														optional
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_successPolicy_rules_succeededCount {abstract, doc 'succeededCount specifies the minimal required size of the actual set of the succeeded indexes for the Job When succeededCount is used along with succeededIndexes, the check is constrained only to the set of indexes specified by succeededIndexes For example, given that succeededIndexes is 1-4, succeededCount is 3, and completed indexes are 1, 3, and 5, the Job isn_t declared as succeeded because only 1 and 3 indexes are considered in that rules When this field is null, this doesn_t default to any value and is never evaluated at any time When specified it needs to be a positive integer'}
																mandatory
																	Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_successPolicy_rules_succeededCount_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_successPolicy_rules_succeededIndexes {abstract, doc 'succeededIndexes specifies the set of indexes which need to be contained in the actual set of the succeeded indexes for the Job The list of indexes must be within 0 to speccompletions-1 and must not contain duplicates At least one element is required The indexes are represented as intervals separated by commas The intervals can be a decimal integer or a pair of decimal integers separated by a hyphen The number are listed in represented by the first and last element of the series, separated by a hyphen For example, if the completed indexes are 1, 3, 4, 5 and 7, they are represented as 1,3-5,7 When this field is null, this field doesn_t default to any value and is never evaluated at any time'}
																mandatory
																	String io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_successPolicy_rules_succeededIndexes_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_suspend {default false, doc 'suspend specifies whether the Job controller should create Pods or not If a Job is created with suspend set to true, no Pods are created by the Job controller If a Job is suspended after creation (ie the flag goes from false to true), the Job controller will delete all active Pods associated with this Job Users must design their workload to gracefully handle this Suspending a Job will reset the StartTime field of the Job, effectively resetting the ActiveDeadlineSeconds timer too Defaults to false'}
											Integer io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_ttlSecondsAfterFinished {doc 'ttlSecondsAfterFinished limits the lifetime of a Job that has finished execution (either Complete or Failed) If this field is set, ttlSecondsAfterFinished after the Job finishes, it is eligible to be automatically deleted When the Job is being deleted, its lifecycle guarantees (eg finalizers) will be honored If this field is unset, the Job won_t be automatically deleted If this field is set to zero, the Job becomes eligible to be deleted immediately after it finishes'}
							String io_k8s_api_batch_v1_CronJob_spec_schedule {doc 'The schedule in Cron format, see https:_enwikipediaorg/wiki/Cron'}
						optional
							io_k8s_api_batch_v1_CronJob_spec_concurrencyPolicy {doc 'Specifies how to treat concurrent executions of a Job Valid values are:- Allow (default): allows CronJobs to run concurrently; - Forbid: forbids concurrent runs, skipping next run if previous run hasn_t finished yet; - Replace: cancels currently running job and replaces it with a new one'}
								alternative
									io_k8s_api_batch_v1_CronJob_spec_concurrencyPolicy_Forbid {doc 'Specific value: Forbid'}
									io_k8s_api_batch_v1_CronJob_spec_concurrencyPolicy_Allow {doc 'Specific value: Allow'}
									io_k8s_api_batch_v1_CronJob_spec_concurrencyPolicy_Replace {doc 'Specific value: Replace'}
							Integer io_k8s_api_batch_v1_CronJob_spec_failedJobsHistoryLimit {default 1, doc 'The number of failed finished jobs to retain Value must be non-negative integer Defaults to 1'}
							Integer io_k8s_api_batch_v1_CronJob_spec_startingDeadlineSeconds {doc 'Optional deadline in seconds for starting the job if it misses scheduled time for any reason  Missed jobs executions will be counted as failed ones'}
							Integer io_k8s_api_batch_v1_CronJob_spec_successfulJobsHistoryLimit {default 3, doc 'The number of successful finished jobs to retain Value must be non-negative integer Defaults to 3'}
							io_k8s_api_batch_v1_CronJob_spec_suspend {default false, doc 'This flag tells the controller to suspend subsequent executions, it does not apply to already started executions  Defaults to false'}
							String io_k8s_api_batch_v1_CronJob_spec_timeZone {doc 'The time zone name for the given schedule, see https:_enwikipediaorg/wiki/List_of_tz_database_time_zones If not specified, this will default to the time zone of the kube-controller-manager process The set of valid time zone names and the time zone offset is loaded from the system-wide time zone database by the API server during CronJob validation and the controller manager during execution If no system-wide time zone database can be found a bundled version of the database is used instead If the time zone name becomes invalid during the lifetime of a CronJob or due to a change in host configuration, the controller will stop creating new new Jobs and will create a system event with the reason UnknownTimeZone More information can be found in https:_kubernetesio/docs/concepts/workloads/controllers/cron-jobs/#time-zones'}
					io_k8s_api_batch_v1_CronJob_status {doc 'Current status of a cron job More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							io_k8s_api_batch_v1_CronJob_status_active cardinality [1..*] {doc 'A list of pointers to currently running jobs'}
								optional
									String io_k8s_api_batch_v1_CronJob_status_active_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_batch_v1_CronJob_status_active_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
									String io_k8s_api_batch_v1_CronJob_status_active_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_batch_v1_CronJob_status_active_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									String io_k8s_api_batch_v1_CronJob_status_active_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
									String io_k8s_api_batch_v1_CronJob_status_active_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_batch_v1_CronJob_status_active_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
							io_k8s_api_batch_v1_CronJob_status_lastScheduleTime {doc 'Information when was the last time the job was successfully scheduled'}
								optional
									String io_k8s_api_batch_v1_CronJob_status_lastScheduleTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_batch_v1_CronJob_status_lastSuccessfulTime {doc 'Information when was the last time the job successfully completed'}
								optional
									String io_k8s_api_batch_v1_CronJob_status_lastSuccessfulTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
			io_k8s_api_batch_v1_CronJobList {doc 'CronJobList is a collection of cron jobs'}
				mandatory
					io_k8s_api_batch_v1_CronJobList_items cardinality [1..*] {doc 'items is the list of CronJobs'}
						optional
							String io_k8s_api_batch_v1_CronJobList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_batch_v1_CronJobList_items_kind {default 'CronJob', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_batch_v1_CronJobList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_batch_v1_CronJobList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_batch_v1_CronJobList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_batch_v1_CronJobList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_batch_v1_CronJobList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_batch_v1_CronJobList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_batch_v1_CronJobList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_batch_v1_CronJobList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_batch_v1_CronJobList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_batch_v1_CronJobList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_batch_v1_CronJobList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_batch_v1_CronJobList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_batch_v1_CronJobList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_batch_v1_CronJobList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_batch_v1_CronJobList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_batch_v1_CronJobList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_batch_v1_CronJobList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_batch_v1_CronJobList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_batch_v1_CronJobList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_batch_v1_CronJobList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_batch_v1_CronJobList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_batch_v1_CronJobList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_batch_v1_CronJobList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_batch_v1_CronJobList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_batch_v1_CronJobList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_batch_v1_CronJobList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_batch_v1_CronJobList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_batch_v1_CronJobList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_batch_v1_CronJobList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_batch_v1_CronJobList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_batch_v1_CronJobList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_batch_v1_CronJobList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_batch_v1_CronJobList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_batch_v1_CronJobList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_batch_v1_CronJobList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_batch_v1_CronJobList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_batch_v1_CronJobList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_batch_v1_CronJobList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_batch_v1_CronJobList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_batch_v1_CronJobList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_batch_v1_CronJobList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_batch_v1_CronJobList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_batch_v1_CronJobList_items_spec {doc 'Specification of the desired behavior of a cron job, including the schedule More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate {doc 'Specifies the job that will be created when executing a CronJob'}
										optional
											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata {doc 'Standard object_s metadata of the jobs created from this template More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
														optional
															String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
														optional
															String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
													Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
														optional
															String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
														mandatory
															String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
													Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
														mandatory
															String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
														optional
															String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_managedFields_apiVersion {doc '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'}
															String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																optional
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
															String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																alternative
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
															String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_managedFields_subresource {doc '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'}
															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_managedFields_time {doc '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'}
																optional
																	String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
														mandatory
															String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
															String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
															String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
															String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
														optional
															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec {doc 'Specification of the desired behavior of the job More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
												mandatory
													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template {doc 'Describes the pod that will be created when executing a job The only allowed templatespecrestartPolicy values are Never or OnFailure More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
														optional
															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																optional
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																		optional
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																		optional
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																	Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_deletionGracePeriodSeconds {doc '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'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																		optional
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_finalizers cardinality [1..*] {doc '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'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																	Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_managedFields cardinality [1..*] {doc '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'}
																		optional
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_managedFields_apiVersion {doc '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'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																				alternative
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_managedFields_subresource {doc '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'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_managedFields_time {doc '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'}
																				optional
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																	String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																	String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																		optional
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																	String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																	String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																	String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
																mandatory
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
																		optional
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																				optional
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																										alternative
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																				alternative
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																								optional
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																								mandatory
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																										alternative
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																								mandatory
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																								mandatory
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																										alternative
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																								optional
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																								mandatory
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																										alternative
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																								mandatory
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																								mandatory
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																										alternative
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																						mandatory
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																				optional
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																						mandatory
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																						alternative
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																						alternative
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																								alternative
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																								mandatory
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																						mandatory
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																						mandatory
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																								alternative
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																								mandatory
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																						mandatory
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																				optional
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
																optional
																	Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
																		optional
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																								optional
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																												alternative
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																										optional
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																												alternative
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																										optional
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																								optional
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																												alternative
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																										optional
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																												alternative
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																										optional
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																								optional
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																										optional
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																														alternative
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																												optional
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																														mandatory
																															String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																										optional
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																														alternative
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																												optional
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																														mandatory
																															String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																								optional
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																												alternative
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																										optional
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																								optional
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																												alternative
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																										optional
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																								optional
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																										optional
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																														alternative
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																												optional
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																														mandatory
																															String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																										optional
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																														alternative
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																												optional
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																														mandatory
																															String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																								optional
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																												alternative
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																										optional
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																								optional
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																												alternative
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																										optional
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
																		optional
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_dnsConfig_options_name {doc 'Required'}
																				optional
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_dnsConfig_options_value
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
																		alternative
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_dnsPolicy_None {doc 'Specific value: None'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
																		optional
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																				optional
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																										alternative
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																				alternative
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																								optional
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																								mandatory
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																										alternative
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																								mandatory
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																								mandatory
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																										alternative
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																								optional
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																								mandatory
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																										alternative
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																								mandatory
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																								mandatory
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																										alternative
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																						mandatory
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																				optional
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																						mandatory
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																						alternative
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																						alternative
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																								alternative
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																								mandatory
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																						mandatory
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																						mandatory
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																								alternative
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																								mandatory
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																						mandatory
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																				optional
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
																		optional
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
																	String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
																		optional
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
																		optional
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																				optional
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																										alternative
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																				alternative
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																								optional
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																								mandatory
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																										alternative
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																								mandatory
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																								mandatory
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																										alternative
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																								optional
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																								mandatory
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																										alternative
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																								mandatory
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																								mandatory
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																										alternative
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																						mandatory
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																				optional
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																						mandatory
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																						alternative
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																						alternative
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																								alternative
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																								mandatory
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																						mandatory
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																						mandatory
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																								alternative
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																								mandatory
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																						mandatory
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																								alternative
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																				optional
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
																	String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
																				alternative
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows {doc 'Specific value: windows'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_linux {doc 'Specific value: linux'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
																		alternative
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
																		alternative
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
																	Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
																	String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
																		optional
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
																		alternative
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
																	String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
																	String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
																		optional
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
																				alternative
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																				optional
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																				optional
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
																	String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
																	String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
																	Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
																		optional
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
																				alternative
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
																				alternative
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
																			Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
																		optional
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																		optional
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																				optional
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
																				optional
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																						optional
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
																				optional
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
																				optional
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																										alternative
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																				optional
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																						alternative
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
																						mandatory
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																								optional
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																										optional
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																										optional
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																										optional
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																												alternative
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																													Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																												alternative
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																													Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																										optional
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																														alternative
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																												optional
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																														mandatory
																															String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																								optional
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																										optional
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																										optional
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																										optional
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																										optional
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																												optional
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																												alternative
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																												optional
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																										optional
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
																				optional
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
																				optional
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
																				optional
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
																						optional
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																								optional
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																										optional
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																														alternative
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																												optional
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																														mandatory
																															String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																								optional
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																										optional
																											Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																								optional
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																										optional
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																												optional
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																											Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																											io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																												mandatory
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																												optional
																													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																														alternative
																															String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																															Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																								optional
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																											String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																										optional
																											Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																									io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																								optional
																									String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																									Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
																				optional
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
																				optional
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																						optional
																							Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
																						optional
																							String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
																				optional
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																						alternative
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																							io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
																					String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
														alternative
															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_Never {doc 'Specific value: Never'}
															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_OnFailure {doc 'Specific value: OnFailure'}
												optional
													Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_activeDeadlineSeconds {doc 'Specifies the duration in seconds relative to the startTime that the job may be continuously active before the system tries to terminate it; value must be positive integer If a Job is suspended (at creation or through an update), this timer will effectively be stopped and reset when the Job is resumed again'}
													Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_backoffLimit {default 6, doc 'Specifies the number of retries before marking this job failed Defaults to 6'}
													Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_backoffLimitPerIndex {doc 'Specifies the limit for the number of retries within an index before marking this index as failed When enabled the number of failures per index is kept in the pod_s batchkubernetesio/job-index-failure-count annotation It can only be set when Job_s completionMode=Indexed, and the Pod_s restart policy is Never The field is immutable This field is beta-level It can be used when the JobBackoffLimitPerIndex feature gate is enabled (enabled by default)'}
													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_completionMode {doc 'completionMode specifies how Pod completions are tracked It can be NonIndexed (default) or IndexedNonIndexed means that the Job is considered complete when there have been speccompletions successfully completed Pods Each Pod completion is homologous to each otherIndexed means that the Pods of a Job get an associated completion index from 0 to (speccompletions - 1), available in the annotation batchkubernetesio/job-completion-index The Job is considered complete when there is one successfully completed Pod for each index When value is Indexed, speccompletions must be specified and specparallelism must be less than or equal to 10^5 In addition, The Pod name takes the form $(job-name)-$(index)-$(random-string), the Pod hostname takes the form $(job-name)-$(index)More completion modes can be added in the future If the Job controller observes a mode that it doesn_t recognize, which is possible during upgrades due to version skew, the controller skips updates for the Job'}
														alternative
															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_completionMode_Indexed {doc 'Specific value: Indexed'}
															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_completionMode_NonIndexed {doc 'Specific value: NonIndexed'}
													Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_completions {doc 'Specifies the desired number of successfully finished pods the job should be run with  Setting to null means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value  Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_managedBy {doc 'ManagedBy field indicates the controller that manages a Job The k8s Job controller reconciles jobs which don_t have this field at all or the field value is the reserved string kubernetesio/job-controller, but skips reconciling Jobs with a custom value for this field The value must be a valid domain-prefixed path (eg acmeio/foo) - all characters before the first / must be a valid subdomain as defined by RFC 1123 All characters trailing the first / must be valid HTTP Path characters as defined by RFC 3986 The value cannot exceed 64 charactersThis field is alpha-level The job controller accepts setting the field when the feature gate JobManagedBy is enabled (disabled by default)'}
													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_manualSelector {doc 'manualSelector controls generation of pod labels and pod selectors Leave manualSelector unset unless you are certain what you are doing When false or unset, the system pick labels unique to this job and appends those labels to the pod template  When true, the user is responsible for picking unique labels and specifying the selector  Failure to pick a unique label may cause this and other jobs to not function correctly  However, You may see manualSelector=true in jobs that were created with the old extensions/v1beta1 API More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector'}
													Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_maxFailedIndexes {doc 'Specifies the maximal number of failed indexes before marking the Job as failed, when backoffLimitPerIndex is set Once the number of failed indexes exceeds this number the entire Job is marked as Failed and its execution is terminated When left as null the job continues execution of all of its indexes and is marked with the Complete Job condition It can only be specified when backoffLimitPerIndex is set It can be null or up to completions It is required and must be less than or equal to 10^4 when is completions greater than 10^5 This field is beta-level It can be used when the JobBackoffLimitPerIndex feature gate is enabled (enabled by default)'}
													Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_parallelism {doc 'Specifies the maximum desired number of pods the job should run at any given time The actual number of pods running in steady state will be less than this number when ((speccompletions - statussuccessful) < specparallelism), ie when the work left to do is less than max parallelism More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podFailurePolicy {doc 'Specifies the policy of handling failed pods In particular, it allows to specify the set of actions and conditions which need to be satisfied to take the associated action If empty, the default behaviour applies - the counter of failed pods, represented by the jobs_s statusfailed field, is incremented and it is checked against the backoffLimit This field cannot be used in combination with restartPolicy=OnFailureThis field is beta-level It can be used when the JobPodFailurePolicy feature gate is enabled (enabled by default)'}
														mandatory
															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podFailurePolicy_rules cardinality [1..*] {doc 'A list of pod failure policy rules The rules are evaluated in order Once a rule matches a Pod failure, the remaining of the rules are ignored When no rule matches the Pod failure, the default handling applies - the counter of pod failures is incremented and it is checked against the backoffLimit At most 20 elements are allowed'}
																mandatory
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podFailurePolicy_rules_action {doc 'Specifies the action taken on a pod failure when the requirements are satisfied Possible values are:- FailJob: indicates that the pod_s job is marked as Failed and all  running pods are terminated- FailIndex: indicates that the pod_s index is marked as Failed and will  not be restarted  This value is beta-level It can be used when the  JobBackoffLimitPerIndex feature gate is enabled (enabled by default)- Ignore: indicates that the counter towards the backoffLimit is not  incremented and a replacement pod is created- Count: indicates that the pod is handled in the default way - the  counter towards the backoffLimit is incrementedAdditional values are considered to be added in the future Clients should react to an unknown action by skipping the rule'}
																		alternative
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podFailurePolicy_rules_action_FailIndex {doc 'Specific value: FailIndex'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podFailurePolicy_rules_action_Count {doc 'Specific value: Count'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podFailurePolicy_rules_action_FailJob {doc 'Specific value: FailJob'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podFailurePolicy_rules_action_Ignore {doc 'Specific value: Ignore'}
																optional
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes {doc 'Represents the requirement on the container exit codes'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes_operator {doc 'Represents the relationship between the container exit code(s) and the specified values Containers completed with success (exit code 0) are excluded from the requirement check Possible values are:- In: the requirement is satisfied if at least one container exit code  (might be multiple if there are multiple containers not restricted  by the _containerName_ field) is in the set of specified values- NotIn: the requirement is satisfied if at least one container exit code  (might be multiple if there are multiple containers not restricted  by the _containerName_ field) is not in the set of specified valuesAdditional values are considered to be added in the future Clients should react to an unknown operator by assuming the requirement is not satisfied'}
																				alternative
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes_operator_In {doc 'Specific value: In'}
																					io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes_operator_containerName {doc 'Specific value: containerName'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes_values cardinality [1..*] {doc 'Specifies the set of values Each returned container exit code (might be multiple in case of multiple containers) is checked against this set of values with respect to the operator The list of values must be ordered and must not contain duplicates Value _0_ cannot be used for the In operator At least one element is required At most 255 elements are allowed'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes_values_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
																		optional
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes_containerName {doc 'Restricts the check for exit codes to the container with the specified name When null, the rule applies to all containers When specified, it should match one the container or initContainer names in the pod template'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podFailurePolicy_rules_onPodConditions cardinality [1..*] {doc 'Represents the requirement on the pod conditions The requirement is represented as a list of pod condition patterns The requirement is satisfied if at least one pattern matches an actual pod condition At most 20 elements are allowed'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podFailurePolicy_rules_onPodConditions_status {default true, doc 'Specifies the required Pod condition status To match a pod condition it is required that the specified status equals the pod condition status Defaults to True'}
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podFailurePolicy_rules_onPodConditions_type {doc 'Specifies the required Pod condition type To match a pod condition it is required that specified type equals the pod condition type'}
													String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podReplacementPolicy {doc 'podReplacementPolicy specifies when to create replacement Pods Possible values are: - TerminatingOrFailed means that we recreate pods  when they are terminating (has a metadatadeletionTimestamp) or failed- Failed means to wait until a previously created Pod is fully terminated (has phase  Failed or Succeeded) before creating a replacement PodWhen using podFailurePolicy, Failed is the the only allowed value TerminatingOrFailed and Failed are allowed values when podFailurePolicy is not in use This is an beta field To use this, enable the JobPodReplacementPolicy feature toggle This is on by default'}
													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_selector {doc 'A label query over pods that should match the pod count Normally, the system sets this field for you More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/#label-selectors'}
														optional
															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_successPolicy {doc 'successPolicy specifies the policy when the Job can be declared as succeeded If empty, the default behavior applies - the Job is declared as succeeded only when the number of succeeded pods equals to the completions When the field is specified, it must be immutable and works only for the Indexed Jobs Once the Job meets the SuccessPolicy, the lingering pods are terminatedThis field  is alpha-level To use this field, you must enable the JobSuccessPolicy feature gate (disabled by default)'}
														mandatory
															io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_successPolicy_rules cardinality [1..*] {doc 'rules represents the list of alternative rules for the declaring the Jobs as successful before statussucceeded >= speccompletions Once any of the rules are met, the SucceededCriteriaMet condition is added, and the lingering pods are removed The terminal state for such a Job has the Complete condition Additionally, these rules are evaluated in order; Once the Job meets one of the rules, other rules are ignored At most 20 elements are allowed'}
																optional
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_successPolicy_rules_succeededCount {abstract, doc 'succeededCount specifies the minimal required size of the actual set of the succeeded indexes for the Job When succeededCount is used along with succeededIndexes, the check is constrained only to the set of indexes specified by succeededIndexes For example, given that succeededIndexes is 1-4, succeededCount is 3, and completed indexes are 1, 3, and 5, the Job isn_t declared as succeeded because only 1 and 3 indexes are considered in that rules When this field is null, this doesn_t default to any value and is never evaluated at any time When specified it needs to be a positive integer'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_successPolicy_rules_succeededCount_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_successPolicy_rules_succeededIndexes {abstract, doc 'succeededIndexes specifies the set of indexes which need to be contained in the actual set of the succeeded indexes for the Job The list of indexes must be within 0 to speccompletions-1 and must not contain duplicates At least one element is required The indexes are represented as intervals separated by commas The intervals can be a decimal integer or a pair of decimal integers separated by a hyphen The number are listed in represented by the first and last element of the series, separated by a hyphen For example, if the completed indexes are 1, 3, 4, 5 and 7, they are represented as 1,3-5,7 When this field is null, this field doesn_t default to any value and is never evaluated at any time'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_successPolicy_rules_succeededIndexes_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_suspend {default false, doc 'suspend specifies whether the Job controller should create Pods or not If a Job is created with suspend set to true, no Pods are created by the Job controller If a Job is suspended after creation (ie the flag goes from false to true), the Job controller will delete all active Pods associated with this Job Users must design their workload to gracefully handle this Suspending a Job will reset the StartTime field of the Job, effectively resetting the ActiveDeadlineSeconds timer too Defaults to false'}
													Integer io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_ttlSecondsAfterFinished {doc 'ttlSecondsAfterFinished limits the lifetime of a Job that has finished execution (either Complete or Failed) If this field is set, ttlSecondsAfterFinished after the Job finishes, it is eligible to be automatically deleted When the Job is being deleted, its lifecycle guarantees (eg finalizers) will be honored If this field is unset, the Job won_t be automatically deleted If this field is set to zero, the Job becomes eligible to be deleted immediately after it finishes'}
									String io_k8s_api_batch_v1_CronJobList_items_spec_schedule {doc 'The schedule in Cron format, see https:_enwikipediaorg/wiki/Cron'}
								optional
									io_k8s_api_batch_v1_CronJobList_items_spec_concurrencyPolicy {doc 'Specifies how to treat concurrent executions of a Job Valid values are:- Allow (default): allows CronJobs to run concurrently; - Forbid: forbids concurrent runs, skipping next run if previous run hasn_t finished yet; - Replace: cancels currently running job and replaces it with a new one'}
										alternative
											io_k8s_api_batch_v1_CronJobList_items_spec_concurrencyPolicy_Forbid {doc 'Specific value: Forbid'}
											io_k8s_api_batch_v1_CronJobList_items_spec_concurrencyPolicy_Allow {doc 'Specific value: Allow'}
											io_k8s_api_batch_v1_CronJobList_items_spec_concurrencyPolicy_Replace {doc 'Specific value: Replace'}
									Integer io_k8s_api_batch_v1_CronJobList_items_spec_failedJobsHistoryLimit {default 1, doc 'The number of failed finished jobs to retain Value must be non-negative integer Defaults to 1'}
									Integer io_k8s_api_batch_v1_CronJobList_items_spec_startingDeadlineSeconds {doc 'Optional deadline in seconds for starting the job if it misses scheduled time for any reason  Missed jobs executions will be counted as failed ones'}
									Integer io_k8s_api_batch_v1_CronJobList_items_spec_successfulJobsHistoryLimit {default 3, doc 'The number of successful finished jobs to retain Value must be non-negative integer Defaults to 3'}
									io_k8s_api_batch_v1_CronJobList_items_spec_suspend {default false, doc 'This flag tells the controller to suspend subsequent executions, it does not apply to already started executions  Defaults to false'}
									String io_k8s_api_batch_v1_CronJobList_items_spec_timeZone {doc 'The time zone name for the given schedule, see https:_enwikipediaorg/wiki/List_of_tz_database_time_zones If not specified, this will default to the time zone of the kube-controller-manager process The set of valid time zone names and the time zone offset is loaded from the system-wide time zone database by the API server during CronJob validation and the controller manager during execution If no system-wide time zone database can be found a bundled version of the database is used instead If the time zone name becomes invalid during the lifetime of a CronJob or due to a change in host configuration, the controller will stop creating new new Jobs and will create a system event with the reason UnknownTimeZone More information can be found in https:_kubernetesio/docs/concepts/workloads/controllers/cron-jobs/#time-zones'}
							io_k8s_api_batch_v1_CronJobList_items_status {doc 'Current status of a cron job More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								optional
									io_k8s_api_batch_v1_CronJobList_items_status_active cardinality [1..*] {doc 'A list of pointers to currently running jobs'}
										optional
											String io_k8s_api_batch_v1_CronJobList_items_status_active_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_batch_v1_CronJobList_items_status_active_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
											String io_k8s_api_batch_v1_CronJobList_items_status_active_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_batch_v1_CronJobList_items_status_active_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											String io_k8s_api_batch_v1_CronJobList_items_status_active_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
											String io_k8s_api_batch_v1_CronJobList_items_status_active_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
											String io_k8s_api_batch_v1_CronJobList_items_status_active_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
									io_k8s_api_batch_v1_CronJobList_items_status_lastScheduleTime {doc 'Information when was the last time the job was successfully scheduled'}
										optional
											String io_k8s_api_batch_v1_CronJobList_items_status_lastScheduleTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_batch_v1_CronJobList_items_status_lastSuccessfulTime {doc 'Information when was the last time the job successfully completed'}
										optional
											String io_k8s_api_batch_v1_CronJobList_items_status_lastSuccessfulTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
				optional
					String io_k8s_api_batch_v1_CronJobList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_batch_v1_CronJobList_kind {default 'CronJobList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_batch_v1_CronJobList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_batch_v1_CronJobList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_batch_v1_CronJobList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_batch_v1_CronJobList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_batch_v1_CronJobList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_batch_v1_CronJobSpec {doc 'CronJobSpec describes how the job execution will look like and when it will actually run'}
				mandatory
					io_k8s_api_batch_v1_CronJobSpec_jobTemplate {doc 'Specifies the job that will be created when executing a CronJob'}
						optional
							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata {doc 'Standard object_s metadata of the jobs created from this template More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec {doc 'Specification of the desired behavior of the job More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template {doc 'Describes the pod that will be created when executing a job The only allowed templatespecrestartPolicy values are Never or OnFailure More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
										optional
											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
														optional
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
														optional
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
													Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_deletionGracePeriodSeconds {doc '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'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
														optional
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_finalizers cardinality [1..*] {doc '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'}
														mandatory
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
													Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
														mandatory
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_managedFields cardinality [1..*] {doc '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'}
														optional
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_managedFields_apiVersion {doc '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'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																alternative
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_managedFields_subresource {doc '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'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_managedFields_time {doc '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'}
																optional
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
													String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
														mandatory
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
														optional
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
													String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
													String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
													String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
												mandatory
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
														mandatory
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
														optional
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																optional
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																alternative
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
																mandatory
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																optional
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																mandatory
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																				alternative
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																				alternative
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																optional
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
												optional
													Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
														optional
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																				optional
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																				optional
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																				optional
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																						optional
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																						optional
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																				optional
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																						optional
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																						optional
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
														optional
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_dnsConfig_options_name {doc 'Required'}
																optional
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_dnsConfig_options_value
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
														alternative
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_dnsPolicy_None {doc 'Specific value: None'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
														mandatory
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
														optional
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																optional
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																alternative
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
																mandatory
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																optional
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																mandatory
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																				alternative
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																				alternative
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																optional
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
														mandatory
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
														optional
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
													String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
														optional
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
														mandatory
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
														optional
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																optional
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																alternative
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
																mandatory
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																optional
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																mandatory
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																				alternative
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																				alternative
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																				mandatory
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																optional
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
													String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
														mandatory
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
														mandatory
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
																alternative
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows {doc 'Specific value: windows'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_linux {doc 'Specific value: linux'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
														alternative
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
														alternative
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
													Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
													String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
														mandatory
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
														mandatory
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
														optional
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
														alternative
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
													String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
													String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
														mandatory
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
														optional
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
																alternative
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
													String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
													String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
													Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
														optional
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
																alternative
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
																alternative
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
															Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
														mandatory
															Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
														optional
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
														mandatory
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
														optional
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
																mandatory
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																optional
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
																optional
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
																optional
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
																optional
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																optional
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																		alternative
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
																		mandatory
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																				optional
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																						optional
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																						optional
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																						optional
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																								alternative
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																								alternative
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																						optional
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																				optional
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																						optional
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																						optional
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																						optional
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																						optional
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																								optional
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																								alternative
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																								optional
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																						optional
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
																optional
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
																optional
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
																optional
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
																		optional
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																				optional
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																						optional
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																				optional
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																						optional
																							Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																				optional
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																						optional
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																								optional
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																							Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																							io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																								mandatory
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																								optional
																									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																										alternative
																											String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																				optional
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																						mandatory
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																							String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																						optional
																							Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																				mandatory
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																				optional
																					String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																					Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
																optional
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
																optional
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
																		optional
																			String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
																mandatory
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
																optional
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
																	String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
										alternative
											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_Never {doc 'Specific value: Never'}
											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_OnFailure {doc 'Specific value: OnFailure'}
								optional
									Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_activeDeadlineSeconds {doc 'Specifies the duration in seconds relative to the startTime that the job may be continuously active before the system tries to terminate it; value must be positive integer If a Job is suspended (at creation or through an update), this timer will effectively be stopped and reset when the Job is resumed again'}
									Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_backoffLimit {default 6, doc 'Specifies the number of retries before marking this job failed Defaults to 6'}
									Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_backoffLimitPerIndex {doc 'Specifies the limit for the number of retries within an index before marking this index as failed When enabled the number of failures per index is kept in the pod_s batchkubernetesio/job-index-failure-count annotation It can only be set when Job_s completionMode=Indexed, and the Pod_s restart policy is Never The field is immutable This field is beta-level It can be used when the JobBackoffLimitPerIndex feature gate is enabled (enabled by default)'}
									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_completionMode {doc 'completionMode specifies how Pod completions are tracked It can be NonIndexed (default) or IndexedNonIndexed means that the Job is considered complete when there have been speccompletions successfully completed Pods Each Pod completion is homologous to each otherIndexed means that the Pods of a Job get an associated completion index from 0 to (speccompletions - 1), available in the annotation batchkubernetesio/job-completion-index The Job is considered complete when there is one successfully completed Pod for each index When value is Indexed, speccompletions must be specified and specparallelism must be less than or equal to 10^5 In addition, The Pod name takes the form $(job-name)-$(index)-$(random-string), the Pod hostname takes the form $(job-name)-$(index)More completion modes can be added in the future If the Job controller observes a mode that it doesn_t recognize, which is possible during upgrades due to version skew, the controller skips updates for the Job'}
										alternative
											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_completionMode_Indexed {doc 'Specific value: Indexed'}
											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_completionMode_NonIndexed {doc 'Specific value: NonIndexed'}
									Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_completions {doc 'Specifies the desired number of successfully finished pods the job should be run with  Setting to null means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value  Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_managedBy {doc 'ManagedBy field indicates the controller that manages a Job The k8s Job controller reconciles jobs which don_t have this field at all or the field value is the reserved string kubernetesio/job-controller, but skips reconciling Jobs with a custom value for this field The value must be a valid domain-prefixed path (eg acmeio/foo) - all characters before the first / must be a valid subdomain as defined by RFC 1123 All characters trailing the first / must be valid HTTP Path characters as defined by RFC 3986 The value cannot exceed 64 charactersThis field is alpha-level The job controller accepts setting the field when the feature gate JobManagedBy is enabled (disabled by default)'}
									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_manualSelector {doc 'manualSelector controls generation of pod labels and pod selectors Leave manualSelector unset unless you are certain what you are doing When false or unset, the system pick labels unique to this job and appends those labels to the pod template  When true, the user is responsible for picking unique labels and specifying the selector  Failure to pick a unique label may cause this and other jobs to not function correctly  However, You may see manualSelector=true in jobs that were created with the old extensions/v1beta1 API More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector'}
									Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_maxFailedIndexes {doc 'Specifies the maximal number of failed indexes before marking the Job as failed, when backoffLimitPerIndex is set Once the number of failed indexes exceeds this number the entire Job is marked as Failed and its execution is terminated When left as null the job continues execution of all of its indexes and is marked with the Complete Job condition It can only be specified when backoffLimitPerIndex is set It can be null or up to completions It is required and must be less than or equal to 10^4 when is completions greater than 10^5 This field is beta-level It can be used when the JobBackoffLimitPerIndex feature gate is enabled (enabled by default)'}
									Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_parallelism {doc 'Specifies the maximum desired number of pods the job should run at any given time The actual number of pods running in steady state will be less than this number when ((speccompletions - statussuccessful) < specparallelism), ie when the work left to do is less than max parallelism More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podFailurePolicy {doc 'Specifies the policy of handling failed pods In particular, it allows to specify the set of actions and conditions which need to be satisfied to take the associated action If empty, the default behaviour applies - the counter of failed pods, represented by the jobs_s statusfailed field, is incremented and it is checked against the backoffLimit This field cannot be used in combination with restartPolicy=OnFailureThis field is beta-level It can be used when the JobPodFailurePolicy feature gate is enabled (enabled by default)'}
										mandatory
											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podFailurePolicy_rules cardinality [1..*] {doc 'A list of pod failure policy rules The rules are evaluated in order Once a rule matches a Pod failure, the remaining of the rules are ignored When no rule matches the Pod failure, the default handling applies - the counter of pod failures is incremented and it is checked against the backoffLimit At most 20 elements are allowed'}
												mandatory
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podFailurePolicy_rules_action {doc 'Specifies the action taken on a pod failure when the requirements are satisfied Possible values are:- FailJob: indicates that the pod_s job is marked as Failed and all  running pods are terminated- FailIndex: indicates that the pod_s index is marked as Failed and will  not be restarted  This value is beta-level It can be used when the  JobBackoffLimitPerIndex feature gate is enabled (enabled by default)- Ignore: indicates that the counter towards the backoffLimit is not  incremented and a replacement pod is created- Count: indicates that the pod is handled in the default way - the  counter towards the backoffLimit is incrementedAdditional values are considered to be added in the future Clients should react to an unknown action by skipping the rule'}
														alternative
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podFailurePolicy_rules_action_FailIndex {doc 'Specific value: FailIndex'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podFailurePolicy_rules_action_Count {doc 'Specific value: Count'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podFailurePolicy_rules_action_FailJob {doc 'Specific value: FailJob'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podFailurePolicy_rules_action_Ignore {doc 'Specific value: Ignore'}
												optional
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes {doc 'Represents the requirement on the container exit codes'}
														mandatory
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes_operator {doc 'Represents the relationship between the container exit code(s) and the specified values Containers completed with success (exit code 0) are excluded from the requirement check Possible values are:- In: the requirement is satisfied if at least one container exit code  (might be multiple if there are multiple containers not restricted  by the _containerName_ field) is in the set of specified values- NotIn: the requirement is satisfied if at least one container exit code  (might be multiple if there are multiple containers not restricted  by the _containerName_ field) is not in the set of specified valuesAdditional values are considered to be added in the future Clients should react to an unknown operator by assuming the requirement is not satisfied'}
																alternative
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes_operator_In {doc 'Specific value: In'}
																	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes_operator_containerName {doc 'Specific value: containerName'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes_values cardinality [1..*] {doc 'Specifies the set of values Each returned container exit code (might be multiple in case of multiple containers) is checked against this set of values with respect to the operator The list of values must be ordered and must not contain duplicates Value _0_ cannot be used for the In operator At least one element is required At most 255 elements are allowed'}
																mandatory
																	Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes_values_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
														optional
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes_containerName {doc 'Restricts the check for exit codes to the container with the specified name When null, the rule applies to all containers When specified, it should match one the container or initContainer names in the pod template'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podFailurePolicy_rules_onPodConditions cardinality [1..*] {doc 'Represents the requirement on the pod conditions The requirement is represented as a list of pod condition patterns The requirement is satisfied if at least one pattern matches an actual pod condition At most 20 elements are allowed'}
														mandatory
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podFailurePolicy_rules_onPodConditions_status {default true, doc 'Specifies the required Pod condition status To match a pod condition it is required that the specified status equals the pod condition status Defaults to True'}
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podFailurePolicy_rules_onPodConditions_type {doc 'Specifies the required Pod condition type To match a pod condition it is required that specified type equals the pod condition type'}
									String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podReplacementPolicy {doc 'podReplacementPolicy specifies when to create replacement Pods Possible values are: - TerminatingOrFailed means that we recreate pods  when they are terminating (has a metadatadeletionTimestamp) or failed- Failed means to wait until a previously created Pod is fully terminated (has phase  Failed or Succeeded) before creating a replacement PodWhen using podFailurePolicy, Failed is the the only allowed value TerminatingOrFailed and Failed are allowed values when podFailurePolicy is not in use This is an beta field To use this, enable the JobPodReplacementPolicy feature toggle This is on by default'}
									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_selector {doc 'A label query over pods that should match the pod count Normally, the system sets this field for you More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/#label-selectors'}
										optional
											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_successPolicy {doc 'successPolicy specifies the policy when the Job can be declared as succeeded If empty, the default behavior applies - the Job is declared as succeeded only when the number of succeeded pods equals to the completions When the field is specified, it must be immutable and works only for the Indexed Jobs Once the Job meets the SuccessPolicy, the lingering pods are terminatedThis field  is alpha-level To use this field, you must enable the JobSuccessPolicy feature gate (disabled by default)'}
										mandatory
											io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_successPolicy_rules cardinality [1..*] {doc 'rules represents the list of alternative rules for the declaring the Jobs as successful before statussucceeded >= speccompletions Once any of the rules are met, the SucceededCriteriaMet condition is added, and the lingering pods are removed The terminal state for such a Job has the Complete condition Additionally, these rules are evaluated in order; Once the Job meets one of the rules, other rules are ignored At most 20 elements are allowed'}
												optional
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_successPolicy_rules_succeededCount {abstract, doc 'succeededCount specifies the minimal required size of the actual set of the succeeded indexes for the Job When succeededCount is used along with succeededIndexes, the check is constrained only to the set of indexes specified by succeededIndexes For example, given that succeededIndexes is 1-4, succeededCount is 3, and completed indexes are 1, 3, and 5, the Job isn_t declared as succeeded because only 1 and 3 indexes are considered in that rules When this field is null, this doesn_t default to any value and is never evaluated at any time When specified it needs to be a positive integer'}
														mandatory
															Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_successPolicy_rules_succeededCount_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_successPolicy_rules_succeededIndexes {abstract, doc 'succeededIndexes specifies the set of indexes which need to be contained in the actual set of the succeeded indexes for the Job The list of indexes must be within 0 to speccompletions-1 and must not contain duplicates At least one element is required The indexes are represented as intervals separated by commas The intervals can be a decimal integer or a pair of decimal integers separated by a hyphen The number are listed in represented by the first and last element of the series, separated by a hyphen For example, if the completed indexes are 1, 3, 4, 5 and 7, they are represented as 1,3-5,7 When this field is null, this field doesn_t default to any value and is never evaluated at any time'}
														mandatory
															String io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_successPolicy_rules_succeededIndexes_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_suspend {default false, doc 'suspend specifies whether the Job controller should create Pods or not If a Job is created with suspend set to true, no Pods are created by the Job controller If a Job is suspended after creation (ie the flag goes from false to true), the Job controller will delete all active Pods associated with this Job Users must design their workload to gracefully handle this Suspending a Job will reset the StartTime field of the Job, effectively resetting the ActiveDeadlineSeconds timer too Defaults to false'}
									Integer io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_ttlSecondsAfterFinished {doc 'ttlSecondsAfterFinished limits the lifetime of a Job that has finished execution (either Complete or Failed) If this field is set, ttlSecondsAfterFinished after the Job finishes, it is eligible to be automatically deleted When the Job is being deleted, its lifecycle guarantees (eg finalizers) will be honored If this field is unset, the Job won_t be automatically deleted If this field is set to zero, the Job becomes eligible to be deleted immediately after it finishes'}
					String io_k8s_api_batch_v1_CronJobSpec_schedule {doc 'The schedule in Cron format, see https:_enwikipediaorg/wiki/Cron'}
				optional
					io_k8s_api_batch_v1_CronJobSpec_concurrencyPolicy {doc 'Specifies how to treat concurrent executions of a Job Valid values are:- Allow (default): allows CronJobs to run concurrently; - Forbid: forbids concurrent runs, skipping next run if previous run hasn_t finished yet; - Replace: cancels currently running job and replaces it with a new one'}
						alternative
							io_k8s_api_batch_v1_CronJobSpec_concurrencyPolicy_Forbid {doc 'Specific value: Forbid'}
							io_k8s_api_batch_v1_CronJobSpec_concurrencyPolicy_Allow {doc 'Specific value: Allow'}
							io_k8s_api_batch_v1_CronJobSpec_concurrencyPolicy_Replace {doc 'Specific value: Replace'}
					Integer io_k8s_api_batch_v1_CronJobSpec_failedJobsHistoryLimit {default 1, doc 'The number of failed finished jobs to retain Value must be non-negative integer Defaults to 1'}
					Integer io_k8s_api_batch_v1_CronJobSpec_startingDeadlineSeconds {doc 'Optional deadline in seconds for starting the job if it misses scheduled time for any reason  Missed jobs executions will be counted as failed ones'}
					Integer io_k8s_api_batch_v1_CronJobSpec_successfulJobsHistoryLimit {default 3, doc 'The number of successful finished jobs to retain Value must be non-negative integer Defaults to 3'}
					io_k8s_api_batch_v1_CronJobSpec_suspend {default false, doc 'This flag tells the controller to suspend subsequent executions, it does not apply to already started executions  Defaults to false'}
					String io_k8s_api_batch_v1_CronJobSpec_timeZone {doc 'The time zone name for the given schedule, see https:_enwikipediaorg/wiki/List_of_tz_database_time_zones If not specified, this will default to the time zone of the kube-controller-manager process The set of valid time zone names and the time zone offset is loaded from the system-wide time zone database by the API server during CronJob validation and the controller manager during execution If no system-wide time zone database can be found a bundled version of the database is used instead If the time zone name becomes invalid during the lifetime of a CronJob or due to a change in host configuration, the controller will stop creating new new Jobs and will create a system event with the reason UnknownTimeZone More information can be found in https:_kubernetesio/docs/concepts/workloads/controllers/cron-jobs/#time-zones'}
			io_k8s_api_batch_v1_CronJobStatus {doc 'CronJobStatus represents the current state of a cron job'}
				optional
					io_k8s_api_batch_v1_CronJobStatus_active cardinality [1..*] {doc 'A list of pointers to currently running jobs'}
						optional
							String io_k8s_api_batch_v1_CronJobStatus_active_apiVersion {doc 'API version of the referent'}
							String io_k8s_api_batch_v1_CronJobStatus_active_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
							String io_k8s_api_batch_v1_CronJobStatus_active_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							String io_k8s_api_batch_v1_CronJobStatus_active_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							String io_k8s_api_batch_v1_CronJobStatus_active_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
							String io_k8s_api_batch_v1_CronJobStatus_active_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_batch_v1_CronJobStatus_active_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
					io_k8s_api_batch_v1_CronJobStatus_lastScheduleTime {doc 'Information when was the last time the job was successfully scheduled'}
						optional
							String io_k8s_api_batch_v1_CronJobStatus_lastScheduleTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					io_k8s_api_batch_v1_CronJobStatus_lastSuccessfulTime {doc 'Information when was the last time the job successfully completed'}
						optional
							String io_k8s_api_batch_v1_CronJobStatus_lastSuccessfulTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
			io_k8s_api_batch_v1_Job {doc 'Job represents the configuration of a single job'}
				optional
					String io_k8s_api_batch_v1_Job_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_batch_v1_Job_kind {default 'Job', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_batch_v1_Job_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_batch_v1_Job_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_batch_v1_Job_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_batch_v1_Job_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_batch_v1_Job_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_batch_v1_Job_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_batch_v1_Job_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_batch_v1_Job_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_batch_v1_Job_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_batch_v1_Job_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_batch_v1_Job_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_batch_v1_Job_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_batch_v1_Job_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_batch_v1_Job_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_batch_v1_Job_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_batch_v1_Job_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_batch_v1_Job_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_batch_v1_Job_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_batch_v1_Job_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_batch_v1_Job_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_batch_v1_Job_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_batch_v1_Job_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_batch_v1_Job_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_batch_v1_Job_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_batch_v1_Job_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_batch_v1_Job_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_batch_v1_Job_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_batch_v1_Job_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_batch_v1_Job_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_batch_v1_Job_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_batch_v1_Job_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_batch_v1_Job_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_batch_v1_Job_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_batch_v1_Job_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_batch_v1_Job_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_batch_v1_Job_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_batch_v1_Job_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_batch_v1_Job_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_batch_v1_Job_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_batch_v1_Job_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_batch_v1_Job_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_batch_v1_Job_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_batch_v1_Job_spec {doc 'Specification of the desired behavior of a job More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						mandatory
							io_k8s_api_batch_v1_Job_spec_template {doc 'Describes the pod that will be created when executing a job The only allowed templatespecrestartPolicy values are Never or OnFailure More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
								optional
									io_k8s_api_batch_v1_Job_spec_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											io_k8s_api_batch_v1_Job_spec_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
												optional
													String io_k8s_api_batch_v1_Job_spec_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_batch_v1_Job_spec_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_batch_v1_Job_spec_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_batch_v1_Job_spec_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_batch_v1_Job_spec_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
											Integer io_k8s_api_batch_v1_Job_spec_template_metadata_deletionGracePeriodSeconds {doc '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'}
											io_k8s_api_batch_v1_Job_spec_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_batch_v1_Job_spec_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_batch_v1_Job_spec_template_metadata_finalizers cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_batch_v1_Job_spec_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											String io_k8s_api_batch_v1_Job_spec_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
											Integer io_k8s_api_batch_v1_Job_spec_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
											io_k8s_api_batch_v1_Job_spec_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
												mandatory
													String io_k8s_api_batch_v1_Job_spec_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_batch_v1_Job_spec_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_batch_v1_Job_spec_template_metadata_managedFields cardinality [1..*] {doc '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'}
												optional
													String io_k8s_api_batch_v1_Job_spec_template_metadata_managedFields_apiVersion {doc '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'}
													String io_k8s_api_batch_v1_Job_spec_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
													io_k8s_api_batch_v1_Job_spec_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
															io_k8s_api_batch_v1_Job_spec_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
													String io_k8s_api_batch_v1_Job_spec_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
													io_k8s_api_batch_v1_Job_spec_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
														alternative
															io_k8s_api_batch_v1_Job_spec_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
															io_k8s_api_batch_v1_Job_spec_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
													String io_k8s_api_batch_v1_Job_spec_template_metadata_managedFields_subresource {doc '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'}
													io_k8s_api_batch_v1_Job_spec_template_metadata_managedFields_time {doc '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'}
														optional
															String io_k8s_api_batch_v1_Job_spec_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_batch_v1_Job_spec_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_batch_v1_Job_spec_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
											io_k8s_api_batch_v1_Job_spec_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_batch_v1_Job_spec_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
													String io_k8s_api_batch_v1_Job_spec_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
													String io_k8s_api_batch_v1_Job_spec_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
													String io_k8s_api_batch_v1_Job_spec_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
												optional
													io_k8s_api_batch_v1_Job_spec_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
													io_k8s_api_batch_v1_Job_spec_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
											String io_k8s_api_batch_v1_Job_spec_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
											String io_k8s_api_batch_v1_Job_spec_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
											String io_k8s_api_batch_v1_Job_spec_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
									io_k8s_api_batch_v1_Job_spec_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
										mandatory
											io_k8s_api_batch_v1_Job_spec_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
												mandatory
													String io_k8s_api_batch_v1_Job_spec_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
												optional
													io_k8s_api_batch_v1_Job_spec_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_Job_spec_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_Job_spec_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_batch_v1_Job_spec_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_batch_v1_Job_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_batch_v1_Job_spec_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_batch_v1_Job_spec_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
													io_k8s_api_batch_v1_Job_spec_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_batch_v1_Job_spec_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
														mandatory
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_batch_v1_Job_spec_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_batch_v1_Job_spec_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_batch_v1_Job_spec_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_batch_v1_Job_spec_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
													io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_batch_v1_Job_spec_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_batch_v1_Job_spec_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_batch_v1_Job_spec_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_batch_v1_Job_spec_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_batch_v1_Job_spec_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_batch_v1_Job_spec_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_batch_v1_Job_spec_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_batch_v1_Job_spec_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_batch_v1_Job_spec_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_batch_v1_Job_spec_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
										optional
											Integer io_k8s_api_batch_v1_Job_spec_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
											io_k8s_api_batch_v1_Job_spec_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
												optional
													io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																		optional
																			io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
															io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																		optional
																			io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
															io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
															io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_batch_v1_Job_spec_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
											io_k8s_api_batch_v1_Job_spec_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
												optional
													io_k8s_api_batch_v1_Job_spec_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_Job_spec_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_dnsConfig_options_name {doc 'Required'}
														optional
															String io_k8s_api_batch_v1_Job_spec_template_spec_dnsConfig_options_value
													io_k8s_api_batch_v1_Job_spec_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_batch_v1_Job_spec_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
												alternative
													io_k8s_api_batch_v1_Job_spec_template_spec_dnsPolicy_None {doc 'Specific value: None'}
													io_k8s_api_batch_v1_Job_spec_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
													io_k8s_api_batch_v1_Job_spec_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
													io_k8s_api_batch_v1_Job_spec_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
											io_k8s_api_batch_v1_Job_spec_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
											io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
												mandatory
													String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
												optional
													io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
													io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
														mandatory
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
													io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
													String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
											io_k8s_api_batch_v1_Job_spec_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
												mandatory
													String io_k8s_api_batch_v1_Job_spec_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
												optional
													io_k8s_api_batch_v1_Job_spec_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_batch_v1_Job_spec_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
											io_k8s_api_batch_v1_Job_spec_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
											io_k8s_api_batch_v1_Job_spec_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
											io_k8s_api_batch_v1_Job_spec_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
											String io_k8s_api_batch_v1_Job_spec_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
											io_k8s_api_batch_v1_Job_spec_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
												optional
													String io_k8s_api_batch_v1_Job_spec_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_batch_v1_Job_spec_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
												mandatory
													String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
												optional
													io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
													io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
														mandatory
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
													io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
											String io_k8s_api_batch_v1_Job_spec_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
											io_k8s_api_batch_v1_Job_spec_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
												mandatory
													String io_k8s_api_batch_v1_Job_spec_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_batch_v1_Job_spec_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
												mandatory
													io_k8s_api_batch_v1_Job_spec_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
														alternative
															io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows {doc 'Specific value: windows'}
															io_k8s_api_batch_v1_Job_spec_template_spec_os_name_linux {doc 'Specific value: linux'}
											io_k8s_api_batch_v1_Job_spec_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
												alternative
													String io_k8s_api_batch_v1_Job_spec_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_batch_v1_Job_spec_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_batch_v1_Job_spec_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
												alternative
													io_k8s_api_batch_v1_Job_spec_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_batch_v1_Job_spec_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
											Integer io_k8s_api_batch_v1_Job_spec_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
											String io_k8s_api_batch_v1_Job_spec_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
											io_k8s_api_batch_v1_Job_spec_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
												mandatory
													String io_k8s_api_batch_v1_Job_spec_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
											io_k8s_api_batch_v1_Job_spec_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
												mandatory
													String io_k8s_api_batch_v1_Job_spec_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
												optional
													io_k8s_api_batch_v1_Job_spec_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_Job_spec_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_batch_v1_Job_spec_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
												alternative
													io_k8s_api_batch_v1_Job_spec_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_batch_v1_Job_spec_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
													io_k8s_api_batch_v1_Job_spec_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
											String io_k8s_api_batch_v1_Job_spec_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
											String io_k8s_api_batch_v1_Job_spec_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
											io_k8s_api_batch_v1_Job_spec_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
												mandatory
													String io_k8s_api_batch_v1_Job_spec_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
											io_k8s_api_batch_v1_Job_spec_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
												optional
													io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
														alternative
															io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
															io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
													io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
													io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											String io_k8s_api_batch_v1_Job_spec_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
											String io_k8s_api_batch_v1_Job_spec_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
											io_k8s_api_batch_v1_Job_spec_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
											io_k8s_api_batch_v1_Job_spec_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
											String io_k8s_api_batch_v1_Job_spec_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
											Integer io_k8s_api_batch_v1_Job_spec_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
											io_k8s_api_batch_v1_Job_spec_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
												optional
													io_k8s_api_batch_v1_Job_spec_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
														alternative
															io_k8s_api_batch_v1_Job_spec_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
															io_k8s_api_batch_v1_Job_spec_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
															io_k8s_api_batch_v1_Job_spec_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
													String io_k8s_api_batch_v1_Job_spec_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
													io_k8s_api_batch_v1_Job_spec_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
														alternative
															io_k8s_api_batch_v1_Job_spec_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_batch_v1_Job_spec_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
													Integer io_k8s_api_batch_v1_Job_spec_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
													io_k8s_api_batch_v1_Job_spec_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
												mandatory
													Integer io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
													String io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
													String io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
												optional
													io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
													String io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
													String io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
											io_k8s_api_batch_v1_Job_spec_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
												mandatory
													String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
												optional
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
														mandatory
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
														optional
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
														optional
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																optional
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
														optional
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
														optional
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_Job_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
														optional
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																alternative
																	String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
																mandatory
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																		optional
																			io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																				optional
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																				optional
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																				optional
																					io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																						alternative
																							String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																					io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																						alternative
																							String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																				optional
																					io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																		optional
																			io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																				optional
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																				optional
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																					io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																				optional
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																				optional
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																					io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																						optional
																							io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																					io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																						alternative
																							io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																					io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																						optional
																							String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																				optional
																					io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																					io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
														optional
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
														optional
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
														optional
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
																optional
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																		optional
																			io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																				optional
																					io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																		optional
																			io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																				optional
																					Integer io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																		optional
																			io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																				optional
																					io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																						mandatory
																							String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																						optional
																							String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																					Integer io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																						mandatory
																							String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																						optional
																							String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																							io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																								alternative
																									String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																		optional
																			io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																				mandatory
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																					String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																				optional
																					Integer io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																		mandatory
																			String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																		optional
																			String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																			Integer io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
														optional
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
														optional
															Integer io_k8s_api_batch_v1_Job_spec_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																mandatory
																	String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
																	String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																optional
																	Integer io_k8s_api_batch_v1_Job_spec_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
																optional
																	String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
													io_k8s_api_batch_v1_Job_spec_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
														optional
															io_k8s_api_batch_v1_Job_spec_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
															String io_k8s_api_batch_v1_Job_spec_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
								alternative
									io_k8s_api_batch_v1_Job_spec_template_Never {doc 'Specific value: Never'}
									io_k8s_api_batch_v1_Job_spec_template_OnFailure {doc 'Specific value: OnFailure'}
						optional
							Integer io_k8s_api_batch_v1_Job_spec_activeDeadlineSeconds {doc 'Specifies the duration in seconds relative to the startTime that the job may be continuously active before the system tries to terminate it; value must be positive integer If a Job is suspended (at creation or through an update), this timer will effectively be stopped and reset when the Job is resumed again'}
							Integer io_k8s_api_batch_v1_Job_spec_backoffLimit {default 6, doc 'Specifies the number of retries before marking this job failed Defaults to 6'}
							Integer io_k8s_api_batch_v1_Job_spec_backoffLimitPerIndex {doc 'Specifies the limit for the number of retries within an index before marking this index as failed When enabled the number of failures per index is kept in the pod_s batchkubernetesio/job-index-failure-count annotation It can only be set when Job_s completionMode=Indexed, and the Pod_s restart policy is Never The field is immutable This field is beta-level It can be used when the JobBackoffLimitPerIndex feature gate is enabled (enabled by default)'}
							io_k8s_api_batch_v1_Job_spec_completionMode {doc 'completionMode specifies how Pod completions are tracked It can be NonIndexed (default) or IndexedNonIndexed means that the Job is considered complete when there have been speccompletions successfully completed Pods Each Pod completion is homologous to each otherIndexed means that the Pods of a Job get an associated completion index from 0 to (speccompletions - 1), available in the annotation batchkubernetesio/job-completion-index The Job is considered complete when there is one successfully completed Pod for each index When value is Indexed, speccompletions must be specified and specparallelism must be less than or equal to 10^5 In addition, The Pod name takes the form $(job-name)-$(index)-$(random-string), the Pod hostname takes the form $(job-name)-$(index)More completion modes can be added in the future If the Job controller observes a mode that it doesn_t recognize, which is possible during upgrades due to version skew, the controller skips updates for the Job'}
								alternative
									io_k8s_api_batch_v1_Job_spec_completionMode_Indexed {doc 'Specific value: Indexed'}
									io_k8s_api_batch_v1_Job_spec_completionMode_NonIndexed {doc 'Specific value: NonIndexed'}
							Integer io_k8s_api_batch_v1_Job_spec_completions {doc 'Specifies the desired number of successfully finished pods the job should be run with  Setting to null means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value  Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
							String io_k8s_api_batch_v1_Job_spec_managedBy {doc 'ManagedBy field indicates the controller that manages a Job The k8s Job controller reconciles jobs which don_t have this field at all or the field value is the reserved string kubernetesio/job-controller, but skips reconciling Jobs with a custom value for this field The value must be a valid domain-prefixed path (eg acmeio/foo) - all characters before the first / must be a valid subdomain as defined by RFC 1123 All characters trailing the first / must be valid HTTP Path characters as defined by RFC 3986 The value cannot exceed 64 charactersThis field is alpha-level The job controller accepts setting the field when the feature gate JobManagedBy is enabled (disabled by default)'}
							io_k8s_api_batch_v1_Job_spec_manualSelector {doc 'manualSelector controls generation of pod labels and pod selectors Leave manualSelector unset unless you are certain what you are doing When false or unset, the system pick labels unique to this job and appends those labels to the pod template  When true, the user is responsible for picking unique labels and specifying the selector  Failure to pick a unique label may cause this and other jobs to not function correctly  However, You may see manualSelector=true in jobs that were created with the old extensions/v1beta1 API More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector'}
							Integer io_k8s_api_batch_v1_Job_spec_maxFailedIndexes {doc 'Specifies the maximal number of failed indexes before marking the Job as failed, when backoffLimitPerIndex is set Once the number of failed indexes exceeds this number the entire Job is marked as Failed and its execution is terminated When left as null the job continues execution of all of its indexes and is marked with the Complete Job condition It can only be specified when backoffLimitPerIndex is set It can be null or up to completions It is required and must be less than or equal to 10^4 when is completions greater than 10^5 This field is beta-level It can be used when the JobBackoffLimitPerIndex feature gate is enabled (enabled by default)'}
							Integer io_k8s_api_batch_v1_Job_spec_parallelism {doc 'Specifies the maximum desired number of pods the job should run at any given time The actual number of pods running in steady state will be less than this number when ((speccompletions - statussuccessful) < specparallelism), ie when the work left to do is less than max parallelism More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
							io_k8s_api_batch_v1_Job_spec_podFailurePolicy {doc 'Specifies the policy of handling failed pods In particular, it allows to specify the set of actions and conditions which need to be satisfied to take the associated action If empty, the default behaviour applies - the counter of failed pods, represented by the jobs_s statusfailed field, is incremented and it is checked against the backoffLimit This field cannot be used in combination with restartPolicy=OnFailureThis field is beta-level It can be used when the JobPodFailurePolicy feature gate is enabled (enabled by default)'}
								mandatory
									io_k8s_api_batch_v1_Job_spec_podFailurePolicy_rules cardinality [1..*] {doc 'A list of pod failure policy rules The rules are evaluated in order Once a rule matches a Pod failure, the remaining of the rules are ignored When no rule matches the Pod failure, the default handling applies - the counter of pod failures is incremented and it is checked against the backoffLimit At most 20 elements are allowed'}
										mandatory
											io_k8s_api_batch_v1_Job_spec_podFailurePolicy_rules_action {doc 'Specifies the action taken on a pod failure when the requirements are satisfied Possible values are:- FailJob: indicates that the pod_s job is marked as Failed and all  running pods are terminated- FailIndex: indicates that the pod_s index is marked as Failed and will  not be restarted  This value is beta-level It can be used when the  JobBackoffLimitPerIndex feature gate is enabled (enabled by default)- Ignore: indicates that the counter towards the backoffLimit is not  incremented and a replacement pod is created- Count: indicates that the pod is handled in the default way - the  counter towards the backoffLimit is incrementedAdditional values are considered to be added in the future Clients should react to an unknown action by skipping the rule'}
												alternative
													io_k8s_api_batch_v1_Job_spec_podFailurePolicy_rules_action_FailIndex {doc 'Specific value: FailIndex'}
													io_k8s_api_batch_v1_Job_spec_podFailurePolicy_rules_action_Count {doc 'Specific value: Count'}
													io_k8s_api_batch_v1_Job_spec_podFailurePolicy_rules_action_FailJob {doc 'Specific value: FailJob'}
													io_k8s_api_batch_v1_Job_spec_podFailurePolicy_rules_action_Ignore {doc 'Specific value: Ignore'}
										optional
											io_k8s_api_batch_v1_Job_spec_podFailurePolicy_rules_onExitCodes {doc 'Represents the requirement on the container exit codes'}
												mandatory
													io_k8s_api_batch_v1_Job_spec_podFailurePolicy_rules_onExitCodes_operator {doc 'Represents the relationship between the container exit code(s) and the specified values Containers completed with success (exit code 0) are excluded from the requirement check Possible values are:- In: the requirement is satisfied if at least one container exit code  (might be multiple if there are multiple containers not restricted  by the _containerName_ field) is in the set of specified values- NotIn: the requirement is satisfied if at least one container exit code  (might be multiple if there are multiple containers not restricted  by the _containerName_ field) is not in the set of specified valuesAdditional values are considered to be added in the future Clients should react to an unknown operator by assuming the requirement is not satisfied'}
														alternative
															io_k8s_api_batch_v1_Job_spec_podFailurePolicy_rules_onExitCodes_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_batch_v1_Job_spec_podFailurePolicy_rules_onExitCodes_operator_In {doc 'Specific value: In'}
															io_k8s_api_batch_v1_Job_spec_podFailurePolicy_rules_onExitCodes_operator_containerName {doc 'Specific value: containerName'}
													io_k8s_api_batch_v1_Job_spec_podFailurePolicy_rules_onExitCodes_values cardinality [1..*] {doc 'Specifies the set of values Each returned container exit code (might be multiple in case of multiple containers) is checked against this set of values with respect to the operator The list of values must be ordered and must not contain duplicates Value _0_ cannot be used for the In operator At least one element is required At most 255 elements are allowed'}
														mandatory
															Integer io_k8s_api_batch_v1_Job_spec_podFailurePolicy_rules_onExitCodes_values_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
												optional
													String io_k8s_api_batch_v1_Job_spec_podFailurePolicy_rules_onExitCodes_containerName {doc 'Restricts the check for exit codes to the container with the specified name When null, the rule applies to all containers When specified, it should match one the container or initContainer names in the pod template'}
											io_k8s_api_batch_v1_Job_spec_podFailurePolicy_rules_onPodConditions cardinality [1..*] {doc 'Represents the requirement on the pod conditions The requirement is represented as a list of pod condition patterns The requirement is satisfied if at least one pattern matches an actual pod condition At most 20 elements are allowed'}
												mandatory
													String io_k8s_api_batch_v1_Job_spec_podFailurePolicy_rules_onPodConditions_status {default true, doc 'Specifies the required Pod condition status To match a pod condition it is required that the specified status equals the pod condition status Defaults to True'}
													String io_k8s_api_batch_v1_Job_spec_podFailurePolicy_rules_onPodConditions_type {doc 'Specifies the required Pod condition type To match a pod condition it is required that specified type equals the pod condition type'}
							String io_k8s_api_batch_v1_Job_spec_podReplacementPolicy {doc 'podReplacementPolicy specifies when to create replacement Pods Possible values are: - TerminatingOrFailed means that we recreate pods  when they are terminating (has a metadatadeletionTimestamp) or failed- Failed means to wait until a previously created Pod is fully terminated (has phase  Failed or Succeeded) before creating a replacement PodWhen using podFailurePolicy, Failed is the the only allowed value TerminatingOrFailed and Failed are allowed values when podFailurePolicy is not in use This is an beta field To use this, enable the JobPodReplacementPolicy feature toggle This is on by default'}
							io_k8s_api_batch_v1_Job_spec_selector {doc 'A label query over pods that should match the pod count Normally, the system sets this field for you More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/#label-selectors'}
								optional
									io_k8s_api_batch_v1_Job_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_batch_v1_Job_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_batch_v1_Job_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_batch_v1_Job_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_batch_v1_Job_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_batch_v1_Job_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_batch_v1_Job_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_batch_v1_Job_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_batch_v1_Job_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_batch_v1_Job_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_batch_v1_Job_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_batch_v1_Job_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_batch_v1_Job_spec_successPolicy {doc 'successPolicy specifies the policy when the Job can be declared as succeeded If empty, the default behavior applies - the Job is declared as succeeded only when the number of succeeded pods equals to the completions When the field is specified, it must be immutable and works only for the Indexed Jobs Once the Job meets the SuccessPolicy, the lingering pods are terminatedThis field  is alpha-level To use this field, you must enable the JobSuccessPolicy feature gate (disabled by default)'}
								mandatory
									io_k8s_api_batch_v1_Job_spec_successPolicy_rules cardinality [1..*] {doc 'rules represents the list of alternative rules for the declaring the Jobs as successful before statussucceeded >= speccompletions Once any of the rules are met, the SucceededCriteriaMet condition is added, and the lingering pods are removed The terminal state for such a Job has the Complete condition Additionally, these rules are evaluated in order; Once the Job meets one of the rules, other rules are ignored At most 20 elements are allowed'}
										optional
											io_k8s_api_batch_v1_Job_spec_successPolicy_rules_succeededCount {abstract, doc 'succeededCount specifies the minimal required size of the actual set of the succeeded indexes for the Job When succeededCount is used along with succeededIndexes, the check is constrained only to the set of indexes specified by succeededIndexes For example, given that succeededIndexes is 1-4, succeededCount is 3, and completed indexes are 1, 3, and 5, the Job isn_t declared as succeeded because only 1 and 3 indexes are considered in that rules When this field is null, this doesn_t default to any value and is never evaluated at any time When specified it needs to be a positive integer'}
												mandatory
													Integer io_k8s_api_batch_v1_Job_spec_successPolicy_rules_succeededCount_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_batch_v1_Job_spec_successPolicy_rules_succeededIndexes {abstract, doc 'succeededIndexes specifies the set of indexes which need to be contained in the actual set of the succeeded indexes for the Job The list of indexes must be within 0 to speccompletions-1 and must not contain duplicates At least one element is required The indexes are represented as intervals separated by commas The intervals can be a decimal integer or a pair of decimal integers separated by a hyphen The number are listed in represented by the first and last element of the series, separated by a hyphen For example, if the completed indexes are 1, 3, 4, 5 and 7, they are represented as 1,3-5,7 When this field is null, this field doesn_t default to any value and is never evaluated at any time'}
												mandatory
													String io_k8s_api_batch_v1_Job_spec_successPolicy_rules_succeededIndexes_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							io_k8s_api_batch_v1_Job_spec_suspend {default false, doc 'suspend specifies whether the Job controller should create Pods or not If a Job is created with suspend set to true, no Pods are created by the Job controller If a Job is suspended after creation (ie the flag goes from false to true), the Job controller will delete all active Pods associated with this Job Users must design their workload to gracefully handle this Suspending a Job will reset the StartTime field of the Job, effectively resetting the ActiveDeadlineSeconds timer too Defaults to false'}
							Integer io_k8s_api_batch_v1_Job_spec_ttlSecondsAfterFinished {doc 'ttlSecondsAfterFinished limits the lifetime of a Job that has finished execution (either Complete or Failed) If this field is set, ttlSecondsAfterFinished after the Job finishes, it is eligible to be automatically deleted When the Job is being deleted, its lifecycle guarantees (eg finalizers) will be honored If this field is unset, the Job won_t be automatically deleted If this field is set to zero, the Job becomes eligible to be deleted immediately after it finishes'}
					io_k8s_api_batch_v1_Job_status {doc 'Current status of a job More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							Integer io_k8s_api_batch_v1_Job_status_active {doc 'The number of pending and running pods which are not terminating (without a deletionTimestamp) The value is zero for finished jobs'}
							String io_k8s_api_batch_v1_Job_status_completedIndexes {doc 'completedIndexes holds the completed indexes when speccompletionMode = Indexed in a text format The indexes are represented as decimal integers separated by commas The numbers are listed in increasing order Three or more consecutive numbers are compressed and represented by the first and last element of the series, separated by a hyphen For example, if the completed indexes are 1, 3, 4, 5 and 7, they are represented as 1,3-5,7'}
							io_k8s_api_batch_v1_Job_status_completionTime {doc 'Represents time when the job was completed It is not guaranteed to be set in happens-before order across separate operations It is represented in RFC3339 form and is in UTC The completion time is set when the job finishes successfully, and only then The value cannot be updated or removed The value indicates the same or later point in time as the startTime field'}
								optional
									String io_k8s_api_batch_v1_Job_status_completionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_batch_v1_Job_status_conditions cardinality [1..*] {doc 'The latest available observations of an object_s current state When a Job fails, one of the conditions will have type Failed and status true When a Job is suspended, one of the conditions will have type Suspended and status true; when the Job is resumed, the status of this condition will become false When a Job is completed, one of the conditions will have type Complete and status trueA job is considered finished when it is in a terminal condition, either Complete or Failed A Job cannot have both the Complete and Failed conditions Additionally, it cannot be in the Complete and FailureTarget conditions The Complete, Failed and FailureTarget conditions cannot be disabledMore info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
								mandatory
									io_k8s_api_batch_v1_Job_status_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
										alternative
											io_k8s_api_batch_v1_Job_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_batch_v1_Job_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_batch_v1_Job_status_conditions_status_True {doc 'Specific value: True'}
									io_k8s_api_batch_v1_Job_status_conditions_type {doc 'Type of job condition, Complete or Failed'}
										alternative
											io_k8s_api_batch_v1_Job_status_conditions_type_Complete {doc 'Specific value: Complete'}
											io_k8s_api_batch_v1_Job_status_conditions_type_Failed {doc 'Specific value: Failed'}
								optional
									io_k8s_api_batch_v1_Job_status_conditions_lastProbeTime {doc 'Last time the condition was checked'}
										optional
											String io_k8s_api_batch_v1_Job_status_conditions_lastProbeTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_batch_v1_Job_status_conditions_lastTransitionTime {doc 'Last time the condition transit from one status to another'}
										optional
											String io_k8s_api_batch_v1_Job_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_batch_v1_Job_status_conditions_message {doc 'Human readable message indicating details about last transition'}
									String io_k8s_api_batch_v1_Job_status_conditions_reason {doc '(brief) reason for the condition_s last transition'}
							Integer io_k8s_api_batch_v1_Job_status_failed {doc 'The number of pods which reached phase Failed The value increases monotonically'}
							String io_k8s_api_batch_v1_Job_status_failedIndexes {doc 'FailedIndexes holds the failed indexes when specbackoffLimitPerIndex is set The indexes are represented in the text format analogous as for the completedIndexes field, ie they are kept as decimal integers separated by commas The numbers are listed in increasing order Three or more consecutive numbers are compressed and represented by the first and last element of the series, separated by a hyphen For example, if the failed indexes are 1, 3, 4, 5 and 7, they are represented as 1,3-5,7 The set of failed indexes cannot overlap with the set of completed indexesThis field is beta-level It can be used when the JobBackoffLimitPerIndex feature gate is enabled (enabled by default)'}
							Integer io_k8s_api_batch_v1_Job_status_ready {doc 'The number of pods which have a Ready condition'}
							io_k8s_api_batch_v1_Job_status_startTime {doc 'Represents time when the job controller started processing a job When a Job is created in the suspended state, this field is not set until the first time it is resumed This field is reset every time a Job is resumed from suspension It is represented in RFC3339 form and is in UTCOnce set, the field can only be removed when the job is suspended The field cannot be modified while the job is unsuspended or finished'}
								optional
									String io_k8s_api_batch_v1_Job_status_startTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							Integer io_k8s_api_batch_v1_Job_status_succeeded {doc 'The number of pods which reached phase Succeeded The value increases monotonically for a given spec However, it may decrease in reaction to scale down of elastic indexed jobs'}
							Integer io_k8s_api_batch_v1_Job_status_terminating {doc 'The number of pods which are terminating (in phase Pending or Running and have a deletionTimestamp)This field is beta-level The job controller populates the field when the feature gate JobPodReplacementPolicy is enabled (enabled by default)'}
							io_k8s_api_batch_v1_Job_status_uncountedTerminatedPods {doc 'uncountedTerminatedPods holds the UIDs of Pods that have terminated but the job controller hasn_t yet accounted for in the status countersThe job controller creates pods with a finalizer When a pod terminates (succeeded or failed), the controller does three steps to account for it in the job status:1 Add the pod UID to the arrays in this field 2 Remove the pod finalizer 3 Remove the pod UID from the arrays while increasing the corresponding    counterOld jobs might not be tracked using this field, in which case the field remains null The structure is empty for finished jobs'}
								optional
									io_k8s_api_batch_v1_Job_status_uncountedTerminatedPods_failed cardinality [1..*] {doc 'failed holds UIDs of failed Pods'}
										mandatory
											String io_k8s_api_batch_v1_Job_status_uncountedTerminatedPods_failed_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_batch_v1_Job_status_uncountedTerminatedPods_succeeded cardinality [1..*] {doc 'succeeded holds UIDs of succeeded Pods'}
										mandatory
											String io_k8s_api_batch_v1_Job_status_uncountedTerminatedPods_succeeded_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_batch_v1_JobCondition {doc 'JobCondition describes current state of a job'}
				mandatory
					io_k8s_api_batch_v1_JobCondition_status {doc 'Status of the condition, one of True, False, Unknown'}
						alternative
							io_k8s_api_batch_v1_JobCondition_status_Unknown {doc 'Specific value: Unknown'}
							io_k8s_api_batch_v1_JobCondition_status_False {doc 'Specific value: False'}
							io_k8s_api_batch_v1_JobCondition_status_True {doc 'Specific value: True'}
					io_k8s_api_batch_v1_JobCondition_type {doc 'Type of job condition, Complete or Failed'}
						alternative
							io_k8s_api_batch_v1_JobCondition_type_Complete {doc 'Specific value: Complete'}
							io_k8s_api_batch_v1_JobCondition_type_Failed {doc 'Specific value: Failed'}
				optional
					io_k8s_api_batch_v1_JobCondition_lastProbeTime {doc 'Last time the condition was checked'}
						optional
							String io_k8s_api_batch_v1_JobCondition_lastProbeTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					io_k8s_api_batch_v1_JobCondition_lastTransitionTime {doc 'Last time the condition transit from one status to another'}
						optional
							String io_k8s_api_batch_v1_JobCondition_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_api_batch_v1_JobCondition_message {doc 'Human readable message indicating details about last transition'}
					String io_k8s_api_batch_v1_JobCondition_reason {doc '(brief) reason for the condition_s last transition'}
			io_k8s_api_batch_v1_JobList {doc 'JobList is a collection of jobs'}
				mandatory
					io_k8s_api_batch_v1_JobList_items cardinality [1..*] {doc 'items is the list of Jobs'}
						optional
							String io_k8s_api_batch_v1_JobList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_batch_v1_JobList_items_kind {default 'Job', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_batch_v1_JobList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_batch_v1_JobList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_batch_v1_JobList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_batch_v1_JobList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_batch_v1_JobList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_batch_v1_JobList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_batch_v1_JobList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_batch_v1_JobList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_batch_v1_JobList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_batch_v1_JobList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_batch_v1_JobList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_batch_v1_JobList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_batch_v1_JobList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_batch_v1_JobList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_batch_v1_JobList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_batch_v1_JobList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_batch_v1_JobList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_batch_v1_JobList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_batch_v1_JobList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_batch_v1_JobList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_batch_v1_JobList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_batch_v1_JobList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_batch_v1_JobList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_batch_v1_JobList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_batch_v1_JobList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_batch_v1_JobList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_batch_v1_JobList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_batch_v1_JobList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_batch_v1_JobList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_batch_v1_JobList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_batch_v1_JobList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_batch_v1_JobList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_batch_v1_JobList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_batch_v1_JobList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_batch_v1_JobList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_batch_v1_JobList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_batch_v1_JobList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_batch_v1_JobList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_batch_v1_JobList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_batch_v1_JobList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_batch_v1_JobList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_batch_v1_JobList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_batch_v1_JobList_items_spec {doc 'Specification of the desired behavior of a job More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									io_k8s_api_batch_v1_JobList_items_spec_template {doc 'Describes the pod that will be created when executing a job The only allowed templatespecrestartPolicy values are Never or OnFailure More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
										optional
											io_k8s_api_batch_v1_JobList_items_spec_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													io_k8s_api_batch_v1_JobList_items_spec_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
														optional
															String io_k8s_api_batch_v1_JobList_items_spec_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_batch_v1_JobList_items_spec_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
														optional
															String io_k8s_api_batch_v1_JobList_items_spec_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															io_k8s_api_batch_v1_JobList_items_spec_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
													Integer io_k8s_api_batch_v1_JobList_items_spec_template_metadata_deletionGracePeriodSeconds {doc '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'}
													io_k8s_api_batch_v1_JobList_items_spec_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
														optional
															String io_k8s_api_batch_v1_JobList_items_spec_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_batch_v1_JobList_items_spec_template_metadata_finalizers cardinality [1..*] {doc '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'}
														mandatory
															String io_k8s_api_batch_v1_JobList_items_spec_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													String io_k8s_api_batch_v1_JobList_items_spec_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
													Integer io_k8s_api_batch_v1_JobList_items_spec_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
													io_k8s_api_batch_v1_JobList_items_spec_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
														mandatory
															String io_k8s_api_batch_v1_JobList_items_spec_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_batch_v1_JobList_items_spec_template_metadata_managedFields cardinality [1..*] {doc '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'}
														optional
															String io_k8s_api_batch_v1_JobList_items_spec_template_metadata_managedFields_apiVersion {doc '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'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
															io_k8s_api_batch_v1_JobList_items_spec_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
															io_k8s_api_batch_v1_JobList_items_spec_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																alternative
																	io_k8s_api_batch_v1_JobList_items_spec_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_metadata_managedFields_subresource {doc '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'}
															io_k8s_api_batch_v1_JobList_items_spec_template_metadata_managedFields_time {doc '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'}
																optional
																	String io_k8s_api_batch_v1_JobList_items_spec_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													String io_k8s_api_batch_v1_JobList_items_spec_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
													String io_k8s_api_batch_v1_JobList_items_spec_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
													io_k8s_api_batch_v1_JobList_items_spec_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
														mandatory
															String io_k8s_api_batch_v1_JobList_items_spec_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
														optional
															io_k8s_api_batch_v1_JobList_items_spec_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
															io_k8s_api_batch_v1_JobList_items_spec_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
													String io_k8s_api_batch_v1_JobList_items_spec_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
													String io_k8s_api_batch_v1_JobList_items_spec_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
													String io_k8s_api_batch_v1_JobList_items_spec_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
											io_k8s_api_batch_v1_JobList_items_spec_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
												mandatory
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
														mandatory
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
														optional
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																optional
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																alternative
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																optional
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																mandatory
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																				alternative
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																				mandatory
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																				alternative
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																				mandatory
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																optional
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
												optional
													Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
														optional
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																				optional
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																				optional
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																				optional
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																						optional
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																						optional
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																				optional
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																						optional
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																						optional
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
														optional
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_dnsConfig_options_name {doc 'Required'}
																optional
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_dnsConfig_options_value
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
														alternative
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_dnsPolicy_None {doc 'Specific value: None'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
														mandatory
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
														optional
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																optional
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																alternative
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																optional
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																mandatory
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																				alternative
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																				mandatory
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																				alternative
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																				mandatory
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																optional
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
														mandatory
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
														optional
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
													String io_k8s_api_batch_v1_JobList_items_spec_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
														optional
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
														mandatory
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
														optional
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																optional
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																alternative
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																optional
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																mandatory
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																				alternative
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																				mandatory
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																				alternative
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																				mandatory
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																optional
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
													String io_k8s_api_batch_v1_JobList_items_spec_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
														mandatory
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
														mandatory
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
																alternative
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows {doc 'Specific value: windows'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_linux {doc 'Specific value: linux'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
														alternative
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
														alternative
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
													Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
													String io_k8s_api_batch_v1_JobList_items_spec_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
														mandatory
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
														mandatory
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
														optional
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
														alternative
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
													String io_k8s_api_batch_v1_JobList_items_spec_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
													String io_k8s_api_batch_v1_JobList_items_spec_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
														mandatory
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
														optional
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
																alternative
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													String io_k8s_api_batch_v1_JobList_items_spec_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
													String io_k8s_api_batch_v1_JobList_items_spec_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
													String io_k8s_api_batch_v1_JobList_items_spec_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
													Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
														optional
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
																alternative
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
																alternative
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
															Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
														mandatory
															Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
														optional
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
													io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
														mandatory
															String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
														optional
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
																mandatory
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																optional
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
																optional
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
																optional
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
																optional
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																optional
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																		alternative
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
																		mandatory
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																				optional
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																						optional
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																						optional
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																						optional
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																								alternative
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																								alternative
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																						optional
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																				optional
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																						optional
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																						optional
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																						optional
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																						optional
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																								optional
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																								alternative
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																								optional
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																						optional
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
																optional
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
																optional
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
																optional
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
																		optional
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																				optional
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																						optional
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																				optional
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																						optional
																							Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																				optional
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																						optional
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																								mandatory
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																								optional
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																							Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																							io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																								mandatory
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																								optional
																									String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																									io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																										alternative
																											String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																				optional
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																						mandatory
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																							String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																						optional
																							Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																				mandatory
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																				optional
																					String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																					Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
																optional
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
																optional
																	Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
																		optional
																			String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
															io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
																mandatory
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
																optional
																	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
																	String io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
										alternative
											io_k8s_api_batch_v1_JobList_items_spec_template_Never {doc 'Specific value: Never'}
											io_k8s_api_batch_v1_JobList_items_spec_template_OnFailure {doc 'Specific value: OnFailure'}
								optional
									Integer io_k8s_api_batch_v1_JobList_items_spec_activeDeadlineSeconds {doc 'Specifies the duration in seconds relative to the startTime that the job may be continuously active before the system tries to terminate it; value must be positive integer If a Job is suspended (at creation or through an update), this timer will effectively be stopped and reset when the Job is resumed again'}
									Integer io_k8s_api_batch_v1_JobList_items_spec_backoffLimit {default 6, doc 'Specifies the number of retries before marking this job failed Defaults to 6'}
									Integer io_k8s_api_batch_v1_JobList_items_spec_backoffLimitPerIndex {doc 'Specifies the limit for the number of retries within an index before marking this index as failed When enabled the number of failures per index is kept in the pod_s batchkubernetesio/job-index-failure-count annotation It can only be set when Job_s completionMode=Indexed, and the Pod_s restart policy is Never The field is immutable This field is beta-level It can be used when the JobBackoffLimitPerIndex feature gate is enabled (enabled by default)'}
									io_k8s_api_batch_v1_JobList_items_spec_completionMode {doc 'completionMode specifies how Pod completions are tracked It can be NonIndexed (default) or IndexedNonIndexed means that the Job is considered complete when there have been speccompletions successfully completed Pods Each Pod completion is homologous to each otherIndexed means that the Pods of a Job get an associated completion index from 0 to (speccompletions - 1), available in the annotation batchkubernetesio/job-completion-index The Job is considered complete when there is one successfully completed Pod for each index When value is Indexed, speccompletions must be specified and specparallelism must be less than or equal to 10^5 In addition, The Pod name takes the form $(job-name)-$(index)-$(random-string), the Pod hostname takes the form $(job-name)-$(index)More completion modes can be added in the future If the Job controller observes a mode that it doesn_t recognize, which is possible during upgrades due to version skew, the controller skips updates for the Job'}
										alternative
											io_k8s_api_batch_v1_JobList_items_spec_completionMode_Indexed {doc 'Specific value: Indexed'}
											io_k8s_api_batch_v1_JobList_items_spec_completionMode_NonIndexed {doc 'Specific value: NonIndexed'}
									Integer io_k8s_api_batch_v1_JobList_items_spec_completions {doc 'Specifies the desired number of successfully finished pods the job should be run with  Setting to null means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value  Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
									String io_k8s_api_batch_v1_JobList_items_spec_managedBy {doc 'ManagedBy field indicates the controller that manages a Job The k8s Job controller reconciles jobs which don_t have this field at all or the field value is the reserved string kubernetesio/job-controller, but skips reconciling Jobs with a custom value for this field The value must be a valid domain-prefixed path (eg acmeio/foo) - all characters before the first / must be a valid subdomain as defined by RFC 1123 All characters trailing the first / must be valid HTTP Path characters as defined by RFC 3986 The value cannot exceed 64 charactersThis field is alpha-level The job controller accepts setting the field when the feature gate JobManagedBy is enabled (disabled by default)'}
									io_k8s_api_batch_v1_JobList_items_spec_manualSelector {doc 'manualSelector controls generation of pod labels and pod selectors Leave manualSelector unset unless you are certain what you are doing When false or unset, the system pick labels unique to this job and appends those labels to the pod template  When true, the user is responsible for picking unique labels and specifying the selector  Failure to pick a unique label may cause this and other jobs to not function correctly  However, You may see manualSelector=true in jobs that were created with the old extensions/v1beta1 API More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector'}
									Integer io_k8s_api_batch_v1_JobList_items_spec_maxFailedIndexes {doc 'Specifies the maximal number of failed indexes before marking the Job as failed, when backoffLimitPerIndex is set Once the number of failed indexes exceeds this number the entire Job is marked as Failed and its execution is terminated When left as null the job continues execution of all of its indexes and is marked with the Complete Job condition It can only be specified when backoffLimitPerIndex is set It can be null or up to completions It is required and must be less than or equal to 10^4 when is completions greater than 10^5 This field is beta-level It can be used when the JobBackoffLimitPerIndex feature gate is enabled (enabled by default)'}
									Integer io_k8s_api_batch_v1_JobList_items_spec_parallelism {doc 'Specifies the maximum desired number of pods the job should run at any given time The actual number of pods running in steady state will be less than this number when ((speccompletions - statussuccessful) < specparallelism), ie when the work left to do is less than max parallelism More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
									io_k8s_api_batch_v1_JobList_items_spec_podFailurePolicy {doc 'Specifies the policy of handling failed pods In particular, it allows to specify the set of actions and conditions which need to be satisfied to take the associated action If empty, the default behaviour applies - the counter of failed pods, represented by the jobs_s statusfailed field, is incremented and it is checked against the backoffLimit This field cannot be used in combination with restartPolicy=OnFailureThis field is beta-level It can be used when the JobPodFailurePolicy feature gate is enabled (enabled by default)'}
										mandatory
											io_k8s_api_batch_v1_JobList_items_spec_podFailurePolicy_rules cardinality [1..*] {doc 'A list of pod failure policy rules The rules are evaluated in order Once a rule matches a Pod failure, the remaining of the rules are ignored When no rule matches the Pod failure, the default handling applies - the counter of pod failures is incremented and it is checked against the backoffLimit At most 20 elements are allowed'}
												mandatory
													io_k8s_api_batch_v1_JobList_items_spec_podFailurePolicy_rules_action {doc 'Specifies the action taken on a pod failure when the requirements are satisfied Possible values are:- FailJob: indicates that the pod_s job is marked as Failed and all  running pods are terminated- FailIndex: indicates that the pod_s index is marked as Failed and will  not be restarted  This value is beta-level It can be used when the  JobBackoffLimitPerIndex feature gate is enabled (enabled by default)- Ignore: indicates that the counter towards the backoffLimit is not  incremented and a replacement pod is created- Count: indicates that the pod is handled in the default way - the  counter towards the backoffLimit is incrementedAdditional values are considered to be added in the future Clients should react to an unknown action by skipping the rule'}
														alternative
															io_k8s_api_batch_v1_JobList_items_spec_podFailurePolicy_rules_action_FailIndex {doc 'Specific value: FailIndex'}
															io_k8s_api_batch_v1_JobList_items_spec_podFailurePolicy_rules_action_Count {doc 'Specific value: Count'}
															io_k8s_api_batch_v1_JobList_items_spec_podFailurePolicy_rules_action_FailJob {doc 'Specific value: FailJob'}
															io_k8s_api_batch_v1_JobList_items_spec_podFailurePolicy_rules_action_Ignore {doc 'Specific value: Ignore'}
												optional
													io_k8s_api_batch_v1_JobList_items_spec_podFailurePolicy_rules_onExitCodes {doc 'Represents the requirement on the container exit codes'}
														mandatory
															io_k8s_api_batch_v1_JobList_items_spec_podFailurePolicy_rules_onExitCodes_operator {doc 'Represents the relationship between the container exit code(s) and the specified values Containers completed with success (exit code 0) are excluded from the requirement check Possible values are:- In: the requirement is satisfied if at least one container exit code  (might be multiple if there are multiple containers not restricted  by the _containerName_ field) is in the set of specified values- NotIn: the requirement is satisfied if at least one container exit code  (might be multiple if there are multiple containers not restricted  by the _containerName_ field) is not in the set of specified valuesAdditional values are considered to be added in the future Clients should react to an unknown operator by assuming the requirement is not satisfied'}
																alternative
																	io_k8s_api_batch_v1_JobList_items_spec_podFailurePolicy_rules_onExitCodes_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_batch_v1_JobList_items_spec_podFailurePolicy_rules_onExitCodes_operator_In {doc 'Specific value: In'}
																	io_k8s_api_batch_v1_JobList_items_spec_podFailurePolicy_rules_onExitCodes_operator_containerName {doc 'Specific value: containerName'}
															io_k8s_api_batch_v1_JobList_items_spec_podFailurePolicy_rules_onExitCodes_values cardinality [1..*] {doc 'Specifies the set of values Each returned container exit code (might be multiple in case of multiple containers) is checked against this set of values with respect to the operator The list of values must be ordered and must not contain duplicates Value _0_ cannot be used for the In operator At least one element is required At most 255 elements are allowed'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobList_items_spec_podFailurePolicy_rules_onExitCodes_values_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
														optional
															String io_k8s_api_batch_v1_JobList_items_spec_podFailurePolicy_rules_onExitCodes_containerName {doc 'Restricts the check for exit codes to the container with the specified name When null, the rule applies to all containers When specified, it should match one the container or initContainer names in the pod template'}
													io_k8s_api_batch_v1_JobList_items_spec_podFailurePolicy_rules_onPodConditions cardinality [1..*] {doc 'Represents the requirement on the pod conditions The requirement is represented as a list of pod condition patterns The requirement is satisfied if at least one pattern matches an actual pod condition At most 20 elements are allowed'}
														mandatory
															String io_k8s_api_batch_v1_JobList_items_spec_podFailurePolicy_rules_onPodConditions_status {default true, doc 'Specifies the required Pod condition status To match a pod condition it is required that the specified status equals the pod condition status Defaults to True'}
															String io_k8s_api_batch_v1_JobList_items_spec_podFailurePolicy_rules_onPodConditions_type {doc 'Specifies the required Pod condition type To match a pod condition it is required that specified type equals the pod condition type'}
									String io_k8s_api_batch_v1_JobList_items_spec_podReplacementPolicy {doc 'podReplacementPolicy specifies when to create replacement Pods Possible values are: - TerminatingOrFailed means that we recreate pods  when they are terminating (has a metadatadeletionTimestamp) or failed- Failed means to wait until a previously created Pod is fully terminated (has phase  Failed or Succeeded) before creating a replacement PodWhen using podFailurePolicy, Failed is the the only allowed value TerminatingOrFailed and Failed are allowed values when podFailurePolicy is not in use This is an beta field To use this, enable the JobPodReplacementPolicy feature toggle This is on by default'}
									io_k8s_api_batch_v1_JobList_items_spec_selector {doc 'A label query over pods that should match the pod count Normally, the system sets this field for you More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/#label-selectors'}
										optional
											io_k8s_api_batch_v1_JobList_items_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_batch_v1_JobList_items_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_batch_v1_JobList_items_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_batch_v1_JobList_items_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_batch_v1_JobList_items_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_batch_v1_JobList_items_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_batch_v1_JobList_items_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_batch_v1_JobList_items_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_batch_v1_JobList_items_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_batch_v1_JobList_items_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_batch_v1_JobList_items_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_batch_v1_JobList_items_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_batch_v1_JobList_items_spec_successPolicy {doc 'successPolicy specifies the policy when the Job can be declared as succeeded If empty, the default behavior applies - the Job is declared as succeeded only when the number of succeeded pods equals to the completions When the field is specified, it must be immutable and works only for the Indexed Jobs Once the Job meets the SuccessPolicy, the lingering pods are terminatedThis field  is alpha-level To use this field, you must enable the JobSuccessPolicy feature gate (disabled by default)'}
										mandatory
											io_k8s_api_batch_v1_JobList_items_spec_successPolicy_rules cardinality [1..*] {doc 'rules represents the list of alternative rules for the declaring the Jobs as successful before statussucceeded >= speccompletions Once any of the rules are met, the SucceededCriteriaMet condition is added, and the lingering pods are removed The terminal state for such a Job has the Complete condition Additionally, these rules are evaluated in order; Once the Job meets one of the rules, other rules are ignored At most 20 elements are allowed'}
												optional
													io_k8s_api_batch_v1_JobList_items_spec_successPolicy_rules_succeededCount {abstract, doc 'succeededCount specifies the minimal required size of the actual set of the succeeded indexes for the Job When succeededCount is used along with succeededIndexes, the check is constrained only to the set of indexes specified by succeededIndexes For example, given that succeededIndexes is 1-4, succeededCount is 3, and completed indexes are 1, 3, and 5, the Job isn_t declared as succeeded because only 1 and 3 indexes are considered in that rules When this field is null, this doesn_t default to any value and is never evaluated at any time When specified it needs to be a positive integer'}
														mandatory
															Integer io_k8s_api_batch_v1_JobList_items_spec_successPolicy_rules_succeededCount_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_batch_v1_JobList_items_spec_successPolicy_rules_succeededIndexes {abstract, doc 'succeededIndexes specifies the set of indexes which need to be contained in the actual set of the succeeded indexes for the Job The list of indexes must be within 0 to speccompletions-1 and must not contain duplicates At least one element is required The indexes are represented as intervals separated by commas The intervals can be a decimal integer or a pair of decimal integers separated by a hyphen The number are listed in represented by the first and last element of the series, separated by a hyphen For example, if the completed indexes are 1, 3, 4, 5 and 7, they are represented as 1,3-5,7 When this field is null, this field doesn_t default to any value and is never evaluated at any time'}
														mandatory
															String io_k8s_api_batch_v1_JobList_items_spec_successPolicy_rules_succeededIndexes_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_batch_v1_JobList_items_spec_suspend {default false, doc 'suspend specifies whether the Job controller should create Pods or not If a Job is created with suspend set to true, no Pods are created by the Job controller If a Job is suspended after creation (ie the flag goes from false to true), the Job controller will delete all active Pods associated with this Job Users must design their workload to gracefully handle this Suspending a Job will reset the StartTime field of the Job, effectively resetting the ActiveDeadlineSeconds timer too Defaults to false'}
									Integer io_k8s_api_batch_v1_JobList_items_spec_ttlSecondsAfterFinished {doc 'ttlSecondsAfterFinished limits the lifetime of a Job that has finished execution (either Complete or Failed) If this field is set, ttlSecondsAfterFinished after the Job finishes, it is eligible to be automatically deleted When the Job is being deleted, its lifecycle guarantees (eg finalizers) will be honored If this field is unset, the Job won_t be automatically deleted If this field is set to zero, the Job becomes eligible to be deleted immediately after it finishes'}
							io_k8s_api_batch_v1_JobList_items_status {doc 'Current status of a job More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								optional
									Integer io_k8s_api_batch_v1_JobList_items_status_active {doc 'The number of pending and running pods which are not terminating (without a deletionTimestamp) The value is zero for finished jobs'}
									String io_k8s_api_batch_v1_JobList_items_status_completedIndexes {doc 'completedIndexes holds the completed indexes when speccompletionMode = Indexed in a text format The indexes are represented as decimal integers separated by commas The numbers are listed in increasing order Three or more consecutive numbers are compressed and represented by the first and last element of the series, separated by a hyphen For example, if the completed indexes are 1, 3, 4, 5 and 7, they are represented as 1,3-5,7'}
									io_k8s_api_batch_v1_JobList_items_status_completionTime {doc 'Represents time when the job was completed It is not guaranteed to be set in happens-before order across separate operations It is represented in RFC3339 form and is in UTC The completion time is set when the job finishes successfully, and only then The value cannot be updated or removed The value indicates the same or later point in time as the startTime field'}
										optional
											String io_k8s_api_batch_v1_JobList_items_status_completionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_batch_v1_JobList_items_status_conditions cardinality [1..*] {doc 'The latest available observations of an object_s current state When a Job fails, one of the conditions will have type Failed and status true When a Job is suspended, one of the conditions will have type Suspended and status true; when the Job is resumed, the status of this condition will become false When a Job is completed, one of the conditions will have type Complete and status trueA job is considered finished when it is in a terminal condition, either Complete or Failed A Job cannot have both the Complete and Failed conditions Additionally, it cannot be in the Complete and FailureTarget conditions The Complete, Failed and FailureTarget conditions cannot be disabledMore info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
										mandatory
											io_k8s_api_batch_v1_JobList_items_status_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
												alternative
													io_k8s_api_batch_v1_JobList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_api_batch_v1_JobList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_api_batch_v1_JobList_items_status_conditions_status_True {doc 'Specific value: True'}
											io_k8s_api_batch_v1_JobList_items_status_conditions_type {doc 'Type of job condition, Complete or Failed'}
												alternative
													io_k8s_api_batch_v1_JobList_items_status_conditions_type_Complete {doc 'Specific value: Complete'}
													io_k8s_api_batch_v1_JobList_items_status_conditions_type_Failed {doc 'Specific value: Failed'}
										optional
											io_k8s_api_batch_v1_JobList_items_status_conditions_lastProbeTime {doc 'Last time the condition was checked'}
												optional
													String io_k8s_api_batch_v1_JobList_items_status_conditions_lastProbeTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_batch_v1_JobList_items_status_conditions_lastTransitionTime {doc 'Last time the condition transit from one status to another'}
												optional
													String io_k8s_api_batch_v1_JobList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_batch_v1_JobList_items_status_conditions_message {doc 'Human readable message indicating details about last transition'}
											String io_k8s_api_batch_v1_JobList_items_status_conditions_reason {doc '(brief) reason for the condition_s last transition'}
									Integer io_k8s_api_batch_v1_JobList_items_status_failed {doc 'The number of pods which reached phase Failed The value increases monotonically'}
									String io_k8s_api_batch_v1_JobList_items_status_failedIndexes {doc 'FailedIndexes holds the failed indexes when specbackoffLimitPerIndex is set The indexes are represented in the text format analogous as for the completedIndexes field, ie they are kept as decimal integers separated by commas The numbers are listed in increasing order Three or more consecutive numbers are compressed and represented by the first and last element of the series, separated by a hyphen For example, if the failed indexes are 1, 3, 4, 5 and 7, they are represented as 1,3-5,7 The set of failed indexes cannot overlap with the set of completed indexesThis field is beta-level It can be used when the JobBackoffLimitPerIndex feature gate is enabled (enabled by default)'}
									Integer io_k8s_api_batch_v1_JobList_items_status_ready {doc 'The number of pods which have a Ready condition'}
									io_k8s_api_batch_v1_JobList_items_status_startTime {doc 'Represents time when the job controller started processing a job When a Job is created in the suspended state, this field is not set until the first time it is resumed This field is reset every time a Job is resumed from suspension It is represented in RFC3339 form and is in UTCOnce set, the field can only be removed when the job is suspended The field cannot be modified while the job is unsuspended or finished'}
										optional
											String io_k8s_api_batch_v1_JobList_items_status_startTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									Integer io_k8s_api_batch_v1_JobList_items_status_succeeded {doc 'The number of pods which reached phase Succeeded The value increases monotonically for a given spec However, it may decrease in reaction to scale down of elastic indexed jobs'}
									Integer io_k8s_api_batch_v1_JobList_items_status_terminating {doc 'The number of pods which are terminating (in phase Pending or Running and have a deletionTimestamp)This field is beta-level The job controller populates the field when the feature gate JobPodReplacementPolicy is enabled (enabled by default)'}
									io_k8s_api_batch_v1_JobList_items_status_uncountedTerminatedPods {doc 'uncountedTerminatedPods holds the UIDs of Pods that have terminated but the job controller hasn_t yet accounted for in the status countersThe job controller creates pods with a finalizer When a pod terminates (succeeded or failed), the controller does three steps to account for it in the job status:1 Add the pod UID to the arrays in this field 2 Remove the pod finalizer 3 Remove the pod UID from the arrays while increasing the corresponding    counterOld jobs might not be tracked using this field, in which case the field remains null The structure is empty for finished jobs'}
										optional
											io_k8s_api_batch_v1_JobList_items_status_uncountedTerminatedPods_failed cardinality [1..*] {doc 'failed holds UIDs of failed Pods'}
												mandatory
													String io_k8s_api_batch_v1_JobList_items_status_uncountedTerminatedPods_failed_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_batch_v1_JobList_items_status_uncountedTerminatedPods_succeeded cardinality [1..*] {doc 'succeeded holds UIDs of succeeded Pods'}
												mandatory
													String io_k8s_api_batch_v1_JobList_items_status_uncountedTerminatedPods_succeeded_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					String io_k8s_api_batch_v1_JobList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_batch_v1_JobList_kind {default 'JobList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_batch_v1_JobList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_batch_v1_JobList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_batch_v1_JobList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_batch_v1_JobList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_batch_v1_JobList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_batch_v1_JobSpec {doc 'JobSpec describes how the job execution will look like'}
				mandatory
					io_k8s_api_batch_v1_JobSpec_template {doc 'Describes the pod that will be created when executing a job The only allowed templatespecrestartPolicy values are Never or OnFailure More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
						optional
							io_k8s_api_batch_v1_JobSpec_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_batch_v1_JobSpec_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_batch_v1_JobSpec_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_batch_v1_JobSpec_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_batch_v1_JobSpec_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_batch_v1_JobSpec_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_batch_v1_JobSpec_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_batch_v1_JobSpec_template_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_batch_v1_JobSpec_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_batch_v1_JobSpec_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_batch_v1_JobSpec_template_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_batch_v1_JobSpec_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_batch_v1_JobSpec_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_batch_v1_JobSpec_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_batch_v1_JobSpec_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_batch_v1_JobSpec_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_batch_v1_JobSpec_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_batch_v1_JobSpec_template_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_batch_v1_JobSpec_template_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_batch_v1_JobSpec_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_batch_v1_JobSpec_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_batch_v1_JobSpec_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_batch_v1_JobSpec_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_batch_v1_JobSpec_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_batch_v1_JobSpec_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_batch_v1_JobSpec_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_batch_v1_JobSpec_template_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_batch_v1_JobSpec_template_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_batch_v1_JobSpec_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_batch_v1_JobSpec_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_batch_v1_JobSpec_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_batch_v1_JobSpec_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_batch_v1_JobSpec_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_batch_v1_JobSpec_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_batch_v1_JobSpec_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_batch_v1_JobSpec_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_batch_v1_JobSpec_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_batch_v1_JobSpec_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_batch_v1_JobSpec_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_batch_v1_JobSpec_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_batch_v1_JobSpec_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_batch_v1_JobSpec_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									io_k8s_api_batch_v1_JobSpec_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
										mandatory
											String io_k8s_api_batch_v1_JobSpec_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
										optional
											io_k8s_api_batch_v1_JobSpec_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_batch_v1_JobSpec_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_batch_v1_JobSpec_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_batch_v1_JobSpec_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_batch_v1_JobSpec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_batch_v1_JobSpec_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_batch_v1_JobSpec_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
											io_k8s_api_batch_v1_JobSpec_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_batch_v1_JobSpec_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
												mandatory
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_batch_v1_JobSpec_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_batch_v1_JobSpec_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_batch_v1_JobSpec_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_batch_v1_JobSpec_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
											io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_batch_v1_JobSpec_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_batch_v1_JobSpec_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_batch_v1_JobSpec_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_batch_v1_JobSpec_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_batch_v1_JobSpec_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_batch_v1_JobSpec_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_batch_v1_JobSpec_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_batch_v1_JobSpec_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_batch_v1_JobSpec_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_batch_v1_JobSpec_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
								optional
									Integer io_k8s_api_batch_v1_JobSpec_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
									io_k8s_api_batch_v1_JobSpec_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
										optional
											io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																optional
																	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
													io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																optional
																	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
													io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																optional
																	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																optional
																	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
													io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																optional
																	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																optional
																	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_batch_v1_JobSpec_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
									io_k8s_api_batch_v1_JobSpec_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
										optional
											io_k8s_api_batch_v1_JobSpec_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_batch_v1_JobSpec_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_dnsConfig_options_name {doc 'Required'}
												optional
													String io_k8s_api_batch_v1_JobSpec_template_spec_dnsConfig_options_value
											io_k8s_api_batch_v1_JobSpec_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_batch_v1_JobSpec_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
										alternative
											io_k8s_api_batch_v1_JobSpec_template_spec_dnsPolicy_None {doc 'Specific value: None'}
											io_k8s_api_batch_v1_JobSpec_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
											io_k8s_api_batch_v1_JobSpec_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
											io_k8s_api_batch_v1_JobSpec_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
									io_k8s_api_batch_v1_JobSpec_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
									io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
										mandatory
											String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
										optional
											io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
											io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
												mandatory
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
											io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
											String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
									io_k8s_api_batch_v1_JobSpec_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
										mandatory
											String io_k8s_api_batch_v1_JobSpec_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
										optional
											io_k8s_api_batch_v1_JobSpec_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_batch_v1_JobSpec_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
									io_k8s_api_batch_v1_JobSpec_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
									io_k8s_api_batch_v1_JobSpec_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
									io_k8s_api_batch_v1_JobSpec_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
									String io_k8s_api_batch_v1_JobSpec_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
									io_k8s_api_batch_v1_JobSpec_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
										optional
											String io_k8s_api_batch_v1_JobSpec_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_batch_v1_JobSpec_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
										mandatory
											String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
										optional
											io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
											io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
												mandatory
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
											io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
									String io_k8s_api_batch_v1_JobSpec_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
									io_k8s_api_batch_v1_JobSpec_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
										mandatory
											String io_k8s_api_batch_v1_JobSpec_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_batch_v1_JobSpec_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
										mandatory
											io_k8s_api_batch_v1_JobSpec_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
												alternative
													io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows {doc 'Specific value: windows'}
													io_k8s_api_batch_v1_JobSpec_template_spec_os_name_linux {doc 'Specific value: linux'}
									io_k8s_api_batch_v1_JobSpec_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
										alternative
											String io_k8s_api_batch_v1_JobSpec_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_batch_v1_JobSpec_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_batch_v1_JobSpec_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
										alternative
											io_k8s_api_batch_v1_JobSpec_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
											io_k8s_api_batch_v1_JobSpec_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
									Integer io_k8s_api_batch_v1_JobSpec_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
									String io_k8s_api_batch_v1_JobSpec_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
									io_k8s_api_batch_v1_JobSpec_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
										mandatory
											String io_k8s_api_batch_v1_JobSpec_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
									io_k8s_api_batch_v1_JobSpec_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
										mandatory
											String io_k8s_api_batch_v1_JobSpec_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
										optional
											io_k8s_api_batch_v1_JobSpec_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_batch_v1_JobSpec_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_batch_v1_JobSpec_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
										alternative
											io_k8s_api_batch_v1_JobSpec_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
											io_k8s_api_batch_v1_JobSpec_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
											io_k8s_api_batch_v1_JobSpec_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
									String io_k8s_api_batch_v1_JobSpec_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
									String io_k8s_api_batch_v1_JobSpec_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
									io_k8s_api_batch_v1_JobSpec_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
										mandatory
											String io_k8s_api_batch_v1_JobSpec_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
									io_k8s_api_batch_v1_JobSpec_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
										optional
											io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
												alternative
													io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
													io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												optional
													String io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
											io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
											io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
											io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
												optional
													String io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
													io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
									String io_k8s_api_batch_v1_JobSpec_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
									String io_k8s_api_batch_v1_JobSpec_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
									io_k8s_api_batch_v1_JobSpec_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
									io_k8s_api_batch_v1_JobSpec_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
									String io_k8s_api_batch_v1_JobSpec_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
									Integer io_k8s_api_batch_v1_JobSpec_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
									io_k8s_api_batch_v1_JobSpec_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
										optional
											io_k8s_api_batch_v1_JobSpec_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
												alternative
													io_k8s_api_batch_v1_JobSpec_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
													io_k8s_api_batch_v1_JobSpec_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
													io_k8s_api_batch_v1_JobSpec_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
											String io_k8s_api_batch_v1_JobSpec_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
											io_k8s_api_batch_v1_JobSpec_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
												alternative
													io_k8s_api_batch_v1_JobSpec_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_batch_v1_JobSpec_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
											Integer io_k8s_api_batch_v1_JobSpec_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
											io_k8s_api_batch_v1_JobSpec_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
										mandatory
											Integer io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
											String io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
											String io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
										optional
											io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
											String io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
											String io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
									io_k8s_api_batch_v1_JobSpec_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
										mandatory
											String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
										optional
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
												mandatory
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
												optional
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
														optional
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
												optional
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
												optional
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
												optional
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
														alternative
															String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
														mandatory
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																optional
																	io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																		optional
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																		optional
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																		optional
																			io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				alternative
																					String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				alternative
																					String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																		optional
																			io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																optional
																	io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																		optional
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																		optional
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																		optional
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																		optional
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																			io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																				optional
																					io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																			io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																				alternative
																					io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																			io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																				optional
																					String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																		optional
																			io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																			io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
												optional
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
												optional
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
												optional
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
														optional
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																optional
																	io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																		optional
																			io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																optional
																	io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																optional
																	io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																		optional
																			io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																				mandatory
																					String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			Integer io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																				mandatory
																					String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																optional
																	io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																			String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																mandatory
																	String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																optional
																	String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																	Integer io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
												optional
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
												optional
													Integer io_k8s_api_batch_v1_JobSpec_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
														mandatory
															String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
															String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
														optional
															Integer io_k8s_api_batch_v1_JobSpec_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
														optional
															String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
											io_k8s_api_batch_v1_JobSpec_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
												optional
													io_k8s_api_batch_v1_JobSpec_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_batch_v1_JobSpec_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
													String io_k8s_api_batch_v1_JobSpec_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
						alternative
							io_k8s_api_batch_v1_JobSpec_template_Never {doc 'Specific value: Never'}
							io_k8s_api_batch_v1_JobSpec_template_OnFailure {doc 'Specific value: OnFailure'}
				optional
					Integer io_k8s_api_batch_v1_JobSpec_activeDeadlineSeconds {doc 'Specifies the duration in seconds relative to the startTime that the job may be continuously active before the system tries to terminate it; value must be positive integer If a Job is suspended (at creation or through an update), this timer will effectively be stopped and reset when the Job is resumed again'}
					Integer io_k8s_api_batch_v1_JobSpec_backoffLimit {default 6, doc 'Specifies the number of retries before marking this job failed Defaults to 6'}
					Integer io_k8s_api_batch_v1_JobSpec_backoffLimitPerIndex {doc 'Specifies the limit for the number of retries within an index before marking this index as failed When enabled the number of failures per index is kept in the pod_s batchkubernetesio/job-index-failure-count annotation It can only be set when Job_s completionMode=Indexed, and the Pod_s restart policy is Never The field is immutable This field is beta-level It can be used when the JobBackoffLimitPerIndex feature gate is enabled (enabled by default)'}
					io_k8s_api_batch_v1_JobSpec_completionMode {doc 'completionMode specifies how Pod completions are tracked It can be NonIndexed (default) or IndexedNonIndexed means that the Job is considered complete when there have been speccompletions successfully completed Pods Each Pod completion is homologous to each otherIndexed means that the Pods of a Job get an associated completion index from 0 to (speccompletions - 1), available in the annotation batchkubernetesio/job-completion-index The Job is considered complete when there is one successfully completed Pod for each index When value is Indexed, speccompletions must be specified and specparallelism must be less than or equal to 10^5 In addition, The Pod name takes the form $(job-name)-$(index)-$(random-string), the Pod hostname takes the form $(job-name)-$(index)More completion modes can be added in the future If the Job controller observes a mode that it doesn_t recognize, which is possible during upgrades due to version skew, the controller skips updates for the Job'}
						alternative
							io_k8s_api_batch_v1_JobSpec_completionMode_Indexed {doc 'Specific value: Indexed'}
							io_k8s_api_batch_v1_JobSpec_completionMode_NonIndexed {doc 'Specific value: NonIndexed'}
					Integer io_k8s_api_batch_v1_JobSpec_completions {doc 'Specifies the desired number of successfully finished pods the job should be run with  Setting to null means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value  Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
					String io_k8s_api_batch_v1_JobSpec_managedBy {doc 'ManagedBy field indicates the controller that manages a Job The k8s Job controller reconciles jobs which don_t have this field at all or the field value is the reserved string kubernetesio/job-controller, but skips reconciling Jobs with a custom value for this field The value must be a valid domain-prefixed path (eg acmeio/foo) - all characters before the first / must be a valid subdomain as defined by RFC 1123 All characters trailing the first / must be valid HTTP Path characters as defined by RFC 3986 The value cannot exceed 64 charactersThis field is alpha-level The job controller accepts setting the field when the feature gate JobManagedBy is enabled (disabled by default)'}
					io_k8s_api_batch_v1_JobSpec_manualSelector {doc 'manualSelector controls generation of pod labels and pod selectors Leave manualSelector unset unless you are certain what you are doing When false or unset, the system pick labels unique to this job and appends those labels to the pod template  When true, the user is responsible for picking unique labels and specifying the selector  Failure to pick a unique label may cause this and other jobs to not function correctly  However, You may see manualSelector=true in jobs that were created with the old extensions/v1beta1 API More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector'}
					Integer io_k8s_api_batch_v1_JobSpec_maxFailedIndexes {doc 'Specifies the maximal number of failed indexes before marking the Job as failed, when backoffLimitPerIndex is set Once the number of failed indexes exceeds this number the entire Job is marked as Failed and its execution is terminated When left as null the job continues execution of all of its indexes and is marked with the Complete Job condition It can only be specified when backoffLimitPerIndex is set It can be null or up to completions It is required and must be less than or equal to 10^4 when is completions greater than 10^5 This field is beta-level It can be used when the JobBackoffLimitPerIndex feature gate is enabled (enabled by default)'}
					Integer io_k8s_api_batch_v1_JobSpec_parallelism {doc 'Specifies the maximum desired number of pods the job should run at any given time The actual number of pods running in steady state will be less than this number when ((speccompletions - statussuccessful) < specparallelism), ie when the work left to do is less than max parallelism More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
					io_k8s_api_batch_v1_JobSpec_podFailurePolicy {doc 'Specifies the policy of handling failed pods In particular, it allows to specify the set of actions and conditions which need to be satisfied to take the associated action If empty, the default behaviour applies - the counter of failed pods, represented by the jobs_s statusfailed field, is incremented and it is checked against the backoffLimit This field cannot be used in combination with restartPolicy=OnFailureThis field is beta-level It can be used when the JobPodFailurePolicy feature gate is enabled (enabled by default)'}
						mandatory
							io_k8s_api_batch_v1_JobSpec_podFailurePolicy_rules cardinality [1..*] {doc 'A list of pod failure policy rules The rules are evaluated in order Once a rule matches a Pod failure, the remaining of the rules are ignored When no rule matches the Pod failure, the default handling applies - the counter of pod failures is incremented and it is checked against the backoffLimit At most 20 elements are allowed'}
								mandatory
									io_k8s_api_batch_v1_JobSpec_podFailurePolicy_rules_action {doc 'Specifies the action taken on a pod failure when the requirements are satisfied Possible values are:- FailJob: indicates that the pod_s job is marked as Failed and all  running pods are terminated- FailIndex: indicates that the pod_s index is marked as Failed and will  not be restarted  This value is beta-level It can be used when the  JobBackoffLimitPerIndex feature gate is enabled (enabled by default)- Ignore: indicates that the counter towards the backoffLimit is not  incremented and a replacement pod is created- Count: indicates that the pod is handled in the default way - the  counter towards the backoffLimit is incrementedAdditional values are considered to be added in the future Clients should react to an unknown action by skipping the rule'}
										alternative
											io_k8s_api_batch_v1_JobSpec_podFailurePolicy_rules_action_FailIndex {doc 'Specific value: FailIndex'}
											io_k8s_api_batch_v1_JobSpec_podFailurePolicy_rules_action_Count {doc 'Specific value: Count'}
											io_k8s_api_batch_v1_JobSpec_podFailurePolicy_rules_action_FailJob {doc 'Specific value: FailJob'}
											io_k8s_api_batch_v1_JobSpec_podFailurePolicy_rules_action_Ignore {doc 'Specific value: Ignore'}
								optional
									io_k8s_api_batch_v1_JobSpec_podFailurePolicy_rules_onExitCodes {doc 'Represents the requirement on the container exit codes'}
										mandatory
											io_k8s_api_batch_v1_JobSpec_podFailurePolicy_rules_onExitCodes_operator {doc 'Represents the relationship between the container exit code(s) and the specified values Containers completed with success (exit code 0) are excluded from the requirement check Possible values are:- In: the requirement is satisfied if at least one container exit code  (might be multiple if there are multiple containers not restricted  by the _containerName_ field) is in the set of specified values- NotIn: the requirement is satisfied if at least one container exit code  (might be multiple if there are multiple containers not restricted  by the _containerName_ field) is not in the set of specified valuesAdditional values are considered to be added in the future Clients should react to an unknown operator by assuming the requirement is not satisfied'}
												alternative
													io_k8s_api_batch_v1_JobSpec_podFailurePolicy_rules_onExitCodes_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_batch_v1_JobSpec_podFailurePolicy_rules_onExitCodes_operator_In {doc 'Specific value: In'}
													io_k8s_api_batch_v1_JobSpec_podFailurePolicy_rules_onExitCodes_operator_containerName {doc 'Specific value: containerName'}
											io_k8s_api_batch_v1_JobSpec_podFailurePolicy_rules_onExitCodes_values cardinality [1..*] {doc 'Specifies the set of values Each returned container exit code (might be multiple in case of multiple containers) is checked against this set of values with respect to the operator The list of values must be ordered and must not contain duplicates Value _0_ cannot be used for the In operator At least one element is required At most 255 elements are allowed'}
												mandatory
													Integer io_k8s_api_batch_v1_JobSpec_podFailurePolicy_rules_onExitCodes_values_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
										optional
											String io_k8s_api_batch_v1_JobSpec_podFailurePolicy_rules_onExitCodes_containerName {doc 'Restricts the check for exit codes to the container with the specified name When null, the rule applies to all containers When specified, it should match one the container or initContainer names in the pod template'}
									io_k8s_api_batch_v1_JobSpec_podFailurePolicy_rules_onPodConditions cardinality [1..*] {doc 'Represents the requirement on the pod conditions The requirement is represented as a list of pod condition patterns The requirement is satisfied if at least one pattern matches an actual pod condition At most 20 elements are allowed'}
										mandatory
											String io_k8s_api_batch_v1_JobSpec_podFailurePolicy_rules_onPodConditions_status {default true, doc 'Specifies the required Pod condition status To match a pod condition it is required that the specified status equals the pod condition status Defaults to True'}
											String io_k8s_api_batch_v1_JobSpec_podFailurePolicy_rules_onPodConditions_type {doc 'Specifies the required Pod condition type To match a pod condition it is required that specified type equals the pod condition type'}
					String io_k8s_api_batch_v1_JobSpec_podReplacementPolicy {doc 'podReplacementPolicy specifies when to create replacement Pods Possible values are: - TerminatingOrFailed means that we recreate pods  when they are terminating (has a metadatadeletionTimestamp) or failed- Failed means to wait until a previously created Pod is fully terminated (has phase  Failed or Succeeded) before creating a replacement PodWhen using podFailurePolicy, Failed is the the only allowed value TerminatingOrFailed and Failed are allowed values when podFailurePolicy is not in use This is an beta field To use this, enable the JobPodReplacementPolicy feature toggle This is on by default'}
					io_k8s_api_batch_v1_JobSpec_selector {doc 'A label query over pods that should match the pod count Normally, the system sets this field for you More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/#label-selectors'}
						optional
							io_k8s_api_batch_v1_JobSpec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_batch_v1_JobSpec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_batch_v1_JobSpec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_batch_v1_JobSpec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_batch_v1_JobSpec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_batch_v1_JobSpec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_batch_v1_JobSpec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_batch_v1_JobSpec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_batch_v1_JobSpec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_batch_v1_JobSpec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_batch_v1_JobSpec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_batch_v1_JobSpec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_batch_v1_JobSpec_successPolicy {doc 'successPolicy specifies the policy when the Job can be declared as succeeded If empty, the default behavior applies - the Job is declared as succeeded only when the number of succeeded pods equals to the completions When the field is specified, it must be immutable and works only for the Indexed Jobs Once the Job meets the SuccessPolicy, the lingering pods are terminatedThis field  is alpha-level To use this field, you must enable the JobSuccessPolicy feature gate (disabled by default)'}
						mandatory
							io_k8s_api_batch_v1_JobSpec_successPolicy_rules cardinality [1..*] {doc 'rules represents the list of alternative rules for the declaring the Jobs as successful before statussucceeded >= speccompletions Once any of the rules are met, the SucceededCriteriaMet condition is added, and the lingering pods are removed The terminal state for such a Job has the Complete condition Additionally, these rules are evaluated in order; Once the Job meets one of the rules, other rules are ignored At most 20 elements are allowed'}
								optional
									io_k8s_api_batch_v1_JobSpec_successPolicy_rules_succeededCount {abstract, doc 'succeededCount specifies the minimal required size of the actual set of the succeeded indexes for the Job When succeededCount is used along with succeededIndexes, the check is constrained only to the set of indexes specified by succeededIndexes For example, given that succeededIndexes is 1-4, succeededCount is 3, and completed indexes are 1, 3, and 5, the Job isn_t declared as succeeded because only 1 and 3 indexes are considered in that rules When this field is null, this doesn_t default to any value and is never evaluated at any time When specified it needs to be a positive integer'}
										mandatory
											Integer io_k8s_api_batch_v1_JobSpec_successPolicy_rules_succeededCount_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
									io_k8s_api_batch_v1_JobSpec_successPolicy_rules_succeededIndexes {abstract, doc 'succeededIndexes specifies the set of indexes which need to be contained in the actual set of the succeeded indexes for the Job The list of indexes must be within 0 to speccompletions-1 and must not contain duplicates At least one element is required The indexes are represented as intervals separated by commas The intervals can be a decimal integer or a pair of decimal integers separated by a hyphen The number are listed in represented by the first and last element of the series, separated by a hyphen For example, if the completed indexes are 1, 3, 4, 5 and 7, they are represented as 1,3-5,7 When this field is null, this field doesn_t default to any value and is never evaluated at any time'}
										mandatory
											String io_k8s_api_batch_v1_JobSpec_successPolicy_rules_succeededIndexes_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
					io_k8s_api_batch_v1_JobSpec_suspend {default false, doc 'suspend specifies whether the Job controller should create Pods or not If a Job is created with suspend set to true, no Pods are created by the Job controller If a Job is suspended after creation (ie the flag goes from false to true), the Job controller will delete all active Pods associated with this Job Users must design their workload to gracefully handle this Suspending a Job will reset the StartTime field of the Job, effectively resetting the ActiveDeadlineSeconds timer too Defaults to false'}
					Integer io_k8s_api_batch_v1_JobSpec_ttlSecondsAfterFinished {doc 'ttlSecondsAfterFinished limits the lifetime of a Job that has finished execution (either Complete or Failed) If this field is set, ttlSecondsAfterFinished after the Job finishes, it is eligible to be automatically deleted When the Job is being deleted, its lifecycle guarantees (eg finalizers) will be honored If this field is unset, the Job won_t be automatically deleted If this field is set to zero, the Job becomes eligible to be deleted immediately after it finishes'}
			io_k8s_api_batch_v1_JobStatus {doc 'JobStatus represents the current state of a Job'}
				optional
					Integer io_k8s_api_batch_v1_JobStatus_active {doc 'The number of pending and running pods which are not terminating (without a deletionTimestamp) The value is zero for finished jobs'}
					String io_k8s_api_batch_v1_JobStatus_completedIndexes {doc 'completedIndexes holds the completed indexes when speccompletionMode = Indexed in a text format The indexes are represented as decimal integers separated by commas The numbers are listed in increasing order Three or more consecutive numbers are compressed and represented by the first and last element of the series, separated by a hyphen For example, if the completed indexes are 1, 3, 4, 5 and 7, they are represented as 1,3-5,7'}
					io_k8s_api_batch_v1_JobStatus_completionTime {doc 'Represents time when the job was completed It is not guaranteed to be set in happens-before order across separate operations It is represented in RFC3339 form and is in UTC The completion time is set when the job finishes successfully, and only then The value cannot be updated or removed The value indicates the same or later point in time as the startTime field'}
						optional
							String io_k8s_api_batch_v1_JobStatus_completionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					io_k8s_api_batch_v1_JobStatus_conditions cardinality [1..*] {doc 'The latest available observations of an object_s current state When a Job fails, one of the conditions will have type Failed and status true When a Job is suspended, one of the conditions will have type Suspended and status true; when the Job is resumed, the status of this condition will become false When a Job is completed, one of the conditions will have type Complete and status trueA job is considered finished when it is in a terminal condition, either Complete or Failed A Job cannot have both the Complete and Failed conditions Additionally, it cannot be in the Complete and FailureTarget conditions The Complete, Failed and FailureTarget conditions cannot be disabledMore info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
						mandatory
							io_k8s_api_batch_v1_JobStatus_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
								alternative
									io_k8s_api_batch_v1_JobStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_batch_v1_JobStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_batch_v1_JobStatus_conditions_status_True {doc 'Specific value: True'}
							io_k8s_api_batch_v1_JobStatus_conditions_type {doc 'Type of job condition, Complete or Failed'}
								alternative
									io_k8s_api_batch_v1_JobStatus_conditions_type_Complete {doc 'Specific value: Complete'}
									io_k8s_api_batch_v1_JobStatus_conditions_type_Failed {doc 'Specific value: Failed'}
						optional
							io_k8s_api_batch_v1_JobStatus_conditions_lastProbeTime {doc 'Last time the condition was checked'}
								optional
									String io_k8s_api_batch_v1_JobStatus_conditions_lastProbeTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_batch_v1_JobStatus_conditions_lastTransitionTime {doc 'Last time the condition transit from one status to another'}
								optional
									String io_k8s_api_batch_v1_JobStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_batch_v1_JobStatus_conditions_message {doc 'Human readable message indicating details about last transition'}
							String io_k8s_api_batch_v1_JobStatus_conditions_reason {doc '(brief) reason for the condition_s last transition'}
					Integer io_k8s_api_batch_v1_JobStatus_failed {doc 'The number of pods which reached phase Failed The value increases monotonically'}
					String io_k8s_api_batch_v1_JobStatus_failedIndexes {doc 'FailedIndexes holds the failed indexes when specbackoffLimitPerIndex is set The indexes are represented in the text format analogous as for the completedIndexes field, ie they are kept as decimal integers separated by commas The numbers are listed in increasing order Three or more consecutive numbers are compressed and represented by the first and last element of the series, separated by a hyphen For example, if the failed indexes are 1, 3, 4, 5 and 7, they are represented as 1,3-5,7 The set of failed indexes cannot overlap with the set of completed indexesThis field is beta-level It can be used when the JobBackoffLimitPerIndex feature gate is enabled (enabled by default)'}
					Integer io_k8s_api_batch_v1_JobStatus_ready {doc 'The number of pods which have a Ready condition'}
					io_k8s_api_batch_v1_JobStatus_startTime {doc 'Represents time when the job controller started processing a job When a Job is created in the suspended state, this field is not set until the first time it is resumed This field is reset every time a Job is resumed from suspension It is represented in RFC3339 form and is in UTCOnce set, the field can only be removed when the job is suspended The field cannot be modified while the job is unsuspended or finished'}
						optional
							String io_k8s_api_batch_v1_JobStatus_startTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					Integer io_k8s_api_batch_v1_JobStatus_succeeded {doc 'The number of pods which reached phase Succeeded The value increases monotonically for a given spec However, it may decrease in reaction to scale down of elastic indexed jobs'}
					Integer io_k8s_api_batch_v1_JobStatus_terminating {doc 'The number of pods which are terminating (in phase Pending or Running and have a deletionTimestamp)This field is beta-level The job controller populates the field when the feature gate JobPodReplacementPolicy is enabled (enabled by default)'}
					io_k8s_api_batch_v1_JobStatus_uncountedTerminatedPods {doc 'uncountedTerminatedPods holds the UIDs of Pods that have terminated but the job controller hasn_t yet accounted for in the status countersThe job controller creates pods with a finalizer When a pod terminates (succeeded or failed), the controller does three steps to account for it in the job status:1 Add the pod UID to the arrays in this field 2 Remove the pod finalizer 3 Remove the pod UID from the arrays while increasing the corresponding    counterOld jobs might not be tracked using this field, in which case the field remains null The structure is empty for finished jobs'}
						optional
							io_k8s_api_batch_v1_JobStatus_uncountedTerminatedPods_failed cardinality [1..*] {doc 'failed holds UIDs of failed Pods'}
								mandatory
									String io_k8s_api_batch_v1_JobStatus_uncountedTerminatedPods_failed_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_batch_v1_JobStatus_uncountedTerminatedPods_succeeded cardinality [1..*] {doc 'succeeded holds UIDs of succeeded Pods'}
								mandatory
									String io_k8s_api_batch_v1_JobStatus_uncountedTerminatedPods_succeeded_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_batch_v1_JobTemplateSpec {doc 'JobTemplateSpec describes the data a Job should have when created from a template'}
				optional
					io_k8s_api_batch_v1_JobTemplateSpec_metadata {doc 'Standard object_s metadata of the jobs created from this template More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_batch_v1_JobTemplateSpec_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_batch_v1_JobTemplateSpec_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_batch_v1_JobTemplateSpec_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_batch_v1_JobTemplateSpec_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_batch_v1_JobTemplateSpec_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_batch_v1_JobTemplateSpec_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_batch_v1_JobTemplateSpec_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_batch_v1_JobTemplateSpec_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_batch_v1_JobTemplateSpec_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_batch_v1_JobTemplateSpec_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_batch_v1_JobTemplateSpec_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_batch_v1_JobTemplateSpec_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_batch_v1_JobTemplateSpec_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_batch_v1_JobTemplateSpec_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_batch_v1_JobTemplateSpec_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_batch_v1_JobTemplateSpec_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_batch_v1_JobTemplateSpec_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_batch_v1_JobTemplateSpec_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_batch_v1_JobTemplateSpec_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_batch_v1_JobTemplateSpec_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_batch_v1_JobTemplateSpec_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_batch_v1_JobTemplateSpec_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_batch_v1_JobTemplateSpec_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_batch_v1_JobTemplateSpec_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_batch_v1_JobTemplateSpec_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_batch_v1_JobTemplateSpec_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_batch_v1_JobTemplateSpec_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_batch_v1_JobTemplateSpec_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_batch_v1_JobTemplateSpec_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_batch_v1_JobTemplateSpec_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_batch_v1_JobTemplateSpec_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_batch_v1_JobTemplateSpec_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_batch_v1_JobTemplateSpec_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_batch_v1_JobTemplateSpec_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_batch_v1_JobTemplateSpec_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_batch_v1_JobTemplateSpec_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_batch_v1_JobTemplateSpec_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_batch_v1_JobTemplateSpec_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_batch_v1_JobTemplateSpec_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_batch_v1_JobTemplateSpec_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_batch_v1_JobTemplateSpec_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_batch_v1_JobTemplateSpec_spec {doc 'Specification of the desired behavior of the job More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						mandatory
							io_k8s_api_batch_v1_JobTemplateSpec_spec_template {doc 'Describes the pod that will be created when executing a job The only allowed templatespecrestartPolicy values are Never or OnFailure More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
								optional
									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
												optional
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
											Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_deletionGracePeriodSeconds {doc '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'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_finalizers cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
											Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
												mandatory
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_managedFields cardinality [1..*] {doc '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'}
												optional
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_managedFields_apiVersion {doc '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'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
														alternative
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_managedFields_subresource {doc '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'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_managedFields_time {doc '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'}
														optional
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
												optional
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
											String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
											String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
											String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
										mandatory
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
												mandatory
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
												optional
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
														mandatory
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
										optional
											Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
												optional
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																		optional
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																		optional
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
												optional
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_dnsConfig_options_name {doc 'Required'}
														optional
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_dnsConfig_options_value
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
												alternative
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_dnsPolicy_None {doc 'Specific value: None'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
												mandatory
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
												optional
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
														mandatory
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
												mandatory
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
												optional
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
											String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
												optional
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
												mandatory
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
												optional
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
														mandatory
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
											String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
												mandatory
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
												mandatory
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
														alternative
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows {doc 'Specific value: windows'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_linux {doc 'Specific value: linux'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
												alternative
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
												alternative
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
											Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
											String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
												mandatory
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
												mandatory
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
												optional
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
												alternative
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
											String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
											String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
												mandatory
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
												optional
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
														alternative
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
											String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
											String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
											Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
												optional
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
														alternative
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
														alternative
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
													Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
												mandatory
													Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
												optional
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
												mandatory
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
												optional
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
														mandatory
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
														optional
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
														optional
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																optional
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
														optional
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
														optional
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
														optional
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																alternative
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
																mandatory
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																		optional
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																				optional
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																				optional
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																				optional
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																						alternative
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																						alternative
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																				optional
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																		optional
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																				optional
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																				optional
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																				optional
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																				optional
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																						optional
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																						alternative
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																						optional
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																				optional
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
														optional
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
														optional
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
														optional
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
																optional
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																		optional
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																				optional
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																		optional
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																				optional
																					Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																		optional
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																				optional
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																						mandatory
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																						optional
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																					Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																						mandatory
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																						optional
																							String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																							io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																								alternative
																									String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																		optional
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																				mandatory
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																					String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																				optional
																					Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																		mandatory
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																		optional
																			String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																			Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
														optional
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
														optional
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																mandatory
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																optional
																	Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
																optional
																	String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
														optional
															io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
															String io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
								alternative
									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_Never {doc 'Specific value: Never'}
									io_k8s_api_batch_v1_JobTemplateSpec_spec_template_OnFailure {doc 'Specific value: OnFailure'}
						optional
							Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_activeDeadlineSeconds {doc 'Specifies the duration in seconds relative to the startTime that the job may be continuously active before the system tries to terminate it; value must be positive integer If a Job is suspended (at creation or through an update), this timer will effectively be stopped and reset when the Job is resumed again'}
							Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_backoffLimit {default 6, doc 'Specifies the number of retries before marking this job failed Defaults to 6'}
							Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_backoffLimitPerIndex {doc 'Specifies the limit for the number of retries within an index before marking this index as failed When enabled the number of failures per index is kept in the pod_s batchkubernetesio/job-index-failure-count annotation It can only be set when Job_s completionMode=Indexed, and the Pod_s restart policy is Never The field is immutable This field is beta-level It can be used when the JobBackoffLimitPerIndex feature gate is enabled (enabled by default)'}
							io_k8s_api_batch_v1_JobTemplateSpec_spec_completionMode {doc 'completionMode specifies how Pod completions are tracked It can be NonIndexed (default) or IndexedNonIndexed means that the Job is considered complete when there have been speccompletions successfully completed Pods Each Pod completion is homologous to each otherIndexed means that the Pods of a Job get an associated completion index from 0 to (speccompletions - 1), available in the annotation batchkubernetesio/job-completion-index The Job is considered complete when there is one successfully completed Pod for each index When value is Indexed, speccompletions must be specified and specparallelism must be less than or equal to 10^5 In addition, The Pod name takes the form $(job-name)-$(index)-$(random-string), the Pod hostname takes the form $(job-name)-$(index)More completion modes can be added in the future If the Job controller observes a mode that it doesn_t recognize, which is possible during upgrades due to version skew, the controller skips updates for the Job'}
								alternative
									io_k8s_api_batch_v1_JobTemplateSpec_spec_completionMode_Indexed {doc 'Specific value: Indexed'}
									io_k8s_api_batch_v1_JobTemplateSpec_spec_completionMode_NonIndexed {doc 'Specific value: NonIndexed'}
							Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_completions {doc 'Specifies the desired number of successfully finished pods the job should be run with  Setting to null means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value  Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
							String io_k8s_api_batch_v1_JobTemplateSpec_spec_managedBy {doc 'ManagedBy field indicates the controller that manages a Job The k8s Job controller reconciles jobs which don_t have this field at all or the field value is the reserved string kubernetesio/job-controller, but skips reconciling Jobs with a custom value for this field The value must be a valid domain-prefixed path (eg acmeio/foo) - all characters before the first / must be a valid subdomain as defined by RFC 1123 All characters trailing the first / must be valid HTTP Path characters as defined by RFC 3986 The value cannot exceed 64 charactersThis field is alpha-level The job controller accepts setting the field when the feature gate JobManagedBy is enabled (disabled by default)'}
							io_k8s_api_batch_v1_JobTemplateSpec_spec_manualSelector {doc 'manualSelector controls generation of pod labels and pod selectors Leave manualSelector unset unless you are certain what you are doing When false or unset, the system pick labels unique to this job and appends those labels to the pod template  When true, the user is responsible for picking unique labels and specifying the selector  Failure to pick a unique label may cause this and other jobs to not function correctly  However, You may see manualSelector=true in jobs that were created with the old extensions/v1beta1 API More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector'}
							Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_maxFailedIndexes {doc 'Specifies the maximal number of failed indexes before marking the Job as failed, when backoffLimitPerIndex is set Once the number of failed indexes exceeds this number the entire Job is marked as Failed and its execution is terminated When left as null the job continues execution of all of its indexes and is marked with the Complete Job condition It can only be specified when backoffLimitPerIndex is set It can be null or up to completions It is required and must be less than or equal to 10^4 when is completions greater than 10^5 This field is beta-level It can be used when the JobBackoffLimitPerIndex feature gate is enabled (enabled by default)'}
							Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_parallelism {doc 'Specifies the maximum desired number of pods the job should run at any given time The actual number of pods running in steady state will be less than this number when ((speccompletions - statussuccessful) < specparallelism), ie when the work left to do is less than max parallelism More info: https:_kubernetesio/docs/concepts/workloads/controllers/jobs-run-to-completion/'}
							io_k8s_api_batch_v1_JobTemplateSpec_spec_podFailurePolicy {doc 'Specifies the policy of handling failed pods In particular, it allows to specify the set of actions and conditions which need to be satisfied to take the associated action If empty, the default behaviour applies - the counter of failed pods, represented by the jobs_s statusfailed field, is incremented and it is checked against the backoffLimit This field cannot be used in combination with restartPolicy=OnFailureThis field is beta-level It can be used when the JobPodFailurePolicy feature gate is enabled (enabled by default)'}
								mandatory
									io_k8s_api_batch_v1_JobTemplateSpec_spec_podFailurePolicy_rules cardinality [1..*] {doc 'A list of pod failure policy rules The rules are evaluated in order Once a rule matches a Pod failure, the remaining of the rules are ignored When no rule matches the Pod failure, the default handling applies - the counter of pod failures is incremented and it is checked against the backoffLimit At most 20 elements are allowed'}
										mandatory
											io_k8s_api_batch_v1_JobTemplateSpec_spec_podFailurePolicy_rules_action {doc 'Specifies the action taken on a pod failure when the requirements are satisfied Possible values are:- FailJob: indicates that the pod_s job is marked as Failed and all  running pods are terminated- FailIndex: indicates that the pod_s index is marked as Failed and will  not be restarted  This value is beta-level It can be used when the  JobBackoffLimitPerIndex feature gate is enabled (enabled by default)- Ignore: indicates that the counter towards the backoffLimit is not  incremented and a replacement pod is created- Count: indicates that the pod is handled in the default way - the  counter towards the backoffLimit is incrementedAdditional values are considered to be added in the future Clients should react to an unknown action by skipping the rule'}
												alternative
													io_k8s_api_batch_v1_JobTemplateSpec_spec_podFailurePolicy_rules_action_FailIndex {doc 'Specific value: FailIndex'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_podFailurePolicy_rules_action_Count {doc 'Specific value: Count'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_podFailurePolicy_rules_action_FailJob {doc 'Specific value: FailJob'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_podFailurePolicy_rules_action_Ignore {doc 'Specific value: Ignore'}
										optional
											io_k8s_api_batch_v1_JobTemplateSpec_spec_podFailurePolicy_rules_onExitCodes {doc 'Represents the requirement on the container exit codes'}
												mandatory
													io_k8s_api_batch_v1_JobTemplateSpec_spec_podFailurePolicy_rules_onExitCodes_operator {doc 'Represents the relationship between the container exit code(s) and the specified values Containers completed with success (exit code 0) are excluded from the requirement check Possible values are:- In: the requirement is satisfied if at least one container exit code  (might be multiple if there are multiple containers not restricted  by the _containerName_ field) is in the set of specified values- NotIn: the requirement is satisfied if at least one container exit code  (might be multiple if there are multiple containers not restricted  by the _containerName_ field) is not in the set of specified valuesAdditional values are considered to be added in the future Clients should react to an unknown operator by assuming the requirement is not satisfied'}
														alternative
															io_k8s_api_batch_v1_JobTemplateSpec_spec_podFailurePolicy_rules_onExitCodes_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_podFailurePolicy_rules_onExitCodes_operator_In {doc 'Specific value: In'}
															io_k8s_api_batch_v1_JobTemplateSpec_spec_podFailurePolicy_rules_onExitCodes_operator_containerName {doc 'Specific value: containerName'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_podFailurePolicy_rules_onExitCodes_values cardinality [1..*] {doc 'Specifies the set of values Each returned container exit code (might be multiple in case of multiple containers) is checked against this set of values with respect to the operator The list of values must be ordered and must not contain duplicates Value _0_ cannot be used for the In operator At least one element is required At most 255 elements are allowed'}
														mandatory
															Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_podFailurePolicy_rules_onExitCodes_values_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
												optional
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_podFailurePolicy_rules_onExitCodes_containerName {doc 'Restricts the check for exit codes to the container with the specified name When null, the rule applies to all containers When specified, it should match one the container or initContainer names in the pod template'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_podFailurePolicy_rules_onPodConditions cardinality [1..*] {doc 'Represents the requirement on the pod conditions The requirement is represented as a list of pod condition patterns The requirement is satisfied if at least one pattern matches an actual pod condition At most 20 elements are allowed'}
												mandatory
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_podFailurePolicy_rules_onPodConditions_status {default true, doc 'Specifies the required Pod condition status To match a pod condition it is required that the specified status equals the pod condition status Defaults to True'}
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_podFailurePolicy_rules_onPodConditions_type {doc 'Specifies the required Pod condition type To match a pod condition it is required that specified type equals the pod condition type'}
							String io_k8s_api_batch_v1_JobTemplateSpec_spec_podReplacementPolicy {doc 'podReplacementPolicy specifies when to create replacement Pods Possible values are: - TerminatingOrFailed means that we recreate pods  when they are terminating (has a metadatadeletionTimestamp) or failed- Failed means to wait until a previously created Pod is fully terminated (has phase  Failed or Succeeded) before creating a replacement PodWhen using podFailurePolicy, Failed is the the only allowed value TerminatingOrFailed and Failed are allowed values when podFailurePolicy is not in use This is an beta field To use this, enable the JobPodReplacementPolicy feature toggle This is on by default'}
							io_k8s_api_batch_v1_JobTemplateSpec_spec_selector {doc 'A label query over pods that should match the pod count Normally, the system sets this field for you More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/#label-selectors'}
								optional
									io_k8s_api_batch_v1_JobTemplateSpec_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_batch_v1_JobTemplateSpec_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_batch_v1_JobTemplateSpec_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_batch_v1_JobTemplateSpec_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_batch_v1_JobTemplateSpec_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_batch_v1_JobTemplateSpec_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_batch_v1_JobTemplateSpec_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_batch_v1_JobTemplateSpec_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_batch_v1_JobTemplateSpec_spec_successPolicy {doc 'successPolicy specifies the policy when the Job can be declared as succeeded If empty, the default behavior applies - the Job is declared as succeeded only when the number of succeeded pods equals to the completions When the field is specified, it must be immutable and works only for the Indexed Jobs Once the Job meets the SuccessPolicy, the lingering pods are terminatedThis field  is alpha-level To use this field, you must enable the JobSuccessPolicy feature gate (disabled by default)'}
								mandatory
									io_k8s_api_batch_v1_JobTemplateSpec_spec_successPolicy_rules cardinality [1..*] {doc 'rules represents the list of alternative rules for the declaring the Jobs as successful before statussucceeded >= speccompletions Once any of the rules are met, the SucceededCriteriaMet condition is added, and the lingering pods are removed The terminal state for such a Job has the Complete condition Additionally, these rules are evaluated in order; Once the Job meets one of the rules, other rules are ignored At most 20 elements are allowed'}
										optional
											io_k8s_api_batch_v1_JobTemplateSpec_spec_successPolicy_rules_succeededCount {abstract, doc 'succeededCount specifies the minimal required size of the actual set of the succeeded indexes for the Job When succeededCount is used along with succeededIndexes, the check is constrained only to the set of indexes specified by succeededIndexes For example, given that succeededIndexes is 1-4, succeededCount is 3, and completed indexes are 1, 3, and 5, the Job isn_t declared as succeeded because only 1 and 3 indexes are considered in that rules When this field is null, this doesn_t default to any value and is never evaluated at any time When specified it needs to be a positive integer'}
												mandatory
													Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_successPolicy_rules_succeededCount_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_batch_v1_JobTemplateSpec_spec_successPolicy_rules_succeededIndexes {abstract, doc 'succeededIndexes specifies the set of indexes which need to be contained in the actual set of the succeeded indexes for the Job The list of indexes must be within 0 to speccompletions-1 and must not contain duplicates At least one element is required The indexes are represented as intervals separated by commas The intervals can be a decimal integer or a pair of decimal integers separated by a hyphen The number are listed in represented by the first and last element of the series, separated by a hyphen For example, if the completed indexes are 1, 3, 4, 5 and 7, they are represented as 1,3-5,7 When this field is null, this field doesn_t default to any value and is never evaluated at any time'}
												mandatory
													String io_k8s_api_batch_v1_JobTemplateSpec_spec_successPolicy_rules_succeededIndexes_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							io_k8s_api_batch_v1_JobTemplateSpec_spec_suspend {default false, doc 'suspend specifies whether the Job controller should create Pods or not If a Job is created with suspend set to true, no Pods are created by the Job controller If a Job is suspended after creation (ie the flag goes from false to true), the Job controller will delete all active Pods associated with this Job Users must design their workload to gracefully handle this Suspending a Job will reset the StartTime field of the Job, effectively resetting the ActiveDeadlineSeconds timer too Defaults to false'}
							Integer io_k8s_api_batch_v1_JobTemplateSpec_spec_ttlSecondsAfterFinished {doc 'ttlSecondsAfterFinished limits the lifetime of a Job that has finished execution (either Complete or Failed) If this field is set, ttlSecondsAfterFinished after the Job finishes, it is eligible to be automatically deleted When the Job is being deleted, its lifecycle guarantees (eg finalizers) will be honored If this field is unset, the Job won_t be automatically deleted If this field is set to zero, the Job becomes eligible to be deleted immediately after it finishes'}
			io_k8s_api_batch_v1_PodFailurePolicy {doc 'PodFailurePolicy describes how failed pods influence the backoffLimit'}
				mandatory
					io_k8s_api_batch_v1_PodFailurePolicy_rules cardinality [1..*] {doc 'A list of pod failure policy rules The rules are evaluated in order Once a rule matches a Pod failure, the remaining of the rules are ignored When no rule matches the Pod failure, the default handling applies - the counter of pod failures is incremented and it is checked against the backoffLimit At most 20 elements are allowed'}
						mandatory
							io_k8s_api_batch_v1_PodFailurePolicy_rules_action {doc 'Specifies the action taken on a pod failure when the requirements are satisfied Possible values are:- FailJob: indicates that the pod_s job is marked as Failed and all  running pods are terminated- FailIndex: indicates that the pod_s index is marked as Failed and will  not be restarted  This value is beta-level It can be used when the  JobBackoffLimitPerIndex feature gate is enabled (enabled by default)- Ignore: indicates that the counter towards the backoffLimit is not  incremented and a replacement pod is created- Count: indicates that the pod is handled in the default way - the  counter towards the backoffLimit is incrementedAdditional values are considered to be added in the future Clients should react to an unknown action by skipping the rule'}
								alternative
									io_k8s_api_batch_v1_PodFailurePolicy_rules_action_FailIndex {doc 'Specific value: FailIndex'}
									io_k8s_api_batch_v1_PodFailurePolicy_rules_action_Count {doc 'Specific value: Count'}
									io_k8s_api_batch_v1_PodFailurePolicy_rules_action_FailJob {doc 'Specific value: FailJob'}
									io_k8s_api_batch_v1_PodFailurePolicy_rules_action_Ignore {doc 'Specific value: Ignore'}
						optional
							io_k8s_api_batch_v1_PodFailurePolicy_rules_onExitCodes {doc 'Represents the requirement on the container exit codes'}
								mandatory
									io_k8s_api_batch_v1_PodFailurePolicy_rules_onExitCodes_operator {doc 'Represents the relationship between the container exit code(s) and the specified values Containers completed with success (exit code 0) are excluded from the requirement check Possible values are:- In: the requirement is satisfied if at least one container exit code  (might be multiple if there are multiple containers not restricted  by the _containerName_ field) is in the set of specified values- NotIn: the requirement is satisfied if at least one container exit code  (might be multiple if there are multiple containers not restricted  by the _containerName_ field) is not in the set of specified valuesAdditional values are considered to be added in the future Clients should react to an unknown operator by assuming the requirement is not satisfied'}
										alternative
											io_k8s_api_batch_v1_PodFailurePolicy_rules_onExitCodes_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_batch_v1_PodFailurePolicy_rules_onExitCodes_operator_In {doc 'Specific value: In'}
											io_k8s_api_batch_v1_PodFailurePolicy_rules_onExitCodes_operator_containerName {doc 'Specific value: containerName'}
									io_k8s_api_batch_v1_PodFailurePolicy_rules_onExitCodes_values cardinality [1..*] {doc 'Specifies the set of values Each returned container exit code (might be multiple in case of multiple containers) is checked against this set of values with respect to the operator The list of values must be ordered and must not contain duplicates Value _0_ cannot be used for the In operator At least one element is required At most 255 elements are allowed'}
										mandatory
											Integer io_k8s_api_batch_v1_PodFailurePolicy_rules_onExitCodes_values_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
								optional
									String io_k8s_api_batch_v1_PodFailurePolicy_rules_onExitCodes_containerName {doc 'Restricts the check for exit codes to the container with the specified name When null, the rule applies to all containers When specified, it should match one the container or initContainer names in the pod template'}
							io_k8s_api_batch_v1_PodFailurePolicy_rules_onPodConditions cardinality [1..*] {doc 'Represents the requirement on the pod conditions The requirement is represented as a list of pod condition patterns The requirement is satisfied if at least one pattern matches an actual pod condition At most 20 elements are allowed'}
								mandatory
									String io_k8s_api_batch_v1_PodFailurePolicy_rules_onPodConditions_status {default true, doc 'Specifies the required Pod condition status To match a pod condition it is required that the specified status equals the pod condition status Defaults to True'}
									String io_k8s_api_batch_v1_PodFailurePolicy_rules_onPodConditions_type {doc 'Specifies the required Pod condition type To match a pod condition it is required that specified type equals the pod condition type'}
			io_k8s_api_batch_v1_PodFailurePolicyOnExitCodesRequirement {doc 'PodFailurePolicyOnExitCodesRequirement describes the requirement for handling a failed pod based on its container exit codes In particular, it lookups the stateterminatedexitCode for each app container and init container status, represented by the statuscontainerStatuses and statusinitContainerStatuses fields in the Pod status, respectively Containers completed with success (exit code 0) are excluded from the requirement check'}
				mandatory
					io_k8s_api_batch_v1_PodFailurePolicyOnExitCodesRequirement_operator {doc 'Represents the relationship between the container exit code(s) and the specified values Containers completed with success (exit code 0) are excluded from the requirement check Possible values are:- In: the requirement is satisfied if at least one container exit code  (might be multiple if there are multiple containers not restricted  by the _containerName_ field) is in the set of specified values- NotIn: the requirement is satisfied if at least one container exit code  (might be multiple if there are multiple containers not restricted  by the _containerName_ field) is not in the set of specified valuesAdditional values are considered to be added in the future Clients should react to an unknown operator by assuming the requirement is not satisfied'}
						alternative
							io_k8s_api_batch_v1_PodFailurePolicyOnExitCodesRequirement_operator_NotIn {doc 'Specific value: NotIn'}
							io_k8s_api_batch_v1_PodFailurePolicyOnExitCodesRequirement_operator_In {doc 'Specific value: In'}
							io_k8s_api_batch_v1_PodFailurePolicyOnExitCodesRequirement_operator_containerName {doc 'Specific value: containerName'}
					io_k8s_api_batch_v1_PodFailurePolicyOnExitCodesRequirement_values cardinality [1..*] {doc 'Specifies the set of values Each returned container exit code (might be multiple in case of multiple containers) is checked against this set of values with respect to the operator The list of values must be ordered and must not contain duplicates Value _0_ cannot be used for the In operator At least one element is required At most 255 elements are allowed'}
						mandatory
							Integer io_k8s_api_batch_v1_PodFailurePolicyOnExitCodesRequirement_values_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
				optional
					String io_k8s_api_batch_v1_PodFailurePolicyOnExitCodesRequirement_containerName {doc 'Restricts the check for exit codes to the container with the specified name When null, the rule applies to all containers When specified, it should match one the container or initContainer names in the pod template'}
			io_k8s_api_batch_v1_PodFailurePolicyOnPodConditionsPattern {doc 'PodFailurePolicyOnPodConditionsPattern describes a pattern for matching an actual pod condition type'}
				mandatory
					String io_k8s_api_batch_v1_PodFailurePolicyOnPodConditionsPattern_status {default true, doc 'Specifies the required Pod condition status To match a pod condition it is required that the specified status equals the pod condition status Defaults to True'}
					String io_k8s_api_batch_v1_PodFailurePolicyOnPodConditionsPattern_type {doc 'Specifies the required Pod condition type To match a pod condition it is required that specified type equals the pod condition type'}
			io_k8s_api_batch_v1_PodFailurePolicyRule {doc 'PodFailurePolicyRule describes how a pod failure is handled when the requirements are met One of onExitCodes and onPodConditions, but not both, can be used in each rule'}
				mandatory
					io_k8s_api_batch_v1_PodFailurePolicyRule_action {doc 'Specifies the action taken on a pod failure when the requirements are satisfied Possible values are:- FailJob: indicates that the pod_s job is marked as Failed and all  running pods are terminated- FailIndex: indicates that the pod_s index is marked as Failed and will  not be restarted  This value is beta-level It can be used when the  JobBackoffLimitPerIndex feature gate is enabled (enabled by default)- Ignore: indicates that the counter towards the backoffLimit is not  incremented and a replacement pod is created- Count: indicates that the pod is handled in the default way - the  counter towards the backoffLimit is incrementedAdditional values are considered to be added in the future Clients should react to an unknown action by skipping the rule'}
						alternative
							io_k8s_api_batch_v1_PodFailurePolicyRule_action_FailIndex {doc 'Specific value: FailIndex'}
							io_k8s_api_batch_v1_PodFailurePolicyRule_action_Count {doc 'Specific value: Count'}
							io_k8s_api_batch_v1_PodFailurePolicyRule_action_FailJob {doc 'Specific value: FailJob'}
							io_k8s_api_batch_v1_PodFailurePolicyRule_action_Ignore {doc 'Specific value: Ignore'}
				optional
					io_k8s_api_batch_v1_PodFailurePolicyRule_onExitCodes {doc 'Represents the requirement on the container exit codes'}
						mandatory
							io_k8s_api_batch_v1_PodFailurePolicyRule_onExitCodes_operator {doc 'Represents the relationship between the container exit code(s) and the specified values Containers completed with success (exit code 0) are excluded from the requirement check Possible values are:- In: the requirement is satisfied if at least one container exit code  (might be multiple if there are multiple containers not restricted  by the _containerName_ field) is in the set of specified values- NotIn: the requirement is satisfied if at least one container exit code  (might be multiple if there are multiple containers not restricted  by the _containerName_ field) is not in the set of specified valuesAdditional values are considered to be added in the future Clients should react to an unknown operator by assuming the requirement is not satisfied'}
								alternative
									io_k8s_api_batch_v1_PodFailurePolicyRule_onExitCodes_operator_NotIn {doc 'Specific value: NotIn'}
									io_k8s_api_batch_v1_PodFailurePolicyRule_onExitCodes_operator_In {doc 'Specific value: In'}
									io_k8s_api_batch_v1_PodFailurePolicyRule_onExitCodes_operator_containerName {doc 'Specific value: containerName'}
							io_k8s_api_batch_v1_PodFailurePolicyRule_onExitCodes_values cardinality [1..*] {doc 'Specifies the set of values Each returned container exit code (might be multiple in case of multiple containers) is checked against this set of values with respect to the operator The list of values must be ordered and must not contain duplicates Value _0_ cannot be used for the In operator At least one element is required At most 255 elements are allowed'}
								mandatory
									Integer io_k8s_api_batch_v1_PodFailurePolicyRule_onExitCodes_values_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
						optional
							String io_k8s_api_batch_v1_PodFailurePolicyRule_onExitCodes_containerName {doc 'Restricts the check for exit codes to the container with the specified name When null, the rule applies to all containers When specified, it should match one the container or initContainer names in the pod template'}
					io_k8s_api_batch_v1_PodFailurePolicyRule_onPodConditions cardinality [1..*] {doc 'Represents the requirement on the pod conditions The requirement is represented as a list of pod condition patterns The requirement is satisfied if at least one pattern matches an actual pod condition At most 20 elements are allowed'}
						mandatory
							String io_k8s_api_batch_v1_PodFailurePolicyRule_onPodConditions_status {default true, doc 'Specifies the required Pod condition status To match a pod condition it is required that the specified status equals the pod condition status Defaults to True'}
							String io_k8s_api_batch_v1_PodFailurePolicyRule_onPodConditions_type {doc 'Specifies the required Pod condition type To match a pod condition it is required that specified type equals the pod condition type'}
			io_k8s_api_batch_v1_SuccessPolicy {doc 'SuccessPolicy describes when a Job can be declared as succeeded based on the success of some indexes'}
				mandatory
					io_k8s_api_batch_v1_SuccessPolicy_rules cardinality [1..*] {doc 'rules represents the list of alternative rules for the declaring the Jobs as successful before statussucceeded >= speccompletions Once any of the rules are met, the SucceededCriteriaMet condition is added, and the lingering pods are removed The terminal state for such a Job has the Complete condition Additionally, these rules are evaluated in order; Once the Job meets one of the rules, other rules are ignored At most 20 elements are allowed'}
						optional
							io_k8s_api_batch_v1_SuccessPolicy_rules_succeededCount {abstract, doc 'succeededCount specifies the minimal required size of the actual set of the succeeded indexes for the Job When succeededCount is used along with succeededIndexes, the check is constrained only to the set of indexes specified by succeededIndexes For example, given that succeededIndexes is 1-4, succeededCount is 3, and completed indexes are 1, 3, and 5, the Job isn_t declared as succeeded because only 1 and 3 indexes are considered in that rules When this field is null, this doesn_t default to any value and is never evaluated at any time When specified it needs to be a positive integer'}
								mandatory
									Integer io_k8s_api_batch_v1_SuccessPolicy_rules_succeededCount_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
							io_k8s_api_batch_v1_SuccessPolicy_rules_succeededIndexes {abstract, doc 'succeededIndexes specifies the set of indexes which need to be contained in the actual set of the succeeded indexes for the Job The list of indexes must be within 0 to speccompletions-1 and must not contain duplicates At least one element is required The indexes are represented as intervals separated by commas The intervals can be a decimal integer or a pair of decimal integers separated by a hyphen The number are listed in represented by the first and last element of the series, separated by a hyphen For example, if the completed indexes are 1, 3, 4, 5 and 7, they are represented as 1,3-5,7 When this field is null, this field doesn_t default to any value and is never evaluated at any time'}
								mandatory
									String io_k8s_api_batch_v1_SuccessPolicy_rules_succeededIndexes_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
			io_k8s_api_batch_v1_SuccessPolicyRule {doc 'SuccessPolicyRule describes rule for declaring a Job as succeeded Each rule must have at least one of the succeededIndexes or succeededCount specified'}
				optional
					io_k8s_api_batch_v1_SuccessPolicyRule_succeededCount {abstract, doc 'succeededCount specifies the minimal required size of the actual set of the succeeded indexes for the Job When succeededCount is used along with succeededIndexes, the check is constrained only to the set of indexes specified by succeededIndexes For example, given that succeededIndexes is 1-4, succeededCount is 3, and completed indexes are 1, 3, and 5, the Job isn_t declared as succeeded because only 1 and 3 indexes are considered in that rules When this field is null, this doesn_t default to any value and is never evaluated at any time When specified it needs to be a positive integer'}
						mandatory
							Integer io_k8s_api_batch_v1_SuccessPolicyRule_succeededCount_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
					io_k8s_api_batch_v1_SuccessPolicyRule_succeededIndexes {abstract, doc 'succeededIndexes specifies the set of indexes which need to be contained in the actual set of the succeeded indexes for the Job The list of indexes must be within 0 to speccompletions-1 and must not contain duplicates At least one element is required The indexes are represented as intervals separated by commas The intervals can be a decimal integer or a pair of decimal integers separated by a hyphen The number are listed in represented by the first and last element of the series, separated by a hyphen For example, if the completed indexes are 1, 3, 4, 5 and 7, they are represented as 1,3-5,7 When this field is null, this field doesn_t default to any value and is never evaluated at any time'}
						mandatory
							String io_k8s_api_batch_v1_SuccessPolicyRule_succeededIndexes_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
			io_k8s_api_batch_v1_UncountedTerminatedPods {doc 'UncountedTerminatedPods holds UIDs of Pods that have terminated but haven_t been accounted in Job status counters'}
				optional
					io_k8s_api_batch_v1_UncountedTerminatedPods_failed cardinality [1..*] {doc 'failed holds UIDs of failed Pods'}
						mandatory
							String io_k8s_api_batch_v1_UncountedTerminatedPods_failed_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_batch_v1_UncountedTerminatedPods_succeeded cardinality [1..*] {doc 'succeeded holds UIDs of succeeded Pods'}
						mandatory
							String io_k8s_api_batch_v1_UncountedTerminatedPods_succeeded_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_certificates_v1_CertificateSigningRequest {doc 'CertificateSigningRequest objects provide a mechanism to obtain x509 certificates by submitting a certificate signing request, and having it asynchronously approved and issuedKubelets use this API to obtain: 1 client certificates to authenticate to kube-apiserver (with the kubernetesio/kube-apiserver-client-kubelet signerName) 2 serving certificates for TLS endpoints kube-apiserver can connect to securely (with the kubernetesio/kubelet-serving signerName)This API can be used to request client certificates to authenticate to kube-apiserver (with the kubernetesio/kube-apiserver-client signerName), or to obtain certificates from custom non-Kubernetes signers'}
				mandatory
					io_k8s_api_certificates_v1_CertificateSigningRequest_spec {doc 'spec contains the certificate request, and is immutable after creation Only the request, signerName, expirationSeconds, and usages fields can be set on creation Other fields are derived by Kubernetes and cannot be modified by users'}
						mandatory
							String io_k8s_api_certificates_v1_CertificateSigningRequest_spec_request {doc 'request contains an x509 certificate signing request encoded in a CERTIFICATE REQUEST PEM block When serialized as JSON or YAML, the data is additionally base64-encoded'}
							String io_k8s_api_certificates_v1_CertificateSigningRequest_spec_signerName {doc 'signerName indicates the requested signer, and is a qualified nameList/watch requests for CertificateSigningRequests can filter on this field using a specsignerName=NAME fieldSelectorWell-known Kubernetes signers are: 1 kubernetesio/kube-apiserver-client: issues client certificates that can be used to authenticate to kube-apiserver  Requests for this signer are never auto-approved by kube-controller-manager, can be issued by the csrsigning controller in kube-controller-manager 2 kubernetesio/kube-apiserver-client-kubelet: issues client certificates that kubelets use to authenticate to kube-apiserver  Requests for this signer can be auto-approved by the csrapproving controller in kube-controller-manager, and can be issued by the csrsigning controller in kube-controller-manager 3 kubernetesio/kubelet-serving issues serving certificates that kubelets use to serve TLS endpoints, which kube-apiserver can connect to securely  Requests for this signer are never auto-approved by kube-controller-manager, and can be issued by the csrsigning controller in kube-controller-managerMore details are available at https:_k8sio/docs/reference/access-authn-authz/certificate-signing-requests/#kubernetes-signersCustom signerNames can also be specified The signer defines: 1 Trust distribution: how trust (CA bundles) are distributed 2 Permitted subjects: and behavior when a disallowed subject is requested 3 Required, permitted, or forbidden x509 extensions in the request (including whether subjectAltNames are allowed, which types, restrictions on allowed values) and behavior when a disallowed extension is requested 4 Required, permitted, or forbidden key usages / extended key usages 5 Expiration/certificate lifetime: whether it is fixed by the signer, configurable by the admin 6 Whether or not requests for CA certificates are allowed'}
						optional
							Integer io_k8s_api_certificates_v1_CertificateSigningRequest_spec_expirationSeconds {doc 'expirationSeconds is the requested duration of validity of the issued certificate The certificate signer may issue a certificate with a different validity duration so a client must check the delta between the notBefore and and notAfter fields in the issued certificate to determine the actual durationThe v122+ in-tree implementations of the well-known Kubernetes signers will honor this field as long as the requested duration is not greater than the maximum duration they will honor per the --cluster-signing-duration CLI flag to the Kubernetes controller managerCertificate signers may not honor this field for various reasons:  1 Old signer that is unaware of the field (such as the in-tree     implementations prior to v122)  2 Signer whose configured maximum is shorter than the requested duration  3 Signer whose configured minimum is longer than the requested durationThe minimum valid value for expirationSeconds is 600, ie 10 minutes'}
							io_k8s_api_certificates_v1_CertificateSigningRequest_spec_extra cardinality [1..*] {doc 'extra contains extra attributes of the user that created the CertificateSigningRequest Populated by the API server on creation and immutable'}
								mandatory
									String io_k8s_api_certificates_v1_CertificateSigningRequest_spec_extra_StringValueAdditional {doc 'Added String mandatory for complete structure Array in the model into AdditionalProperties array Array of Strings: StringValue'}
							io_k8s_api_certificates_v1_CertificateSigningRequest_spec_groups cardinality [1..*] {doc 'groups contains group membership of the user that created the CertificateSigningRequest Populated by the API server on creation and immutable'}
								mandatory
									String io_k8s_api_certificates_v1_CertificateSigningRequest_spec_groups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_certificates_v1_CertificateSigningRequest_spec_uid {doc 'uid contains the uid of the user that created the CertificateSigningRequest Populated by the API server on creation and immutable'}
							io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages cardinality [1..*] {doc 'usages specifies a set of key usages requested in the issued certificateRequests for TLS client certificates typically request: digital signature, key encipherment, client authRequests for TLS serving certificates typically request: key encipherment, digital signature, server authValid values are: signing, digital signature, content commitment, key encipherment, key agreement, data encipherment, cert sign, crl sign, encipher only, decipher only, any, server auth, client auth, code signing, email protection, s/mime, ipsec end system, ipsec tunnel, ipsec user, timestamping, ocsp signing, microsoft sgc, netscape sgc'}
								alternative
									io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages_content_commitment {doc 'Specific value: content_commitment'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages_key_agreement {doc 'Specific value: key_agreement'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages_netscape_sgc {doc 'Specific value: netscape_sgc'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages_data_encipherment {doc 'Specific value: data_encipherment'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages_client_auth {doc 'Specific value: client_auth'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages_signing {doc 'Specific value: signing'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages_any {doc 'Specific value: any'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages_ipsec_end_system {doc 'Specific value: ipsec_end_system'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages_ocsp_signing {doc 'Specific value: ocsp_signing'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages_ipsec_tunnel {doc 'Specific value: ipsec_tunnel'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages_cert_sign {doc 'Specific value: cert_sign'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages_timestamping {doc 'Specific value: timestamping'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages_code_signing {doc 'Specific value: code_signing'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages_server_auth {doc 'Specific value: server_auth'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages_email_protection {doc 'Specific value: email_protection'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages_s_mime {doc 'Specific value: s_mime'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages_digital_signature {doc 'Specific value: digital_signature'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages_ipsec_user {doc 'Specific value: ipsec_user'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages_decipher_only {doc 'Specific value: decipher_only'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages_crl_sign {doc 'Specific value: crl_sign'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages_key_encipherment {doc 'Specific value: key_encipherment'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages_microsoft_sgc {doc 'Specific value: microsoft_sgc'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_spec_usages_encipher_only {doc 'Specific value: encipher_only'}
							String io_k8s_api_certificates_v1_CertificateSigningRequest_spec_username {doc 'username contains the name of the user that created the CertificateSigningRequest Populated by the API server on creation and immutable'}
				optional
					String io_k8s_api_certificates_v1_CertificateSigningRequest_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_certificates_v1_CertificateSigningRequest_kind {default 'CertificateSigningRequest', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_certificates_v1_CertificateSigningRequest_metadata
						optional
							io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_certificates_v1_CertificateSigningRequest_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_certificates_v1_CertificateSigningRequest_status {doc 'status contains information about whether the request is approved or denied, and the certificate issued by the signer, or the failure condition indicating signer failure'}
						optional
							String io_k8s_api_certificates_v1_CertificateSigningRequest_status_certificate {doc 'certificate is populated with an issued certificate by the signer after an Approved condition is present This field is set via the /status subresource Once populated, this field is immutableIf the certificate signing request is denied, a condition of type Denied is added and this field remains empty If the signer cannot issue the certificate, a condition of type Failed is added and this field remains emptyValidation requirements: 1 certificate must contain one or more PEM blocks 2 All PEM blocks must have the CERTIFICATE label, contain no headers, and the encoded data  must be a BER-encoded ASN1 Certificate structure as described in section 4 of RFC5280 3 Non-PEM content may appear before or after the CERTIFICATE PEM blocks and is unvalidated,  to allow for explanatory text as described in section 52 of RFC7468If more than one PEM block is present, and the definition of the requested specsignerName does not indicate otherwise, the first block is the issued certificate, and subsequent blocks should be treated as intermediate certificates and presented in TLS handshakesThe certificate is encoded in PEM formatWhen serialized as JSON or YAML, the data is additionally base64-encoded, so it consists of:    base64(    -----BEGIN CERTIFICATE-----        -----END CERTIFICATE-----    )'}
							io_k8s_api_certificates_v1_CertificateSigningRequest_status_conditions cardinality [1..*] {doc 'conditions applied to the request Known conditions are Approved, Denied, and Failed'}
								mandatory
									io_k8s_api_certificates_v1_CertificateSigningRequest_status_conditions_status {doc 'status of the condition, one of True, False, Unknown Approved, Denied, and Failed conditions may not be False or Unknown'}
										alternative
											io_k8s_api_certificates_v1_CertificateSigningRequest_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_certificates_v1_CertificateSigningRequest_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_certificates_v1_CertificateSigningRequest_status_conditions_status_True {doc 'Specific value: True'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_status_conditions_type {doc 'type of the condition Known conditions are Approved, Denied, and FailedAn Approved condition is added via the /approval subresource, indicating the request was approved and should be issued by the signerA Denied condition is added via the /approval subresource, indicating the request was denied and should not be issued by the signerA Failed condition is added via the /status subresource, indicating the signer failed to issue the certificateApproved and Denied conditions are mutually exclusive Approved, Denied, and Failed conditions cannot be removed once addedOnly one condition of a given type is allowed'}
										alternative
											io_k8s_api_certificates_v1_CertificateSigningRequest_status_conditions_type_Denied {doc 'Specific value: Denied'}
											io_k8s_api_certificates_v1_CertificateSigningRequest_status_conditions_type_Failed {doc 'Specific value: Failed'}
											io_k8s_api_certificates_v1_CertificateSigningRequest_status_conditions_type_Approved {doc 'Specific value: Approved'}
								optional
									io_k8s_api_certificates_v1_CertificateSigningRequest_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the time the condition last transitioned from one status to another If unset, when a new condition type is added or an existing condition_s status is changed, the server defaults this to the current time'}
										optional
											String io_k8s_api_certificates_v1_CertificateSigningRequest_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_certificates_v1_CertificateSigningRequest_status_conditions_lastUpdateTime {doc 'lastUpdateTime is the time of the last update to this condition'}
										optional
											String io_k8s_api_certificates_v1_CertificateSigningRequest_status_conditions_lastUpdateTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_certificates_v1_CertificateSigningRequest_status_conditions_message {doc 'message contains a human readable message with details about the request state'}
									String io_k8s_api_certificates_v1_CertificateSigningRequest_status_conditions_reason {doc 'reason indicates a brief reason for the request state'}
			io_k8s_api_certificates_v1_CertificateSigningRequestCondition {doc 'CertificateSigningRequestCondition describes a condition of a CertificateSigningRequest object'}
				mandatory
					io_k8s_api_certificates_v1_CertificateSigningRequestCondition_status {doc 'status of the condition, one of True, False, Unknown Approved, Denied, and Failed conditions may not be False or Unknown'}
						alternative
							io_k8s_api_certificates_v1_CertificateSigningRequestCondition_status_Unknown {doc 'Specific value: Unknown'}
							io_k8s_api_certificates_v1_CertificateSigningRequestCondition_status_False {doc 'Specific value: False'}
							io_k8s_api_certificates_v1_CertificateSigningRequestCondition_status_True {doc 'Specific value: True'}
					io_k8s_api_certificates_v1_CertificateSigningRequestCondition_type {doc 'type of the condition Known conditions are Approved, Denied, and FailedAn Approved condition is added via the /approval subresource, indicating the request was approved and should be issued by the signerA Denied condition is added via the /approval subresource, indicating the request was denied and should not be issued by the signerA Failed condition is added via the /status subresource, indicating the signer failed to issue the certificateApproved and Denied conditions are mutually exclusive Approved, Denied, and Failed conditions cannot be removed once addedOnly one condition of a given type is allowed'}
						alternative
							io_k8s_api_certificates_v1_CertificateSigningRequestCondition_type_Denied {doc 'Specific value: Denied'}
							io_k8s_api_certificates_v1_CertificateSigningRequestCondition_type_Failed {doc 'Specific value: Failed'}
							io_k8s_api_certificates_v1_CertificateSigningRequestCondition_type_Approved {doc 'Specific value: Approved'}
				optional
					io_k8s_api_certificates_v1_CertificateSigningRequestCondition_lastTransitionTime {doc 'lastTransitionTime is the time the condition last transitioned from one status to another If unset, when a new condition type is added or an existing condition_s status is changed, the server defaults this to the current time'}
						optional
							String io_k8s_api_certificates_v1_CertificateSigningRequestCondition_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					io_k8s_api_certificates_v1_CertificateSigningRequestCondition_lastUpdateTime {doc 'lastUpdateTime is the time of the last update to this condition'}
						optional
							String io_k8s_api_certificates_v1_CertificateSigningRequestCondition_lastUpdateTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_api_certificates_v1_CertificateSigningRequestCondition_message {doc 'message contains a human readable message with details about the request state'}
					String io_k8s_api_certificates_v1_CertificateSigningRequestCondition_reason {doc 'reason indicates a brief reason for the request state'}
			io_k8s_api_certificates_v1_CertificateSigningRequestList {doc 'CertificateSigningRequestList is a collection of CertificateSigningRequest objects'}
				mandatory
					io_k8s_api_certificates_v1_CertificateSigningRequestList_items cardinality [1..*] {doc 'items is a collection of CertificateSigningRequest objects'}
						mandatory
							io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec {doc 'spec contains the certificate request, and is immutable after creation Only the request, signerName, expirationSeconds, and usages fields can be set on creation Other fields are derived by Kubernetes and cannot be modified by users'}
								mandatory
									String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_request {doc 'request contains an x509 certificate signing request encoded in a CERTIFICATE REQUEST PEM block When serialized as JSON or YAML, the data is additionally base64-encoded'}
									String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_signerName {doc 'signerName indicates the requested signer, and is a qualified nameList/watch requests for CertificateSigningRequests can filter on this field using a specsignerName=NAME fieldSelectorWell-known Kubernetes signers are: 1 kubernetesio/kube-apiserver-client: issues client certificates that can be used to authenticate to kube-apiserver  Requests for this signer are never auto-approved by kube-controller-manager, can be issued by the csrsigning controller in kube-controller-manager 2 kubernetesio/kube-apiserver-client-kubelet: issues client certificates that kubelets use to authenticate to kube-apiserver  Requests for this signer can be auto-approved by the csrapproving controller in kube-controller-manager, and can be issued by the csrsigning controller in kube-controller-manager 3 kubernetesio/kubelet-serving issues serving certificates that kubelets use to serve TLS endpoints, which kube-apiserver can connect to securely  Requests for this signer are never auto-approved by kube-controller-manager, and can be issued by the csrsigning controller in kube-controller-managerMore details are available at https:_k8sio/docs/reference/access-authn-authz/certificate-signing-requests/#kubernetes-signersCustom signerNames can also be specified The signer defines: 1 Trust distribution: how trust (CA bundles) are distributed 2 Permitted subjects: and behavior when a disallowed subject is requested 3 Required, permitted, or forbidden x509 extensions in the request (including whether subjectAltNames are allowed, which types, restrictions on allowed values) and behavior when a disallowed extension is requested 4 Required, permitted, or forbidden key usages / extended key usages 5 Expiration/certificate lifetime: whether it is fixed by the signer, configurable by the admin 6 Whether or not requests for CA certificates are allowed'}
								optional
									Integer io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_expirationSeconds {doc 'expirationSeconds is the requested duration of validity of the issued certificate The certificate signer may issue a certificate with a different validity duration so a client must check the delta between the notBefore and and notAfter fields in the issued certificate to determine the actual durationThe v122+ in-tree implementations of the well-known Kubernetes signers will honor this field as long as the requested duration is not greater than the maximum duration they will honor per the --cluster-signing-duration CLI flag to the Kubernetes controller managerCertificate signers may not honor this field for various reasons:  1 Old signer that is unaware of the field (such as the in-tree     implementations prior to v122)  2 Signer whose configured maximum is shorter than the requested duration  3 Signer whose configured minimum is longer than the requested durationThe minimum valid value for expirationSeconds is 600, ie 10 minutes'}
									io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_extra cardinality [1..*] {doc 'extra contains extra attributes of the user that created the CertificateSigningRequest Populated by the API server on creation and immutable'}
										mandatory
											String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_extra_StringValueAdditional {doc 'Added String mandatory for complete structure Array in the model into AdditionalProperties array Array of Strings: StringValue'}
									io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_groups cardinality [1..*] {doc 'groups contains group membership of the user that created the CertificateSigningRequest Populated by the API server on creation and immutable'}
										mandatory
											String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_groups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_uid {doc 'uid contains the uid of the user that created the CertificateSigningRequest Populated by the API server on creation and immutable'}
									io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages cardinality [1..*] {doc 'usages specifies a set of key usages requested in the issued certificateRequests for TLS client certificates typically request: digital signature, key encipherment, client authRequests for TLS serving certificates typically request: key encipherment, digital signature, server authValid values are: signing, digital signature, content commitment, key encipherment, key agreement, data encipherment, cert sign, crl sign, encipher only, decipher only, any, server auth, client auth, code signing, email protection, s/mime, ipsec end system, ipsec tunnel, ipsec user, timestamping, ocsp signing, microsoft sgc, netscape sgc'}
										alternative
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages_content_commitment {doc 'Specific value: content_commitment'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages_key_agreement {doc 'Specific value: key_agreement'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages_netscape_sgc {doc 'Specific value: netscape_sgc'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages_data_encipherment {doc 'Specific value: data_encipherment'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages_client_auth {doc 'Specific value: client_auth'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages_signing {doc 'Specific value: signing'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages_any {doc 'Specific value: any'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages_ipsec_end_system {doc 'Specific value: ipsec_end_system'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages_ocsp_signing {doc 'Specific value: ocsp_signing'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages_ipsec_tunnel {doc 'Specific value: ipsec_tunnel'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages_cert_sign {doc 'Specific value: cert_sign'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages_timestamping {doc 'Specific value: timestamping'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages_code_signing {doc 'Specific value: code_signing'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages_server_auth {doc 'Specific value: server_auth'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages_email_protection {doc 'Specific value: email_protection'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages_s_mime {doc 'Specific value: s_mime'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages_digital_signature {doc 'Specific value: digital_signature'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages_ipsec_user {doc 'Specific value: ipsec_user'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages_decipher_only {doc 'Specific value: decipher_only'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages_crl_sign {doc 'Specific value: crl_sign'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages_key_encipherment {doc 'Specific value: key_encipherment'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages_microsoft_sgc {doc 'Specific value: microsoft_sgc'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_usages_encipher_only {doc 'Specific value: encipher_only'}
									String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_username {doc 'username contains the name of the user that created the CertificateSigningRequest Populated by the API server on creation and immutable'}
						optional
							String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_kind {default 'CertificateSigningRequest', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata
								optional
									io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_certificates_v1_CertificateSigningRequestList_items_status {doc 'status contains information about whether the request is approved or denied, and the certificate issued by the signer, or the failure condition indicating signer failure'}
								optional
									String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_status_certificate {doc 'certificate is populated with an issued certificate by the signer after an Approved condition is present This field is set via the /status subresource Once populated, this field is immutableIf the certificate signing request is denied, a condition of type Denied is added and this field remains empty If the signer cannot issue the certificate, a condition of type Failed is added and this field remains emptyValidation requirements: 1 certificate must contain one or more PEM blocks 2 All PEM blocks must have the CERTIFICATE label, contain no headers, and the encoded data  must be a BER-encoded ASN1 Certificate structure as described in section 4 of RFC5280 3 Non-PEM content may appear before or after the CERTIFICATE PEM blocks and is unvalidated,  to allow for explanatory text as described in section 52 of RFC7468If more than one PEM block is present, and the definition of the requested specsignerName does not indicate otherwise, the first block is the issued certificate, and subsequent blocks should be treated as intermediate certificates and presented in TLS handshakesThe certificate is encoded in PEM formatWhen serialized as JSON or YAML, the data is additionally base64-encoded, so it consists of:    base64(    -----BEGIN CERTIFICATE-----        -----END CERTIFICATE-----    )'}
									io_k8s_api_certificates_v1_CertificateSigningRequestList_items_status_conditions cardinality [1..*] {doc 'conditions applied to the request Known conditions are Approved, Denied, and Failed'}
										mandatory
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_status_conditions_status {doc 'status of the condition, one of True, False, Unknown Approved, Denied, and Failed conditions may not be False or Unknown'}
												alternative
													io_k8s_api_certificates_v1_CertificateSigningRequestList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_api_certificates_v1_CertificateSigningRequestList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_api_certificates_v1_CertificateSigningRequestList_items_status_conditions_status_True {doc 'Specific value: True'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_status_conditions_type {doc 'type of the condition Known conditions are Approved, Denied, and FailedAn Approved condition is added via the /approval subresource, indicating the request was approved and should be issued by the signerA Denied condition is added via the /approval subresource, indicating the request was denied and should not be issued by the signerA Failed condition is added via the /status subresource, indicating the signer failed to issue the certificateApproved and Denied conditions are mutually exclusive Approved, Denied, and Failed conditions cannot be removed once addedOnly one condition of a given type is allowed'}
												alternative
													io_k8s_api_certificates_v1_CertificateSigningRequestList_items_status_conditions_type_Denied {doc 'Specific value: Denied'}
													io_k8s_api_certificates_v1_CertificateSigningRequestList_items_status_conditions_type_Failed {doc 'Specific value: Failed'}
													io_k8s_api_certificates_v1_CertificateSigningRequestList_items_status_conditions_type_Approved {doc 'Specific value: Approved'}
										optional
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the time the condition last transitioned from one status to another If unset, when a new condition type is added or an existing condition_s status is changed, the server defaults this to the current time'}
												optional
													String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_certificates_v1_CertificateSigningRequestList_items_status_conditions_lastUpdateTime {doc 'lastUpdateTime is the time of the last update to this condition'}
												optional
													String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_status_conditions_lastUpdateTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_status_conditions_message {doc 'message contains a human readable message with details about the request state'}
											String io_k8s_api_certificates_v1_CertificateSigningRequestList_items_status_conditions_reason {doc 'reason indicates a brief reason for the request state'}
				optional
					String io_k8s_api_certificates_v1_CertificateSigningRequestList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_certificates_v1_CertificateSigningRequestList_kind {default 'CertificateSigningRequestList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_certificates_v1_CertificateSigningRequestList_metadata
						optional
							String io_k8s_api_certificates_v1_CertificateSigningRequestList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_certificates_v1_CertificateSigningRequestList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_certificates_v1_CertificateSigningRequestList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_certificates_v1_CertificateSigningRequestList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_certificates_v1_CertificateSigningRequestSpec {doc 'CertificateSigningRequestSpec contains the certificate request'}
				mandatory
					String io_k8s_api_certificates_v1_CertificateSigningRequestSpec_request {doc 'request contains an x509 certificate signing request encoded in a CERTIFICATE REQUEST PEM block When serialized as JSON or YAML, the data is additionally base64-encoded'}
					String io_k8s_api_certificates_v1_CertificateSigningRequestSpec_signerName {doc 'signerName indicates the requested signer, and is a qualified nameList/watch requests for CertificateSigningRequests can filter on this field using a specsignerName=NAME fieldSelectorWell-known Kubernetes signers are: 1 kubernetesio/kube-apiserver-client: issues client certificates that can be used to authenticate to kube-apiserver  Requests for this signer are never auto-approved by kube-controller-manager, can be issued by the csrsigning controller in kube-controller-manager 2 kubernetesio/kube-apiserver-client-kubelet: issues client certificates that kubelets use to authenticate to kube-apiserver  Requests for this signer can be auto-approved by the csrapproving controller in kube-controller-manager, and can be issued by the csrsigning controller in kube-controller-manager 3 kubernetesio/kubelet-serving issues serving certificates that kubelets use to serve TLS endpoints, which kube-apiserver can connect to securely  Requests for this signer are never auto-approved by kube-controller-manager, and can be issued by the csrsigning controller in kube-controller-managerMore details are available at https:_k8sio/docs/reference/access-authn-authz/certificate-signing-requests/#kubernetes-signersCustom signerNames can also be specified The signer defines: 1 Trust distribution: how trust (CA bundles) are distributed 2 Permitted subjects: and behavior when a disallowed subject is requested 3 Required, permitted, or forbidden x509 extensions in the request (including whether subjectAltNames are allowed, which types, restrictions on allowed values) and behavior when a disallowed extension is requested 4 Required, permitted, or forbidden key usages / extended key usages 5 Expiration/certificate lifetime: whether it is fixed by the signer, configurable by the admin 6 Whether or not requests for CA certificates are allowed'}
				optional
					Integer io_k8s_api_certificates_v1_CertificateSigningRequestSpec_expirationSeconds {doc 'expirationSeconds is the requested duration of validity of the issued certificate The certificate signer may issue a certificate with a different validity duration so a client must check the delta between the notBefore and and notAfter fields in the issued certificate to determine the actual durationThe v122+ in-tree implementations of the well-known Kubernetes signers will honor this field as long as the requested duration is not greater than the maximum duration they will honor per the --cluster-signing-duration CLI flag to the Kubernetes controller managerCertificate signers may not honor this field for various reasons:  1 Old signer that is unaware of the field (such as the in-tree     implementations prior to v122)  2 Signer whose configured maximum is shorter than the requested duration  3 Signer whose configured minimum is longer than the requested durationThe minimum valid value for expirationSeconds is 600, ie 10 minutes'}
					io_k8s_api_certificates_v1_CertificateSigningRequestSpec_extra cardinality [1..*] {doc 'extra contains extra attributes of the user that created the CertificateSigningRequest Populated by the API server on creation and immutable'}
						mandatory
							String io_k8s_api_certificates_v1_CertificateSigningRequestSpec_extra_StringValueAdditional {doc 'Added String mandatory for complete structure Array in the model into AdditionalProperties array Array of Strings: StringValue'}
					io_k8s_api_certificates_v1_CertificateSigningRequestSpec_groups cardinality [1..*] {doc 'groups contains group membership of the user that created the CertificateSigningRequest Populated by the API server on creation and immutable'}
						mandatory
							String io_k8s_api_certificates_v1_CertificateSigningRequestSpec_groups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					String io_k8s_api_certificates_v1_CertificateSigningRequestSpec_uid {doc 'uid contains the uid of the user that created the CertificateSigningRequest Populated by the API server on creation and immutable'}
					io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages cardinality [1..*] {doc 'usages specifies a set of key usages requested in the issued certificateRequests for TLS client certificates typically request: digital signature, key encipherment, client authRequests for TLS serving certificates typically request: key encipherment, digital signature, server authValid values are: signing, digital signature, content commitment, key encipherment, key agreement, data encipherment, cert sign, crl sign, encipher only, decipher only, any, server auth, client auth, code signing, email protection, s/mime, ipsec end system, ipsec tunnel, ipsec user, timestamping, ocsp signing, microsoft sgc, netscape sgc'}
						alternative
							io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages_content_commitment {doc 'Specific value: content_commitment'}
							io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages_key_agreement {doc 'Specific value: key_agreement'}
							io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages_netscape_sgc {doc 'Specific value: netscape_sgc'}
							io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages_data_encipherment {doc 'Specific value: data_encipherment'}
							io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages_client_auth {doc 'Specific value: client_auth'}
							io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages_signing {doc 'Specific value: signing'}
							io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages_any {doc 'Specific value: any'}
							io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages_ipsec_end_system {doc 'Specific value: ipsec_end_system'}
							io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages_ocsp_signing {doc 'Specific value: ocsp_signing'}
							io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages_ipsec_tunnel {doc 'Specific value: ipsec_tunnel'}
							io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages_cert_sign {doc 'Specific value: cert_sign'}
							io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages_timestamping {doc 'Specific value: timestamping'}
							io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages_code_signing {doc 'Specific value: code_signing'}
							io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages_server_auth {doc 'Specific value: server_auth'}
							io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages_email_protection {doc 'Specific value: email_protection'}
							io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages_s_mime {doc 'Specific value: s_mime'}
							io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages_digital_signature {doc 'Specific value: digital_signature'}
							io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages_ipsec_user {doc 'Specific value: ipsec_user'}
							io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages_decipher_only {doc 'Specific value: decipher_only'}
							io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages_crl_sign {doc 'Specific value: crl_sign'}
							io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages_key_encipherment {doc 'Specific value: key_encipherment'}
							io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages_microsoft_sgc {doc 'Specific value: microsoft_sgc'}
							io_k8s_api_certificates_v1_CertificateSigningRequestSpec_usages_encipher_only {doc 'Specific value: encipher_only'}
					String io_k8s_api_certificates_v1_CertificateSigningRequestSpec_username {doc 'username contains the name of the user that created the CertificateSigningRequest Populated by the API server on creation and immutable'}
			io_k8s_api_certificates_v1_CertificateSigningRequestStatus {doc 'CertificateSigningRequestStatus contains conditions used to indicate approved/denied/failed status of the request, and the issued certificate'}
				optional
					String io_k8s_api_certificates_v1_CertificateSigningRequestStatus_certificate {doc 'certificate is populated with an issued certificate by the signer after an Approved condition is present This field is set via the /status subresource Once populated, this field is immutableIf the certificate signing request is denied, a condition of type Denied is added and this field remains empty If the signer cannot issue the certificate, a condition of type Failed is added and this field remains emptyValidation requirements: 1 certificate must contain one or more PEM blocks 2 All PEM blocks must have the CERTIFICATE label, contain no headers, and the encoded data  must be a BER-encoded ASN1 Certificate structure as described in section 4 of RFC5280 3 Non-PEM content may appear before or after the CERTIFICATE PEM blocks and is unvalidated,  to allow for explanatory text as described in section 52 of RFC7468If more than one PEM block is present, and the definition of the requested specsignerName does not indicate otherwise, the first block is the issued certificate, and subsequent blocks should be treated as intermediate certificates and presented in TLS handshakesThe certificate is encoded in PEM formatWhen serialized as JSON or YAML, the data is additionally base64-encoded, so it consists of:    base64(    -----BEGIN CERTIFICATE-----        -----END CERTIFICATE-----    )'}
					io_k8s_api_certificates_v1_CertificateSigningRequestStatus_conditions cardinality [1..*] {doc 'conditions applied to the request Known conditions are Approved, Denied, and Failed'}
						mandatory
							io_k8s_api_certificates_v1_CertificateSigningRequestStatus_conditions_status {doc 'status of the condition, one of True, False, Unknown Approved, Denied, and Failed conditions may not be False or Unknown'}
								alternative
									io_k8s_api_certificates_v1_CertificateSigningRequestStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_certificates_v1_CertificateSigningRequestStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_certificates_v1_CertificateSigningRequestStatus_conditions_status_True {doc 'Specific value: True'}
							io_k8s_api_certificates_v1_CertificateSigningRequestStatus_conditions_type {doc 'type of the condition Known conditions are Approved, Denied, and FailedAn Approved condition is added via the /approval subresource, indicating the request was approved and should be issued by the signerA Denied condition is added via the /approval subresource, indicating the request was denied and should not be issued by the signerA Failed condition is added via the /status subresource, indicating the signer failed to issue the certificateApproved and Denied conditions are mutually exclusive Approved, Denied, and Failed conditions cannot be removed once addedOnly one condition of a given type is allowed'}
								alternative
									io_k8s_api_certificates_v1_CertificateSigningRequestStatus_conditions_type_Denied {doc 'Specific value: Denied'}
									io_k8s_api_certificates_v1_CertificateSigningRequestStatus_conditions_type_Failed {doc 'Specific value: Failed'}
									io_k8s_api_certificates_v1_CertificateSigningRequestStatus_conditions_type_Approved {doc 'Specific value: Approved'}
						optional
							io_k8s_api_certificates_v1_CertificateSigningRequestStatus_conditions_lastTransitionTime {doc 'lastTransitionTime is the time the condition last transitioned from one status to another If unset, when a new condition type is added or an existing condition_s status is changed, the server defaults this to the current time'}
								optional
									String io_k8s_api_certificates_v1_CertificateSigningRequestStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_certificates_v1_CertificateSigningRequestStatus_conditions_lastUpdateTime {doc 'lastUpdateTime is the time of the last update to this condition'}
								optional
									String io_k8s_api_certificates_v1_CertificateSigningRequestStatus_conditions_lastUpdateTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_certificates_v1_CertificateSigningRequestStatus_conditions_message {doc 'message contains a human readable message with details about the request state'}
							String io_k8s_api_certificates_v1_CertificateSigningRequestStatus_conditions_reason {doc 'reason indicates a brief reason for the request state'}
			io_k8s_api_certificates_v1alpha1_ClusterTrustBundle {doc 'ClusterTrustBundle is a cluster-scoped container for X509 trust anchors (root certificates)ClusterTrustBundle objects are considered to be readable by any authenticated user in the cluster, because they can be mounted by pods using the clusterTrustBundle projection  All service accounts have read access to ClusterTrustBundles by default  Users who only have namespace-level access to a cluster can read ClusterTrustBundles by impersonating a serviceaccount that they have access toIt can be optionally associated with a particular assigner, in which case it contains one valid set of trust anchors for that signer Signers may have multiple associated ClusterTrustBundles; each is an independent set of trust anchors for that signer Admission control is used to enforce that only users with permissions on the signer can create or modify the corresponding bundle'}
				mandatory
					io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_spec {doc 'spec contains the signer (if any) and trust anchors'}
						mandatory
							String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_spec_trustBundle {doc 'trustBundle contains the individual X509 trust anchors for this bundle, as PEM bundle of PEM-wrapped, DER-formatted X509 certificatesThe data must consist only of PEM certificate blocks that parse as valid X509 certificates  Each certificate must include a basic constraints extension with the CA bit set  The API server will reject objects that contain duplicate certificates, or that use PEM block headersUsers of ClusterTrustBundles, including Kubelet, are free to reorder and deduplicate certificate blocks in this file according to their own logic, as well as to drop PEM block headers and inter-block data'}
						optional
							String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_spec_signerName {doc 'signerName indicates the associated signer, if anyIn order to create or update a ClusterTrustBundle that sets signerName, you must have the following cluster-scoped permission: group=certificatesk8sio resource=signers resourceName=<the signer name> verb=attestIf signerName is not empty, then the ClusterTrustBundle object must be named with the signer name as a prefix (translating slashes to colons) For example, for the signer name examplecom/foo, valid ClusterTrustBundle object names include examplecom:foo:abc and examplecom:foo:v1If signerName is empty, then the ClusterTrustBundle object_s name must not have such a prefixList/watch requests for ClusterTrustBundles can filter on this field using a specsignerName=NAME field selector'}
				optional
					String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_kind {default 'ClusterTrustBundle', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata {doc 'metadata contains the object metadata'}
						optional
							io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_certificates_v1alpha1_ClusterTrustBundle_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
			io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList {doc 'ClusterTrustBundleList is a collection of ClusterTrustBundle objects'}
				mandatory
					io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items cardinality [1..*] {doc 'items is a collection of ClusterTrustBundle objects'}
						mandatory
							io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_spec {doc 'spec contains the signer (if any) and trust anchors'}
								mandatory
									String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_spec_trustBundle {doc 'trustBundle contains the individual X509 trust anchors for this bundle, as PEM bundle of PEM-wrapped, DER-formatted X509 certificatesThe data must consist only of PEM certificate blocks that parse as valid X509 certificates  Each certificate must include a basic constraints extension with the CA bit set  The API server will reject objects that contain duplicate certificates, or that use PEM block headersUsers of ClusterTrustBundles, including Kubelet, are free to reorder and deduplicate certificate blocks in this file according to their own logic, as well as to drop PEM block headers and inter-block data'}
								optional
									String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_spec_signerName {doc 'signerName indicates the associated signer, if anyIn order to create or update a ClusterTrustBundle that sets signerName, you must have the following cluster-scoped permission: group=certificatesk8sio resource=signers resourceName=<the signer name> verb=attestIf signerName is not empty, then the ClusterTrustBundle object must be named with the signer name as a prefix (translating slashes to colons) For example, for the signer name examplecom/foo, valid ClusterTrustBundle object names include examplecom:foo:abc and examplecom:foo:v1If signerName is empty, then the ClusterTrustBundle object_s name must not have such a prefixList/watch requests for ClusterTrustBundles can filter on this field using a specsignerName=NAME field selector'}
						optional
							String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_kind {default 'ClusterTrustBundle', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata {doc 'metadata contains the object metadata'}
								optional
									io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
				optional
					String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_kind {default 'ClusterTrustBundleList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_metadata {doc 'metadata contains the list metadata'}
						optional
							String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_certificates_v1alpha1_ClusterTrustBundleSpec {doc 'ClusterTrustBundleSpec contains the signer and trust anchors'}
				mandatory
					String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleSpec_trustBundle {doc 'trustBundle contains the individual X509 trust anchors for this bundle, as PEM bundle of PEM-wrapped, DER-formatted X509 certificatesThe data must consist only of PEM certificate blocks that parse as valid X509 certificates  Each certificate must include a basic constraints extension with the CA bit set  The API server will reject objects that contain duplicate certificates, or that use PEM block headersUsers of ClusterTrustBundles, including Kubelet, are free to reorder and deduplicate certificate blocks in this file according to their own logic, as well as to drop PEM block headers and inter-block data'}
				optional
					String io_k8s_api_certificates_v1alpha1_ClusterTrustBundleSpec_signerName {doc 'signerName indicates the associated signer, if anyIn order to create or update a ClusterTrustBundle that sets signerName, you must have the following cluster-scoped permission: group=certificatesk8sio resource=signers resourceName=<the signer name> verb=attestIf signerName is not empty, then the ClusterTrustBundle object must be named with the signer name as a prefix (translating slashes to colons) For example, for the signer name examplecom/foo, valid ClusterTrustBundle object names include examplecom:foo:abc and examplecom:foo:v1If signerName is empty, then the ClusterTrustBundle object_s name must not have such a prefixList/watch requests for ClusterTrustBundles can filter on this field using a specsignerName=NAME field selector'}
			io_k8s_api_coordination_v1_Lease {doc 'Lease defines a lease concept'}
				optional
					String io_k8s_api_coordination_v1_Lease_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_coordination_v1_Lease_kind {default 'Lease', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_coordination_v1_Lease_metadata {doc 'More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_coordination_v1_Lease_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_coordination_v1_Lease_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_coordination_v1_Lease_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_coordination_v1_Lease_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_coordination_v1_Lease_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_coordination_v1_Lease_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_coordination_v1_Lease_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_coordination_v1_Lease_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_coordination_v1_Lease_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_coordination_v1_Lease_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_coordination_v1_Lease_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_coordination_v1_Lease_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_coordination_v1_Lease_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_coordination_v1_Lease_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_coordination_v1_Lease_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_coordination_v1_Lease_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_coordination_v1_Lease_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_coordination_v1_Lease_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_coordination_v1_Lease_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_coordination_v1_Lease_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_coordination_v1_Lease_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_coordination_v1_Lease_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_coordination_v1_Lease_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_coordination_v1_Lease_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_coordination_v1_Lease_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_coordination_v1_Lease_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_coordination_v1_Lease_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_coordination_v1_Lease_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_coordination_v1_Lease_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_coordination_v1_Lease_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_coordination_v1_Lease_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_coordination_v1_Lease_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_coordination_v1_Lease_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_coordination_v1_Lease_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_coordination_v1_Lease_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_coordination_v1_Lease_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_coordination_v1_Lease_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_coordination_v1_Lease_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_coordination_v1_Lease_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_coordination_v1_Lease_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_coordination_v1_Lease_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_coordination_v1_Lease_spec {doc 'spec contains the specification of the Lease More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							io_k8s_api_coordination_v1_Lease_spec_acquireTime {doc 'acquireTime is a time when the current lease was acquired'}
								optional
									String io_k8s_api_coordination_v1_Lease_spec_acquireTime_MicroTime {doc 'MicroTime is version of Time with microsecond level precision'}
							String io_k8s_api_coordination_v1_Lease_spec_holderIdentity {doc 'holderIdentity contains the identity of the holder of a current lease'}
							Integer io_k8s_api_coordination_v1_Lease_spec_leaseDurationSeconds {doc 'leaseDurationSeconds is a duration that candidates for a lease need to wait to force acquire it This is measure against time of last observed renewTime'}
							Integer io_k8s_api_coordination_v1_Lease_spec_leaseTransitions {doc 'leaseTransitions is the number of transitions of a lease between holders'}
							io_k8s_api_coordination_v1_Lease_spec_renewTime {doc 'renewTime is a time when the current holder of a lease has last updated the lease'}
								optional
									String io_k8s_api_coordination_v1_Lease_spec_renewTime_MicroTime {doc 'MicroTime is version of Time with microsecond level precision'}
			io_k8s_api_coordination_v1_LeaseList {doc 'LeaseList is a list of Lease objects'}
				mandatory
					io_k8s_api_coordination_v1_LeaseList_items cardinality [1..*] {doc 'items is a list of schema objects'}
						optional
							String io_k8s_api_coordination_v1_LeaseList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_coordination_v1_LeaseList_items_kind {default 'Lease', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_coordination_v1_LeaseList_items_metadata {doc 'More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_coordination_v1_LeaseList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_coordination_v1_LeaseList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_coordination_v1_LeaseList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_coordination_v1_LeaseList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_coordination_v1_LeaseList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_coordination_v1_LeaseList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_coordination_v1_LeaseList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_coordination_v1_LeaseList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_coordination_v1_LeaseList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_coordination_v1_LeaseList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_coordination_v1_LeaseList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_coordination_v1_LeaseList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_coordination_v1_LeaseList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_coordination_v1_LeaseList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_coordination_v1_LeaseList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_coordination_v1_LeaseList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_coordination_v1_LeaseList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_coordination_v1_LeaseList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_coordination_v1_LeaseList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_coordination_v1_LeaseList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_coordination_v1_LeaseList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_coordination_v1_LeaseList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_coordination_v1_LeaseList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_coordination_v1_LeaseList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_coordination_v1_LeaseList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_coordination_v1_LeaseList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_coordination_v1_LeaseList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_coordination_v1_LeaseList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_coordination_v1_LeaseList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_coordination_v1_LeaseList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_coordination_v1_LeaseList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_coordination_v1_LeaseList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_coordination_v1_LeaseList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_coordination_v1_LeaseList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_coordination_v1_LeaseList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_coordination_v1_LeaseList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_coordination_v1_LeaseList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_coordination_v1_LeaseList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_coordination_v1_LeaseList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_coordination_v1_LeaseList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_coordination_v1_LeaseList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_coordination_v1_LeaseList_items_spec {doc 'spec contains the specification of the Lease More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								optional
									io_k8s_api_coordination_v1_LeaseList_items_spec_acquireTime {doc 'acquireTime is a time when the current lease was acquired'}
										optional
											String io_k8s_api_coordination_v1_LeaseList_items_spec_acquireTime_MicroTime {doc 'MicroTime is version of Time with microsecond level precision'}
									String io_k8s_api_coordination_v1_LeaseList_items_spec_holderIdentity {doc 'holderIdentity contains the identity of the holder of a current lease'}
									Integer io_k8s_api_coordination_v1_LeaseList_items_spec_leaseDurationSeconds {doc 'leaseDurationSeconds is a duration that candidates for a lease need to wait to force acquire it This is measure against time of last observed renewTime'}
									Integer io_k8s_api_coordination_v1_LeaseList_items_spec_leaseTransitions {doc 'leaseTransitions is the number of transitions of a lease between holders'}
									io_k8s_api_coordination_v1_LeaseList_items_spec_renewTime {doc 'renewTime is a time when the current holder of a lease has last updated the lease'}
										optional
											String io_k8s_api_coordination_v1_LeaseList_items_spec_renewTime_MicroTime {doc 'MicroTime is version of Time with microsecond level precision'}
				optional
					String io_k8s_api_coordination_v1_LeaseList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_coordination_v1_LeaseList_kind {default 'LeaseList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_coordination_v1_LeaseList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_coordination_v1_LeaseList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_coordination_v1_LeaseList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_coordination_v1_LeaseList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_coordination_v1_LeaseList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_coordination_v1_LeaseSpec {doc 'LeaseSpec is a specification of a Lease'}
				optional
					io_k8s_api_coordination_v1_LeaseSpec_acquireTime {doc 'acquireTime is a time when the current lease was acquired'}
						optional
							String io_k8s_api_coordination_v1_LeaseSpec_acquireTime_MicroTime {doc 'MicroTime is version of Time with microsecond level precision'}
					String io_k8s_api_coordination_v1_LeaseSpec_holderIdentity {doc 'holderIdentity contains the identity of the holder of a current lease'}
					Integer io_k8s_api_coordination_v1_LeaseSpec_leaseDurationSeconds {doc 'leaseDurationSeconds is a duration that candidates for a lease need to wait to force acquire it This is measure against time of last observed renewTime'}
					Integer io_k8s_api_coordination_v1_LeaseSpec_leaseTransitions {doc 'leaseTransitions is the number of transitions of a lease between holders'}
					io_k8s_api_coordination_v1_LeaseSpec_renewTime {doc 'renewTime is a time when the current holder of a lease has last updated the lease'}
						optional
							String io_k8s_api_coordination_v1_LeaseSpec_renewTime_MicroTime {doc 'MicroTime is version of Time with microsecond level precision'}
			io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource {doc 'Represents a Persistent Disk resource in AWSAn AWS EBS disk must exist before mounting to a container The disk must also be in the same AWS zone as the kubelet An AWS EBS disk can only be mounted as read/write once AWS EBS volumes support ownership management and SELinux relabeling'}
				mandatory
					String io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
				optional
					io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
						alternative
							io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource_fsType_xfs {doc 'Specific value: xfs'}
							io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource_fsType_ext4 {default, doc 'Specific value: ext4'}
							io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource_fsType_ntfs {doc 'Specific value: ntfs'}
					Integer io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
					io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
			io_k8s_api_core_v1_Affinity {doc 'Affinity is a group of affinity scheduling rules'}
				optional
					io_k8s_api_core_v1_Affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
						optional
							io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
								mandatory
									io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
										optional
											io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
												mandatory
													String io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
													io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
														alternative
															io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
															io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
															io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
												mandatory
													String io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
													io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
														alternative
															io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
															io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
															io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
															io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									Integer io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
							io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
								mandatory
									io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
										optional
											io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
												mandatory
													String io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
													io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
														alternative
															io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
															io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
															io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
												mandatory
													String io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
													io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
														alternative
															io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
															io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
															io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
															io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_Affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
						optional
							io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
								mandatory
									io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
										mandatory
											String io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
										optional
											io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
												optional
													io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
												mandatory
													String io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
												mandatory
													String io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
												optional
													io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
												mandatory
													String io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									Integer io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
							io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
								mandatory
									String io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
								optional
									io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
										optional
											io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
										mandatory
											String io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
										mandatory
											String io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
										optional
											io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
										mandatory
											String io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_Affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
						optional
							io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
								mandatory
									io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
										mandatory
											String io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
										optional
											io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
												optional
													io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
												mandatory
													String io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
												mandatory
													String io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
												optional
													io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
												mandatory
													String io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									Integer io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
							io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
								mandatory
									String io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
								optional
									io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
										optional
											io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
										mandatory
											String io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
										mandatory
											String io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
										optional
											io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
										mandatory
											String io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_AppArmorProfile {doc 'AppArmorProfile defines a pod or container_s AppArmor settings'}
				mandatory
					io_k8s_api_core_v1_AppArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
						alternative
							io_k8s_api_core_v1_AppArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
							io_k8s_api_core_v1_AppArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
							io_k8s_api_core_v1_AppArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
				optional
					io_k8s_api_core_v1_AppArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
						mandatory
							io_k8s_api_core_v1_AppArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
			io_k8s_api_core_v1_AttachedVolume {doc 'AttachedVolume describes a volume attached to a node'}
				mandatory
					String io_k8s_api_core_v1_AttachedVolume_devicePath {doc 'DevicePath represents the device path where the volume should be available'}
					String io_k8s_api_core_v1_AttachedVolume_name {doc 'Name of the attached volume'}
			io_k8s_api_core_v1_AzureDiskVolumeSource {doc 'AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
				mandatory
					String io_k8s_api_core_v1_AzureDiskVolumeSource_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
					String io_k8s_api_core_v1_AzureDiskVolumeSource_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
				optional
					io_k8s_api_core_v1_AzureDiskVolumeSource_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
						alternative
							io_k8s_api_core_v1_AzureDiskVolumeSource_cachingMode_None {doc 'Specific value: None'}
							io_k8s_api_core_v1_AzureDiskVolumeSource_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
							io_k8s_api_core_v1_AzureDiskVolumeSource_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
					io_k8s_api_core_v1_AzureDiskVolumeSource_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
						alternative
							io_k8s_api_core_v1_AzureDiskVolumeSource_fsType_xfs {doc 'Specific value: xfs'}
							io_k8s_api_core_v1_AzureDiskVolumeSource_fsType_ext4 {default, doc 'Specific value: ext4'}
							io_k8s_api_core_v1_AzureDiskVolumeSource_fsType_ntfs {doc 'Specific value: ntfs'}
					io_k8s_api_core_v1_AzureDiskVolumeSource_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
						alternative
							io_k8s_api_core_v1_AzureDiskVolumeSource_kind_Dedicated {doc 'Specific value: Dedicated'}
							io_k8s_api_core_v1_AzureDiskVolumeSource_kind_Managed {doc 'Specific value: Managed'}
							io_k8s_api_core_v1_AzureDiskVolumeSource_kind_Shared {doc 'Specific value: Shared'}
					io_k8s_api_core_v1_AzureDiskVolumeSource_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
			io_k8s_api_core_v1_AzureFilePersistentVolumeSource {doc 'AzureFile represents an Azure File Service mount on the host and bind mount to the pod'}
				mandatory
					String io_k8s_api_core_v1_AzureFilePersistentVolumeSource_secretName {doc 'secretName is the name of secret that contains Azure Storage Account Name and Key'}
					String io_k8s_api_core_v1_AzureFilePersistentVolumeSource_shareName {doc 'shareName is the azure Share Name'}
				optional
					io_k8s_api_core_v1_AzureFilePersistentVolumeSource_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
					String io_k8s_api_core_v1_AzureFilePersistentVolumeSource_secretNamespace {doc 'secretNamespace is the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod'}
			io_k8s_api_core_v1_AzureFileVolumeSource {doc 'AzureFile represents an Azure File Service mount on the host and bind mount to the pod'}
				mandatory
					String io_k8s_api_core_v1_AzureFileVolumeSource_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
					String io_k8s_api_core_v1_AzureFileVolumeSource_shareName {doc 'shareName is the azure share Name'}
				optional
					io_k8s_api_core_v1_AzureFileVolumeSource_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
			io_k8s_api_core_v1_Binding {doc 'Binding ties one object to another; for example, a pod is bound to a node by a scheduler Deprecated in 17, please use the bindings subresource of pods instead'}
				mandatory
					io_k8s_api_core_v1_Binding_target {doc 'The target object that you want to bind to the standard object'}
						optional
							String io_k8s_api_core_v1_Binding_target_apiVersion {doc 'API version of the referent'}
							String io_k8s_api_core_v1_Binding_target_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
							String io_k8s_api_core_v1_Binding_target_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							String io_k8s_api_core_v1_Binding_target_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							String io_k8s_api_core_v1_Binding_target_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
							String io_k8s_api_core_v1_Binding_target_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_Binding_target_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
				optional
					String io_k8s_api_core_v1_Binding_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_Binding_kind {default 'Binding', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_Binding_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_core_v1_Binding_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_core_v1_Binding_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_Binding_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_Binding_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_Binding_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_Binding_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_core_v1_Binding_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_core_v1_Binding_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_Binding_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_Binding_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_Binding_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_core_v1_Binding_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_core_v1_Binding_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_core_v1_Binding_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_core_v1_Binding_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_Binding_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_Binding_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_core_v1_Binding_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_core_v1_Binding_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_core_v1_Binding_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_core_v1_Binding_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_core_v1_Binding_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_core_v1_Binding_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_core_v1_Binding_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_core_v1_Binding_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_core_v1_Binding_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_core_v1_Binding_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_core_v1_Binding_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_core_v1_Binding_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_Binding_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_core_v1_Binding_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_core_v1_Binding_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_Binding_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_Binding_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_Binding_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_Binding_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_core_v1_Binding_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_core_v1_Binding_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_core_v1_Binding_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_Binding_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_core_v1_Binding_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
			io_k8s_api_core_v1_CSIPersistentVolumeSource {doc 'Represents storage that is managed by an external CSI volume driver (Beta feature)'}
				mandatory
					String io_k8s_api_core_v1_CSIPersistentVolumeSource_driver {doc 'driver is the name of the driver to use for this volume Required'}
					String io_k8s_api_core_v1_CSIPersistentVolumeSource_volumeHandle {doc 'volumeHandle is the unique volume name returned by the CSI volume plugins CreateVolume to refer to the volume on all subsequent calls Required'}
				optional
					io_k8s_api_core_v1_CSIPersistentVolumeSource_controllerExpandSecretRef {doc 'controllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
						optional
							String io_k8s_api_core_v1_CSIPersistentVolumeSource_controllerExpandSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
							String io_k8s_api_core_v1_CSIPersistentVolumeSource_controllerExpandSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
					io_k8s_api_core_v1_CSIPersistentVolumeSource_controllerPublishSecretRef {doc 'controllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
						optional
							String io_k8s_api_core_v1_CSIPersistentVolumeSource_controllerPublishSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
							String io_k8s_api_core_v1_CSIPersistentVolumeSource_controllerPublishSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
					io_k8s_api_core_v1_CSIPersistentVolumeSource_fsType {doc 'fsType to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs'}
						alternative
							io_k8s_api_core_v1_CSIPersistentVolumeSource_fsType_xfs {doc 'Specific value: xfs'}
							io_k8s_api_core_v1_CSIPersistentVolumeSource_fsType_ext4 {doc 'Specific value: ext4'}
							io_k8s_api_core_v1_CSIPersistentVolumeSource_fsType_ntfs {doc 'Specific value: ntfs'}
					io_k8s_api_core_v1_CSIPersistentVolumeSource_nodeExpandSecretRef {doc 'nodeExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeExpandVolume call This field is optional, may be omitted if no secret is required If the secret object contains more than one secret, all secrets are passed'}
						optional
							String io_k8s_api_core_v1_CSIPersistentVolumeSource_nodeExpandSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
							String io_k8s_api_core_v1_CSIPersistentVolumeSource_nodeExpandSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
					io_k8s_api_core_v1_CSIPersistentVolumeSource_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
						optional
							String io_k8s_api_core_v1_CSIPersistentVolumeSource_nodePublishSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
							String io_k8s_api_core_v1_CSIPersistentVolumeSource_nodePublishSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
					io_k8s_api_core_v1_CSIPersistentVolumeSource_nodeStageSecretRef {doc 'nodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
						optional
							String io_k8s_api_core_v1_CSIPersistentVolumeSource_nodeStageSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
							String io_k8s_api_core_v1_CSIPersistentVolumeSource_nodeStageSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
					io_k8s_api_core_v1_CSIPersistentVolumeSource_readOnly {default false, doc 'readOnly value to pass to ControllerPublishVolumeRequest Defaults to false (read/write)'}
					io_k8s_api_core_v1_CSIPersistentVolumeSource_volumeAttributes cardinality [1..*] {doc 'volumeAttributes of the volume to publish'}
						mandatory
							String io_k8s_api_core_v1_CSIPersistentVolumeSource_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_CSIVolumeSource {doc 'Represents a source location of a volume to mount, managed by an external CSI driver'}
				mandatory
					String io_k8s_api_core_v1_CSIVolumeSource_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
				optional
					String io_k8s_api_core_v1_CSIVolumeSource_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
					io_k8s_api_core_v1_CSIVolumeSource_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
						optional
							String io_k8s_api_core_v1_CSIVolumeSource_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
					io_k8s_api_core_v1_CSIVolumeSource_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
					io_k8s_api_core_v1_CSIVolumeSource_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
						mandatory
							String io_k8s_api_core_v1_CSIVolumeSource_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_Capabilities {doc 'Adds and removes POSIX capabilities from running containers'}
				optional
					io_k8s_api_core_v1_Capabilities_add cardinality [1..*] {doc 'Added capabilities'}
						mandatory
							String io_k8s_api_core_v1_Capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_Capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
						mandatory
							String io_k8s_api_core_v1_Capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_CephFSPersistentVolumeSource {doc 'Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling'}
				mandatory
					io_k8s_api_core_v1_CephFSPersistentVolumeSource_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
						mandatory
							String io_k8s_api_core_v1_CephFSPersistentVolumeSource_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					String io_k8s_api_core_v1_CephFSPersistentVolumeSource_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
					io_k8s_api_core_v1_CephFSPersistentVolumeSource_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
					String io_k8s_api_core_v1_CephFSPersistentVolumeSource_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
					io_k8s_api_core_v1_CephFSPersistentVolumeSource_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
						optional
							String io_k8s_api_core_v1_CephFSPersistentVolumeSource_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
							String io_k8s_api_core_v1_CephFSPersistentVolumeSource_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
					String io_k8s_api_core_v1_CephFSPersistentVolumeSource_user {doc 'user is Optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
			io_k8s_api_core_v1_CephFSVolumeSource {doc 'Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling'}
				mandatory
					io_k8s_api_core_v1_CephFSVolumeSource_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
						mandatory
							String io_k8s_api_core_v1_CephFSVolumeSource_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					String io_k8s_api_core_v1_CephFSVolumeSource_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
					io_k8s_api_core_v1_CephFSVolumeSource_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
					String io_k8s_api_core_v1_CephFSVolumeSource_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
					io_k8s_api_core_v1_CephFSVolumeSource_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
						optional
							String io_k8s_api_core_v1_CephFSVolumeSource_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
					String io_k8s_api_core_v1_CephFSVolumeSource_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
			io_k8s_api_core_v1_CinderPersistentVolumeSource {doc 'Represents a cinder volume resource in Openstack A Cinder volume must exist before mounting to a container The volume must also be in the same region as the kubelet Cinder volumes support ownership management and SELinux relabeling'}
				mandatory
					String io_k8s_api_core_v1_CinderPersistentVolumeSource_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
				optional
					io_k8s_api_core_v1_CinderPersistentVolumeSource_fsType {doc 'fsType Filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
						alternative
							io_k8s_api_core_v1_CinderPersistentVolumeSource_fsType_xfs {doc 'Specific value: xfs'}
							io_k8s_api_core_v1_CinderPersistentVolumeSource_fsType_ext4 {default, doc 'Specific value: ext4'}
							io_k8s_api_core_v1_CinderPersistentVolumeSource_fsType_ntfs {doc 'Specific value: ntfs'}
					io_k8s_api_core_v1_CinderPersistentVolumeSource_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
					io_k8s_api_core_v1_CinderPersistentVolumeSource_secretRef {doc 'secretRef is Optional: points to a secret object containing parameters used to connect to OpenStack'}
						optional
							String io_k8s_api_core_v1_CinderPersistentVolumeSource_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
							String io_k8s_api_core_v1_CinderPersistentVolumeSource_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
			io_k8s_api_core_v1_CinderVolumeSource {doc 'Represents a cinder volume resource in Openstack A Cinder volume must exist before mounting to a container The volume must also be in the same region as the kubelet Cinder volumes support ownership management and SELinux relabeling'}
				mandatory
					String io_k8s_api_core_v1_CinderVolumeSource_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
				optional
					io_k8s_api_core_v1_CinderVolumeSource_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
						alternative
							io_k8s_api_core_v1_CinderVolumeSource_fsType_xfs {doc 'Specific value: xfs'}
							io_k8s_api_core_v1_CinderVolumeSource_fsType_ext4 {default, doc 'Specific value: ext4'}
							io_k8s_api_core_v1_CinderVolumeSource_fsType_ntfs {doc 'Specific value: ntfs'}
					io_k8s_api_core_v1_CinderVolumeSource_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
					io_k8s_api_core_v1_CinderVolumeSource_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
						optional
							String io_k8s_api_core_v1_CinderVolumeSource_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
			io_k8s_api_core_v1_ClaimSource {doc 'ClaimSource describes a reference to a ResourceClaimExactly one of these fields should be set  Consumers of this type must treat an empty object as if it has an unknown value'}
				optional
					io_k8s_api_core_v1_ClaimSource_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
						mandatory
							String io_k8s_api_core_v1_ClaimSource_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
					io_k8s_api_core_v1_ClaimSource_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
						mandatory
							String io_k8s_api_core_v1_ClaimSource_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
			io_k8s_api_core_v1_ClientIPConfig {doc 'ClientIPConfig represents the configurations of Client IP based session affinity'}
				optional
					Integer io_k8s_api_core_v1_ClientIPConfig_timeoutSeconds {default 10800, doc 'timeoutSeconds specifies the seconds of ClientIP type session sticky time The value must be >0 && <=86400(for 1 day) if ServiceAffinity == ClientIP Default value is 10800(for 3 hours)'}
			io_k8s_api_core_v1_ClusterTrustBundleProjection {doc 'ClusterTrustBundleProjection describes how to select a set of ClusterTrustBundle objects and project their contents into the pod filesystem'}
				mandatory
					String io_k8s_api_core_v1_ClusterTrustBundleProjection_path {doc 'Relative path from the volume root to write the bundle'}
				optional
					io_k8s_api_core_v1_ClusterTrustBundleProjection_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
						optional
							io_k8s_api_core_v1_ClusterTrustBundleProjection_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_core_v1_ClusterTrustBundleProjection_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_core_v1_ClusterTrustBundleProjection_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_core_v1_ClusterTrustBundleProjection_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_core_v1_ClusterTrustBundleProjection_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_core_v1_ClusterTrustBundleProjection_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_core_v1_ClusterTrustBundleProjection_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_core_v1_ClusterTrustBundleProjection_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_core_v1_ClusterTrustBundleProjection_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_ClusterTrustBundleProjection_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_core_v1_ClusterTrustBundleProjection_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_ClusterTrustBundleProjection_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					String io_k8s_api_core_v1_ClusterTrustBundleProjection_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
					io_k8s_api_core_v1_ClusterTrustBundleProjection_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
					String io_k8s_api_core_v1_ClusterTrustBundleProjection_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
			io_k8s_api_core_v1_ComponentCondition {doc 'Information about the condition of a component'}
				mandatory
					io_k8s_api_core_v1_ComponentCondition_status {doc 'Status of the condition for a component Valid values for Healthy: True, False, or Unknown'}
						alternative
							io_k8s_api_core_v1_ComponentCondition_status_Unknown {doc 'Specific value: Unknown'}
							io_k8s_api_core_v1_ComponentCondition_status_False {doc 'Specific value: False'}
							io_k8s_api_core_v1_ComponentCondition_status_True {doc 'Specific value: True'}
					String io_k8s_api_core_v1_ComponentCondition_type {doc 'Type of condition for a component Valid value: Healthy'}
				optional
					String io_k8s_api_core_v1_ComponentCondition_error {doc 'Condition error code for a component For example, a health check error code'}
					String io_k8s_api_core_v1_ComponentCondition_message {doc 'Message about the condition for a component For example, information about a health check'}
			io_k8s_api_core_v1_ComponentStatus {doc 'ComponentStatus (and ComponentStatusList) holds the cluster validation info Deprecated: This API is deprecated in v119+'}
				optional
					String io_k8s_api_core_v1_ComponentStatus_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					io_k8s_api_core_v1_ComponentStatus_conditions cardinality [1..*] {doc 'List of component conditions observed'}
						mandatory
							io_k8s_api_core_v1_ComponentStatus_conditions_status {doc 'Status of the condition for a component Valid values for Healthy: True, False, or Unknown'}
								alternative
									io_k8s_api_core_v1_ComponentStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_core_v1_ComponentStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_core_v1_ComponentStatus_conditions_status_True {doc 'Specific value: True'}
							String io_k8s_api_core_v1_ComponentStatus_conditions_type {doc 'Type of condition for a component Valid value: Healthy'}
						optional
							String io_k8s_api_core_v1_ComponentStatus_conditions_error {doc 'Condition error code for a component For example, a health check error code'}
							String io_k8s_api_core_v1_ComponentStatus_conditions_message {doc 'Message about the condition for a component For example, information about a health check'}
					String io_k8s_api_core_v1_ComponentStatus_kind {default 'ComponentStatus', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_ComponentStatus_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_core_v1_ComponentStatus_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_core_v1_ComponentStatus_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_ComponentStatus_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_ComponentStatus_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_ComponentStatus_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_ComponentStatus_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_core_v1_ComponentStatus_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_core_v1_ComponentStatus_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_ComponentStatus_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_ComponentStatus_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_ComponentStatus_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_core_v1_ComponentStatus_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_core_v1_ComponentStatus_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_core_v1_ComponentStatus_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_core_v1_ComponentStatus_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_ComponentStatus_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_ComponentStatus_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_core_v1_ComponentStatus_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_core_v1_ComponentStatus_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_core_v1_ComponentStatus_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_core_v1_ComponentStatus_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_core_v1_ComponentStatus_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_core_v1_ComponentStatus_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_core_v1_ComponentStatus_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_core_v1_ComponentStatus_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_core_v1_ComponentStatus_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_core_v1_ComponentStatus_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_core_v1_ComponentStatus_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_core_v1_ComponentStatus_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_ComponentStatus_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_core_v1_ComponentStatus_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_core_v1_ComponentStatus_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_ComponentStatus_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_ComponentStatus_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_ComponentStatus_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_ComponentStatus_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_core_v1_ComponentStatus_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_core_v1_ComponentStatus_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_core_v1_ComponentStatus_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_ComponentStatus_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_core_v1_ComponentStatus_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
			io_k8s_api_core_v1_ComponentStatusList {doc 'Status of all the conditions for the component as a list of ComponentStatus objects Deprecated: This API is deprecated in v119+'}
				mandatory
					io_k8s_api_core_v1_ComponentStatusList_items cardinality [1..*] {doc 'List of ComponentStatus objects'}
						optional
							String io_k8s_api_core_v1_ComponentStatusList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							io_k8s_api_core_v1_ComponentStatusList_items_conditions cardinality [1..*] {doc 'List of component conditions observed'}
								mandatory
									io_k8s_api_core_v1_ComponentStatusList_items_conditions_status {doc 'Status of the condition for a component Valid values for Healthy: True, False, or Unknown'}
										alternative
											io_k8s_api_core_v1_ComponentStatusList_items_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_core_v1_ComponentStatusList_items_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_core_v1_ComponentStatusList_items_conditions_status_True {doc 'Specific value: True'}
									String io_k8s_api_core_v1_ComponentStatusList_items_conditions_type {doc 'Type of condition for a component Valid value: Healthy'}
								optional
									String io_k8s_api_core_v1_ComponentStatusList_items_conditions_error {doc 'Condition error code for a component For example, a health check error code'}
									String io_k8s_api_core_v1_ComponentStatusList_items_conditions_message {doc 'Message about the condition for a component For example, information about a health check'}
							String io_k8s_api_core_v1_ComponentStatusList_items_kind {default 'ComponentStatus', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_core_v1_ComponentStatusList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_core_v1_ComponentStatusList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_core_v1_ComponentStatusList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_ComponentStatusList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_ComponentStatusList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_ComponentStatusList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_ComponentStatusList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_core_v1_ComponentStatusList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_core_v1_ComponentStatusList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_ComponentStatusList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_ComponentStatusList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_ComponentStatusList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_core_v1_ComponentStatusList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_core_v1_ComponentStatusList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_core_v1_ComponentStatusList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_core_v1_ComponentStatusList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_ComponentStatusList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_ComponentStatusList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_core_v1_ComponentStatusList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_core_v1_ComponentStatusList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_core_v1_ComponentStatusList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_core_v1_ComponentStatusList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_core_v1_ComponentStatusList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_core_v1_ComponentStatusList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_core_v1_ComponentStatusList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_core_v1_ComponentStatusList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_core_v1_ComponentStatusList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_core_v1_ComponentStatusList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_core_v1_ComponentStatusList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_core_v1_ComponentStatusList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_ComponentStatusList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_ComponentStatusList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_core_v1_ComponentStatusList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_ComponentStatusList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_core_v1_ComponentStatusList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_core_v1_ComponentStatusList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_core_v1_ComponentStatusList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_core_v1_ComponentStatusList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_core_v1_ComponentStatusList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_core_v1_ComponentStatusList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_ComponentStatusList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_core_v1_ComponentStatusList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
				optional
					String io_k8s_api_core_v1_ComponentStatusList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_ComponentStatusList_kind {default 'ComponentStatusList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_ComponentStatusList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_core_v1_ComponentStatusList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_core_v1_ComponentStatusList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_core_v1_ComponentStatusList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_ComponentStatusList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_core_v1_ConfigMap {doc 'ConfigMap holds configuration data for pods to consume'}
				optional
					String io_k8s_api_core_v1_ConfigMap_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					io_k8s_api_core_v1_ConfigMap_binaryData cardinality [1..*] {doc 'BinaryData contains the binary data Each key must consist of alphanumeric characters, _-_, ___ or __ BinaryData can contain byte sequences that are not in the UTF-8 range The keys stored in BinaryData must not overlap with the ones in the Data field, this is enforced during validation process Using this field will require 110+ apiserver and kubelet'}
						mandatory
							String io_k8s_api_core_v1_ConfigMap_binaryData_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_ConfigMap_data cardinality [1..*] {doc 'Data contains the configuration data Each key must consist of alphanumeric characters, _-_, ___ or __ Values with non-UTF-8 byte sequences must use the BinaryData field The keys stored in Data must not overlap with the keys in the BinaryData field, this is enforced during validation process'}
						mandatory
							String io_k8s_api_core_v1_ConfigMap_data_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_ConfigMap_immutable {doc 'Immutable, if set to true, ensures that data stored in the ConfigMap cannot be updated (only object metadata can be modified) If not set to true, the field can be modified at any time Defaulted to nil'}
					String io_k8s_api_core_v1_ConfigMap_kind {default 'ConfigMap', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_ConfigMap_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_core_v1_ConfigMap_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_core_v1_ConfigMap_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_ConfigMap_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_ConfigMap_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_ConfigMap_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_ConfigMap_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_core_v1_ConfigMap_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_core_v1_ConfigMap_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_ConfigMap_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_ConfigMap_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_ConfigMap_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_core_v1_ConfigMap_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_core_v1_ConfigMap_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_core_v1_ConfigMap_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_core_v1_ConfigMap_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_ConfigMap_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_ConfigMap_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_core_v1_ConfigMap_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_core_v1_ConfigMap_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_core_v1_ConfigMap_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_core_v1_ConfigMap_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_core_v1_ConfigMap_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_core_v1_ConfigMap_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_core_v1_ConfigMap_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_core_v1_ConfigMap_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_core_v1_ConfigMap_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_core_v1_ConfigMap_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_core_v1_ConfigMap_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_core_v1_ConfigMap_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_ConfigMap_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_core_v1_ConfigMap_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_core_v1_ConfigMap_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_ConfigMap_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_ConfigMap_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_ConfigMap_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_ConfigMap_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_core_v1_ConfigMap_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_core_v1_ConfigMap_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_core_v1_ConfigMap_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_ConfigMap_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_core_v1_ConfigMap_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
			io_k8s_api_core_v1_ConfigMapEnvSource {doc 'ConfigMapEnvSource selects a ConfigMap to populate the environment variables withThe contents of the target ConfigMap_s Data field will represent the key-value pairs as environment variables'}
				optional
					String io_k8s_api_core_v1_ConfigMapEnvSource_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
					io_k8s_api_core_v1_ConfigMapEnvSource_optional {doc 'Specify whether the ConfigMap must be defined'}
			io_k8s_api_core_v1_ConfigMapKeySelector {doc 'Selects a key from a ConfigMap'}
				mandatory
					String io_k8s_api_core_v1_ConfigMapKeySelector_key {doc 'The key to select'}
				optional
					String io_k8s_api_core_v1_ConfigMapKeySelector_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
					io_k8s_api_core_v1_ConfigMapKeySelector_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
			io_k8s_api_core_v1_ConfigMapList {doc 'ConfigMapList is a resource containing a list of ConfigMap objects'}
				mandatory
					io_k8s_api_core_v1_ConfigMapList_items cardinality [1..*] {doc 'Items is the list of ConfigMaps'}
						optional
							String io_k8s_api_core_v1_ConfigMapList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							io_k8s_api_core_v1_ConfigMapList_items_binaryData cardinality [1..*] {doc 'BinaryData contains the binary data Each key must consist of alphanumeric characters, _-_, ___ or __ BinaryData can contain byte sequences that are not in the UTF-8 range The keys stored in BinaryData must not overlap with the ones in the Data field, this is enforced during validation process Using this field will require 110+ apiserver and kubelet'}
								mandatory
									String io_k8s_api_core_v1_ConfigMapList_items_binaryData_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_ConfigMapList_items_data cardinality [1..*] {doc 'Data contains the configuration data Each key must consist of alphanumeric characters, _-_, ___ or __ Values with non-UTF-8 byte sequences must use the BinaryData field The keys stored in Data must not overlap with the keys in the BinaryData field, this is enforced during validation process'}
								mandatory
									String io_k8s_api_core_v1_ConfigMapList_items_data_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_ConfigMapList_items_immutable {doc 'Immutable, if set to true, ensures that data stored in the ConfigMap cannot be updated (only object metadata can be modified) If not set to true, the field can be modified at any time Defaulted to nil'}
							String io_k8s_api_core_v1_ConfigMapList_items_kind {default 'ConfigMap', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_core_v1_ConfigMapList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_core_v1_ConfigMapList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_core_v1_ConfigMapList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_ConfigMapList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_ConfigMapList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_ConfigMapList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_ConfigMapList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_core_v1_ConfigMapList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_core_v1_ConfigMapList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_ConfigMapList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_ConfigMapList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_ConfigMapList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_core_v1_ConfigMapList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_core_v1_ConfigMapList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_core_v1_ConfigMapList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_core_v1_ConfigMapList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_ConfigMapList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_ConfigMapList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_core_v1_ConfigMapList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_core_v1_ConfigMapList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_core_v1_ConfigMapList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_core_v1_ConfigMapList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_core_v1_ConfigMapList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_core_v1_ConfigMapList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_core_v1_ConfigMapList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_core_v1_ConfigMapList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_core_v1_ConfigMapList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_core_v1_ConfigMapList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_core_v1_ConfigMapList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_core_v1_ConfigMapList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_ConfigMapList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_ConfigMapList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_core_v1_ConfigMapList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_ConfigMapList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_core_v1_ConfigMapList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_core_v1_ConfigMapList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_core_v1_ConfigMapList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_core_v1_ConfigMapList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_core_v1_ConfigMapList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_core_v1_ConfigMapList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_ConfigMapList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_core_v1_ConfigMapList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
				optional
					String io_k8s_api_core_v1_ConfigMapList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_ConfigMapList_kind {default 'ConfigMapList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_ConfigMapList_metadata {doc 'More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_core_v1_ConfigMapList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_core_v1_ConfigMapList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_core_v1_ConfigMapList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_ConfigMapList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_core_v1_ConfigMapNodeConfigSource {doc 'ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node This API is deprecated since 122: https:_gitk8sio/enhancements/keps/sig-node/281-dynamic-kubelet-configuration'}
				mandatory
					String io_k8s_api_core_v1_ConfigMapNodeConfigSource_kubeletConfigKey {doc 'KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases'}
					String io_k8s_api_core_v1_ConfigMapNodeConfigSource_name {doc 'Name is the metadataname of the referenced ConfigMap This field is required in all cases'}
					String io_k8s_api_core_v1_ConfigMapNodeConfigSource_namespace {doc 'Namespace is the metadatanamespace of the referenced ConfigMap This field is required in all cases'}
				optional
					String io_k8s_api_core_v1_ConfigMapNodeConfigSource_resourceVersion {doc 'ResourceVersion is the metadataResourceVersion of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
					String io_k8s_api_core_v1_ConfigMapNodeConfigSource_uid {doc 'UID is the metadataUID of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
			io_k8s_api_core_v1_ConfigMapProjection {doc 'Adapts a ConfigMap into a projected volumeThe contents of the target ConfigMap_s Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths Note that this is identical to a configmap volume source without the default mode'}
				optional
					io_k8s_api_core_v1_ConfigMapProjection_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
						mandatory
							String io_k8s_api_core_v1_ConfigMapProjection_items_key {doc 'key is the key to project'}
							String io_k8s_api_core_v1_ConfigMapProjection_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
						optional
							Integer io_k8s_api_core_v1_ConfigMapProjection_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
					String io_k8s_api_core_v1_ConfigMapProjection_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
					io_k8s_api_core_v1_ConfigMapProjection_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
			io_k8s_api_core_v1_ConfigMapVolumeSource {doc 'Adapts a ConfigMap into a volumeThe contents of the target ConfigMap_s Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths ConfigMap volumes support ownership management and SELinux relabeling'}
				optional
					Integer io_k8s_api_core_v1_ConfigMapVolumeSource_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
					io_k8s_api_core_v1_ConfigMapVolumeSource_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
						mandatory
							String io_k8s_api_core_v1_ConfigMapVolumeSource_items_key {doc 'key is the key to project'}
							String io_k8s_api_core_v1_ConfigMapVolumeSource_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
						optional
							Integer io_k8s_api_core_v1_ConfigMapVolumeSource_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
					String io_k8s_api_core_v1_ConfigMapVolumeSource_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
					io_k8s_api_core_v1_ConfigMapVolumeSource_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
			io_k8s_api_core_v1_Container {doc 'A single application container that you want to run within a pod'}
				mandatory
					String io_k8s_api_core_v1_Container_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
				optional
					io_k8s_api_core_v1_Container_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
						mandatory
							String io_k8s_api_core_v1_Container_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_Container_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
						mandatory
							String io_k8s_api_core_v1_Container_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_Container_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
						mandatory
							String io_k8s_api_core_v1_Container_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
						optional
							String io_k8s_api_core_v1_Container_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
							io_k8s_api_core_v1_Container_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
								optional
									io_k8s_api_core_v1_Container_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
										mandatory
											String io_k8s_api_core_v1_Container_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
										optional
											String io_k8s_api_core_v1_Container_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_Container_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
									io_k8s_api_core_v1_Container_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
										mandatory
											String io_k8s_api_core_v1_Container_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
										optional
											String io_k8s_api_core_v1_Container_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
									io_k8s_api_core_v1_Container_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
										mandatory
											String io_k8s_api_core_v1_Container_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
										optional
											String io_k8s_api_core_v1_Container_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
											io_k8s_api_core_v1_Container_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
												alternative
													String io_k8s_api_core_v1_Container_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_Container_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_Container_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
										mandatory
											String io_k8s_api_core_v1_Container_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
										optional
											String io_k8s_api_core_v1_Container_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_Container_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
					io_k8s_api_core_v1_Container_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
						optional
							io_k8s_api_core_v1_Container_envFrom_configMapRef {doc 'The ConfigMap to select from'}
								optional
									String io_k8s_api_core_v1_Container_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_core_v1_Container_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
							String io_k8s_api_core_v1_Container_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
							io_k8s_api_core_v1_Container_envFrom_secretRef {doc 'The Secret to select from'}
								optional
									String io_k8s_api_core_v1_Container_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_core_v1_Container_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
					String io_k8s_api_core_v1_Container_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
					io_k8s_api_core_v1_Container_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
						alternative
							io_k8s_api_core_v1_Container_imagePullPolicy_Never {doc 'Specific value: Never'}
							io_k8s_api_core_v1_Container_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
							io_k8s_api_core_v1_Container_imagePullPolicy_Always {doc 'Specific value: Always'}
					io_k8s_api_core_v1_Container_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
						optional
							io_k8s_api_core_v1_Container_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
								optional
									io_k8s_api_core_v1_Container_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
										optional
											io_k8s_api_core_v1_Container_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
												mandatory
													String io_k8s_api_core_v1_Container_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_Container_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
										mandatory
											io_k8s_api_core_v1_Container_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_Container_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_Container_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_Container_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
											io_k8s_api_core_v1_Container_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
												mandatory
													String io_k8s_api_core_v1_Container_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
													String io_k8s_api_core_v1_Container_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
											String io_k8s_api_core_v1_Container_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
											String io_k8s_api_core_v1_Container_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
									io_k8s_api_core_v1_Container_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
										mandatory
											Integer io_k8s_api_core_v1_Container_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
									io_k8s_api_core_v1_Container_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
										mandatory
											io_k8s_api_core_v1_Container_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_Container_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_Container_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_Container_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
							io_k8s_api_core_v1_Container_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
								optional
									io_k8s_api_core_v1_Container_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
										optional
											io_k8s_api_core_v1_Container_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
												mandatory
													String io_k8s_api_core_v1_Container_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_Container_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
										mandatory
											io_k8s_api_core_v1_Container_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_Container_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_Container_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_Container_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
											io_k8s_api_core_v1_Container_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
												mandatory
													String io_k8s_api_core_v1_Container_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
													String io_k8s_api_core_v1_Container_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
											String io_k8s_api_core_v1_Container_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
											String io_k8s_api_core_v1_Container_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
									io_k8s_api_core_v1_Container_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
										mandatory
											Integer io_k8s_api_core_v1_Container_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
									io_k8s_api_core_v1_Container_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
										mandatory
											io_k8s_api_core_v1_Container_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_Container_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_Container_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_Container_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
					io_k8s_api_core_v1_Container_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
						optional
							io_k8s_api_core_v1_Container_livenessProbe_exec {doc 'Exec specifies the action to take'}
								optional
									io_k8s_api_core_v1_Container_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
										mandatory
											String io_k8s_api_core_v1_Container_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							Integer io_k8s_api_core_v1_Container_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
							io_k8s_api_core_v1_Container_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
								mandatory
									Integer io_k8s_api_core_v1_Container_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
								optional
									String io_k8s_api_core_v1_Container_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
							io_k8s_api_core_v1_Container_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
								mandatory
									io_k8s_api_core_v1_Container_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
										alternative
											String io_k8s_api_core_v1_Container_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_Container_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
								optional
									String io_k8s_api_core_v1_Container_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
									io_k8s_api_core_v1_Container_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
										mandatory
											String io_k8s_api_core_v1_Container_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
											String io_k8s_api_core_v1_Container_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
									String io_k8s_api_core_v1_Container_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
									String io_k8s_api_core_v1_Container_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
							Integer io_k8s_api_core_v1_Container_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
							Integer io_k8s_api_core_v1_Container_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
							Integer io_k8s_api_core_v1_Container_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
							io_k8s_api_core_v1_Container_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
								mandatory
									io_k8s_api_core_v1_Container_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
										alternative
											String io_k8s_api_core_v1_Container_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_Container_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
								optional
									String io_k8s_api_core_v1_Container_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
							Integer io_k8s_api_core_v1_Container_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
							Integer io_k8s_api_core_v1_Container_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
					io_k8s_api_core_v1_Container_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
						mandatory
							Integer io_k8s_api_core_v1_Container_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
						optional
							String io_k8s_api_core_v1_Container_ports_hostIP {doc 'What host IP to bind the external port to'}
							Integer io_k8s_api_core_v1_Container_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
							String io_k8s_api_core_v1_Container_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
							io_k8s_api_core_v1_Container_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
								alternative
									io_k8s_api_core_v1_Container_ports_protocol_SCTP {doc 'Specific value: SCTP'}
									io_k8s_api_core_v1_Container_ports_protocol_TCP {default, doc 'Specific value: TCP'}
									io_k8s_api_core_v1_Container_ports_protocol_UDP {doc 'Specific value: UDP'}
					io_k8s_api_core_v1_Container_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
						optional
							io_k8s_api_core_v1_Container_readinessProbe_exec {doc 'Exec specifies the action to take'}
								optional
									io_k8s_api_core_v1_Container_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
										mandatory
											String io_k8s_api_core_v1_Container_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							Integer io_k8s_api_core_v1_Container_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
							io_k8s_api_core_v1_Container_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
								mandatory
									Integer io_k8s_api_core_v1_Container_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
								optional
									String io_k8s_api_core_v1_Container_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
							io_k8s_api_core_v1_Container_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
								mandatory
									io_k8s_api_core_v1_Container_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
										alternative
											String io_k8s_api_core_v1_Container_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_Container_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
								optional
									String io_k8s_api_core_v1_Container_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
									io_k8s_api_core_v1_Container_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
										mandatory
											String io_k8s_api_core_v1_Container_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
											String io_k8s_api_core_v1_Container_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
									String io_k8s_api_core_v1_Container_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
									String io_k8s_api_core_v1_Container_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
							Integer io_k8s_api_core_v1_Container_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
							Integer io_k8s_api_core_v1_Container_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
							Integer io_k8s_api_core_v1_Container_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
							io_k8s_api_core_v1_Container_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
								mandatory
									io_k8s_api_core_v1_Container_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
										alternative
											String io_k8s_api_core_v1_Container_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_Container_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
								optional
									String io_k8s_api_core_v1_Container_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
							Integer io_k8s_api_core_v1_Container_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
							Integer io_k8s_api_core_v1_Container_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
					io_k8s_api_core_v1_Container_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
						mandatory
							io_k8s_api_core_v1_Container_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
								alternative
									io_k8s_api_core_v1_Container_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
									io_k8s_api_core_v1_Container_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
							String io_k8s_api_core_v1_Container_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
					io_k8s_api_core_v1_Container_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
						optional
							io_k8s_api_core_v1_Container_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
								mandatory
									String io_k8s_api_core_v1_Container_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
							io_k8s_api_core_v1_Container_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
								alternative
									String io_k8s_api_core_v1_Container_resources_limits_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_Container_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_Container_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
								alternative
									String io_k8s_api_core_v1_Container_resources_requests_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_Container_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
					String io_k8s_api_core_v1_Container_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
					io_k8s_api_core_v1_Container_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
						optional
							io_k8s_api_core_v1_Container_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
							io_k8s_api_core_v1_Container_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
								mandatory
									io_k8s_api_core_v1_Container_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
										alternative
											io_k8s_api_core_v1_Container_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
											io_k8s_api_core_v1_Container_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
											io_k8s_api_core_v1_Container_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
								optional
									io_k8s_api_core_v1_Container_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
										mandatory
											io_k8s_api_core_v1_Container_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							io_k8s_api_core_v1_Container_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
								optional
									io_k8s_api_core_v1_Container_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
										mandatory
											String io_k8s_api_core_v1_Container_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_Container_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
										mandatory
											String io_k8s_api_core_v1_Container_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_Container_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
							io_k8s_api_core_v1_Container_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
								mandatory
									String io_k8s_api_core_v1_Container_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							io_k8s_api_core_v1_Container_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
							io_k8s_api_core_v1_Container_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
								mandatory
									Integer io_k8s_api_core_v1_Container_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
							io_k8s_api_core_v1_Container_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
							io_k8s_api_core_v1_Container_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
								mandatory
									Integer io_k8s_api_core_v1_Container_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
							io_k8s_api_core_v1_Container_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
								optional
									String io_k8s_api_core_v1_Container_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
									String io_k8s_api_core_v1_Container_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
									String io_k8s_api_core_v1_Container_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
									String io_k8s_api_core_v1_Container_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
							io_k8s_api_core_v1_Container_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
								mandatory
									io_k8s_api_core_v1_Container_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
										alternative
											io_k8s_api_core_v1_Container_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
											io_k8s_api_core_v1_Container_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
											io_k8s_api_core_v1_Container_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
								optional
									io_k8s_api_core_v1_Container_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
										mandatory
											io_k8s_api_core_v1_Container_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							io_k8s_api_core_v1_Container_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
								optional
									String io_k8s_api_core_v1_Container_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
									String io_k8s_api_core_v1_Container_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
									io_k8s_api_core_v1_Container_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
									String io_k8s_api_core_v1_Container_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
					io_k8s_api_core_v1_Container_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
						optional
							io_k8s_api_core_v1_Container_startupProbe_exec {doc 'Exec specifies the action to take'}
								optional
									io_k8s_api_core_v1_Container_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
										mandatory
											String io_k8s_api_core_v1_Container_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							Integer io_k8s_api_core_v1_Container_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
							io_k8s_api_core_v1_Container_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
								mandatory
									Integer io_k8s_api_core_v1_Container_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
								optional
									String io_k8s_api_core_v1_Container_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
							io_k8s_api_core_v1_Container_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
								mandatory
									io_k8s_api_core_v1_Container_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
										alternative
											String io_k8s_api_core_v1_Container_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_Container_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
								optional
									String io_k8s_api_core_v1_Container_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
									io_k8s_api_core_v1_Container_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
										mandatory
											String io_k8s_api_core_v1_Container_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
											String io_k8s_api_core_v1_Container_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
									String io_k8s_api_core_v1_Container_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
									String io_k8s_api_core_v1_Container_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
							Integer io_k8s_api_core_v1_Container_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
							Integer io_k8s_api_core_v1_Container_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
							Integer io_k8s_api_core_v1_Container_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
							io_k8s_api_core_v1_Container_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
								mandatory
									io_k8s_api_core_v1_Container_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
										alternative
											String io_k8s_api_core_v1_Container_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_Container_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
								optional
									String io_k8s_api_core_v1_Container_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
							Integer io_k8s_api_core_v1_Container_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
							Integer io_k8s_api_core_v1_Container_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
					io_k8s_api_core_v1_Container_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
					io_k8s_api_core_v1_Container_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
					String io_k8s_api_core_v1_Container_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
					String io_k8s_api_core_v1_Container_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
					io_k8s_api_core_v1_Container_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
					io_k8s_api_core_v1_Container_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
						mandatory
							String io_k8s_api_core_v1_Container_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
							String io_k8s_api_core_v1_Container_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
					io_k8s_api_core_v1_Container_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
						mandatory
							String io_k8s_api_core_v1_Container_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
							String io_k8s_api_core_v1_Container_volumeMounts_name {doc 'This must match the Name of a Volume'}
						optional
							String io_k8s_api_core_v1_Container_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
							io_k8s_api_core_v1_Container_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
							String io_k8s_api_core_v1_Container_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
							String io_k8s_api_core_v1_Container_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
							String io_k8s_api_core_v1_Container_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
					String io_k8s_api_core_v1_Container_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
			io_k8s_api_core_v1_ContainerImage {doc 'Describe a container image'}
				optional
					io_k8s_api_core_v1_ContainerImage_names cardinality [1..*] {doc 'Names by which this image is known eg [kubernetesexample/hyperkube:v107, cloud-vendorregistryexample/cloud-vendor/hyperkube:v107]'}
						mandatory
							String io_k8s_api_core_v1_ContainerImage_names_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					Integer io_k8s_api_core_v1_ContainerImage_sizeBytes {doc 'The size of the image in bytes'}
			io_k8s_api_core_v1_ContainerPort {doc 'ContainerPort represents a network port in a single container'}
				mandatory
					Integer io_k8s_api_core_v1_ContainerPort_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
				optional
					String io_k8s_api_core_v1_ContainerPort_hostIP {doc 'What host IP to bind the external port to'}
					Integer io_k8s_api_core_v1_ContainerPort_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
					String io_k8s_api_core_v1_ContainerPort_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
					io_k8s_api_core_v1_ContainerPort_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
						alternative
							io_k8s_api_core_v1_ContainerPort_protocol_SCTP {doc 'Specific value: SCTP'}
							io_k8s_api_core_v1_ContainerPort_protocol_TCP {default, doc 'Specific value: TCP'}
							io_k8s_api_core_v1_ContainerPort_protocol_UDP {doc 'Specific value: UDP'}
			io_k8s_api_core_v1_ContainerResizePolicy {doc 'ContainerResizePolicy represents resource resize policy for the container'}
				mandatory
					io_k8s_api_core_v1_ContainerResizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
						alternative
							io_k8s_api_core_v1_ContainerResizePolicy_resourceName_memory {doc 'Specific value: memory'}
							io_k8s_api_core_v1_ContainerResizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
					String io_k8s_api_core_v1_ContainerResizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
			io_k8s_api_core_v1_ContainerState {doc 'ContainerState holds a possible state of container Only one of its members may be specified If none of them is specified, the default one is ContainerStateWaiting'}
				optional
					io_k8s_api_core_v1_ContainerState_running {doc 'Details about a running container'}
						optional
							io_k8s_api_core_v1_ContainerState_running_startedAt {doc 'Time at which the container was last (re-)started'}
								optional
									String io_k8s_api_core_v1_ContainerState_running_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					io_k8s_api_core_v1_ContainerState_terminated {doc 'Details about a terminated container'}
						mandatory
							Integer io_k8s_api_core_v1_ContainerState_terminated_exitCode {doc 'Exit status from the last termination of the container'}
						optional
							String io_k8s_api_core_v1_ContainerState_terminated_containerID {doc 'Container_s ID in the format _<type>:_<container_id>_'}
							io_k8s_api_core_v1_ContainerState_terminated_finishedAt {doc 'Time at which the container last terminated'}
								optional
									String io_k8s_api_core_v1_ContainerState_terminated_finishedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_ContainerState_terminated_message {doc 'Message regarding the last termination of the container'}
							String io_k8s_api_core_v1_ContainerState_terminated_reason {doc '(brief) reason from the last termination of the container'}
							Integer io_k8s_api_core_v1_ContainerState_terminated_signal {doc 'Signal from the last termination of the container'}
							io_k8s_api_core_v1_ContainerState_terminated_startedAt {doc 'Time at which previous execution of the container started'}
								optional
									String io_k8s_api_core_v1_ContainerState_terminated_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					io_k8s_api_core_v1_ContainerState_waiting {doc 'Details about a waiting container'}
						optional
							String io_k8s_api_core_v1_ContainerState_waiting_message {doc 'Message regarding why the container is not yet running'}
							String io_k8s_api_core_v1_ContainerState_waiting_reason {doc '(brief) reason the container is not yet running'}
			io_k8s_api_core_v1_ContainerStateRunning {doc 'ContainerStateRunning is a running state of a container'}
				optional
					io_k8s_api_core_v1_ContainerStateRunning_startedAt {doc 'Time at which the container was last (re-)started'}
						optional
							String io_k8s_api_core_v1_ContainerStateRunning_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
			io_k8s_api_core_v1_ContainerStateTerminated {doc 'ContainerStateTerminated is a terminated state of a container'}
				mandatory
					Integer io_k8s_api_core_v1_ContainerStateTerminated_exitCode {doc 'Exit status from the last termination of the container'}
				optional
					String io_k8s_api_core_v1_ContainerStateTerminated_containerID {doc 'Container_s ID in the format _<type>:_<container_id>_'}
					io_k8s_api_core_v1_ContainerStateTerminated_finishedAt {doc 'Time at which the container last terminated'}
						optional
							String io_k8s_api_core_v1_ContainerStateTerminated_finishedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_api_core_v1_ContainerStateTerminated_message {doc 'Message regarding the last termination of the container'}
					String io_k8s_api_core_v1_ContainerStateTerminated_reason {doc '(brief) reason from the last termination of the container'}
					Integer io_k8s_api_core_v1_ContainerStateTerminated_signal {doc 'Signal from the last termination of the container'}
					io_k8s_api_core_v1_ContainerStateTerminated_startedAt {doc 'Time at which previous execution of the container started'}
						optional
							String io_k8s_api_core_v1_ContainerStateTerminated_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
			io_k8s_api_core_v1_ContainerStateWaiting {doc 'ContainerStateWaiting is a waiting state of a container'}
				optional
					String io_k8s_api_core_v1_ContainerStateWaiting_message {doc 'Message regarding why the container is not yet running'}
					String io_k8s_api_core_v1_ContainerStateWaiting_reason {doc '(brief) reason the container is not yet running'}
			io_k8s_api_core_v1_ContainerStatus {doc 'ContainerStatus contains details for the current status of this container'}
				mandatory
					String io_k8s_api_core_v1_ContainerStatus_image {doc 'Image is the name of container image that the container is running The container image may not match the image used in the PodSpec, as it may have been resolved by the runtime More info: https:_kubernetesio/docs/concepts/containers/images'}
					String io_k8s_api_core_v1_ContainerStatus_imageID {doc 'ImageID is the image ID of the container_s image The image ID may not match the image ID of the image used in the PodSpec, as it may have been resolved by the runtime'}
					String io_k8s_api_core_v1_ContainerStatus_name {doc 'Name is a DNS_LABEL representing the unique name of the container Each container in a pod must have a unique name across all container types Cannot be updated'}
					io_k8s_api_core_v1_ContainerStatus_ready {default true, doc 'Ready specifies whether the container is currently passing its readiness check The value will change as readiness probes keep executing If no readiness probes are specified, this field defaults to true once the container is fully started (see Started field)The value is typically used to determine whether a container is ready to accept traffic'}
					Integer io_k8s_api_core_v1_ContainerStatus_restartCount {doc 'RestartCount holds the number of times the container has been restarted Kubelet makes an effort to always increment the value, but there are cases when the state may be lost due to node restarts and then the value may be reset to 0 The value is never negative'}
				optional
					io_k8s_api_core_v1_ContainerStatus_allocatedResources cardinality [1..*] {doc 'AllocatedResources represents the compute resources allocated for this container by the node Kubelet sets this value to ContainerResourcesRequests upon successful pod admission and after successfully admitting desired pod resize'}
						alternative
							String io_k8s_api_core_v1_ContainerStatus_allocatedResources_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_ContainerStatus_allocatedResources_asNumber {doc 'Sub-feature added of type Number'}
					String io_k8s_api_core_v1_ContainerStatus_containerID {doc 'ContainerID is the ID of the container in the format _<type>:_<container_id>_ Where type is a container runtime identifier, returned from Version call of CRI API (for example containerd)'}
					io_k8s_api_core_v1_ContainerStatus_lastState {doc 'LastTerminationState holds the last termination state of the container to help debug container crashes and restarts This field is not populated if the container is still running and RestartCount is 0'}
						optional
							io_k8s_api_core_v1_ContainerStatus_lastState_running {doc 'Details about a running container'}
								optional
									io_k8s_api_core_v1_ContainerStatus_lastState_running_startedAt {doc 'Time at which the container was last (re-)started'}
										optional
											String io_k8s_api_core_v1_ContainerStatus_lastState_running_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_ContainerStatus_lastState_terminated {doc 'Details about a terminated container'}
								mandatory
									Integer io_k8s_api_core_v1_ContainerStatus_lastState_terminated_exitCode {doc 'Exit status from the last termination of the container'}
								optional
									String io_k8s_api_core_v1_ContainerStatus_lastState_terminated_containerID {doc 'Container_s ID in the format _<type>:_<container_id>_'}
									io_k8s_api_core_v1_ContainerStatus_lastState_terminated_finishedAt {doc 'Time at which the container last terminated'}
										optional
											String io_k8s_api_core_v1_ContainerStatus_lastState_terminated_finishedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_ContainerStatus_lastState_terminated_message {doc 'Message regarding the last termination of the container'}
									String io_k8s_api_core_v1_ContainerStatus_lastState_terminated_reason {doc '(brief) reason from the last termination of the container'}
									Integer io_k8s_api_core_v1_ContainerStatus_lastState_terminated_signal {doc 'Signal from the last termination of the container'}
									io_k8s_api_core_v1_ContainerStatus_lastState_terminated_startedAt {doc 'Time at which previous execution of the container started'}
										optional
											String io_k8s_api_core_v1_ContainerStatus_lastState_terminated_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_ContainerStatus_lastState_waiting {doc 'Details about a waiting container'}
								optional
									String io_k8s_api_core_v1_ContainerStatus_lastState_waiting_message {doc 'Message regarding why the container is not yet running'}
									String io_k8s_api_core_v1_ContainerStatus_lastState_waiting_reason {doc '(brief) reason the container is not yet running'}
					io_k8s_api_core_v1_ContainerStatus_resources {doc 'Resources represents the compute resource requests and limits that have been successfully enacted on the running container after it has been started or has been successfully resized'}
						optional
							io_k8s_api_core_v1_ContainerStatus_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
								mandatory
									String io_k8s_api_core_v1_ContainerStatus_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
							io_k8s_api_core_v1_ContainerStatus_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
								alternative
									String io_k8s_api_core_v1_ContainerStatus_resources_limits_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_ContainerStatus_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_ContainerStatus_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
								alternative
									String io_k8s_api_core_v1_ContainerStatus_resources_requests_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_ContainerStatus_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_core_v1_ContainerStatus_started {doc 'Started indicates whether the container has finished its postStart lifecycle hook and passed its startup probe Initialized as false, becomes true after startupProbe is considered successful Resets to false when the container is restarted, or if kubelet loses state temporarily In both cases, startup probes will run again Is always true when no startupProbe is defined and container is running and has passed the postStart lifecycle hook The null value must be treated the same as false'}
					io_k8s_api_core_v1_ContainerStatus_state {doc 'State holds details about the container_s current condition'}
						optional
							io_k8s_api_core_v1_ContainerStatus_state_running {doc 'Details about a running container'}
								optional
									io_k8s_api_core_v1_ContainerStatus_state_running_startedAt {doc 'Time at which the container was last (re-)started'}
										optional
											String io_k8s_api_core_v1_ContainerStatus_state_running_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_ContainerStatus_state_terminated {doc 'Details about a terminated container'}
								mandatory
									Integer io_k8s_api_core_v1_ContainerStatus_state_terminated_exitCode {doc 'Exit status from the last termination of the container'}
								optional
									String io_k8s_api_core_v1_ContainerStatus_state_terminated_containerID {doc 'Container_s ID in the format _<type>:_<container_id>_'}
									io_k8s_api_core_v1_ContainerStatus_state_terminated_finishedAt {doc 'Time at which the container last terminated'}
										optional
											String io_k8s_api_core_v1_ContainerStatus_state_terminated_finishedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_ContainerStatus_state_terminated_message {doc 'Message regarding the last termination of the container'}
									String io_k8s_api_core_v1_ContainerStatus_state_terminated_reason {doc '(brief) reason from the last termination of the container'}
									Integer io_k8s_api_core_v1_ContainerStatus_state_terminated_signal {doc 'Signal from the last termination of the container'}
									io_k8s_api_core_v1_ContainerStatus_state_terminated_startedAt {doc 'Time at which previous execution of the container started'}
										optional
											String io_k8s_api_core_v1_ContainerStatus_state_terminated_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_ContainerStatus_state_waiting {doc 'Details about a waiting container'}
								optional
									String io_k8s_api_core_v1_ContainerStatus_state_waiting_message {doc 'Message regarding why the container is not yet running'}
									String io_k8s_api_core_v1_ContainerStatus_state_waiting_reason {doc '(brief) reason the container is not yet running'}
					io_k8s_api_core_v1_ContainerStatus_volumeMounts cardinality [1..*] {doc 'Status of volume mounts'}
						mandatory
							String io_k8s_api_core_v1_ContainerStatus_volumeMounts_mountPath {doc 'MountPath corresponds to the original VolumeMount'}
							String io_k8s_api_core_v1_ContainerStatus_volumeMounts_name {doc 'Name corresponds to the name of the original VolumeMount'}
						optional
							io_k8s_api_core_v1_ContainerStatus_volumeMounts_readOnly {doc 'ReadOnly corresponds to the original VolumeMount'}
							String io_k8s_api_core_v1_ContainerStatus_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts) An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result'}
			io_k8s_api_core_v1_DaemonEndpoint {doc 'DaemonEndpoint contains information about a single Daemon endpoint'}
				mandatory
					Integer io_k8s_api_core_v1_DaemonEndpoint_Port {doc 'Port number of the given endpoint'}
			io_k8s_api_core_v1_DownwardAPIProjection {doc 'Represents downward API info for projecting into a projected volume Note that this is identical to a downwardAPI volume source without the default mode'}
				optional
					io_k8s_api_core_v1_DownwardAPIProjection_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
						mandatory
							String io_k8s_api_core_v1_DownwardAPIProjection_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
						optional
							io_k8s_api_core_v1_DownwardAPIProjection_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
								mandatory
									String io_k8s_api_core_v1_DownwardAPIProjection_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
								optional
									String io_k8s_api_core_v1_DownwardAPIProjection_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
							Integer io_k8s_api_core_v1_DownwardAPIProjection_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
							io_k8s_api_core_v1_DownwardAPIProjection_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
								mandatory
									String io_k8s_api_core_v1_DownwardAPIProjection_items_resourceFieldRef_resource {doc 'Required: resource to select'}
								optional
									String io_k8s_api_core_v1_DownwardAPIProjection_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
									io_k8s_api_core_v1_DownwardAPIProjection_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
										alternative
											String io_k8s_api_core_v1_DownwardAPIProjection_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_DownwardAPIProjection_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
			io_k8s_api_core_v1_DownwardAPIVolumeFile {doc 'DownwardAPIVolumeFile represents information to create the file containing the pod field'}
				mandatory
					String io_k8s_api_core_v1_DownwardAPIVolumeFile_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
				optional
					io_k8s_api_core_v1_DownwardAPIVolumeFile_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
						mandatory
							String io_k8s_api_core_v1_DownwardAPIVolumeFile_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
						optional
							String io_k8s_api_core_v1_DownwardAPIVolumeFile_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
					Integer io_k8s_api_core_v1_DownwardAPIVolumeFile_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
					io_k8s_api_core_v1_DownwardAPIVolumeFile_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
						mandatory
							String io_k8s_api_core_v1_DownwardAPIVolumeFile_resourceFieldRef_resource {doc 'Required: resource to select'}
						optional
							String io_k8s_api_core_v1_DownwardAPIVolumeFile_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
							io_k8s_api_core_v1_DownwardAPIVolumeFile_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
								alternative
									String io_k8s_api_core_v1_DownwardAPIVolumeFile_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_DownwardAPIVolumeFile_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
			io_k8s_api_core_v1_DownwardAPIVolumeSource {doc 'DownwardAPIVolumeSource represents a volume containing downward API info Downward API volumes support ownership management and SELinux relabeling'}
				optional
					Integer io_k8s_api_core_v1_DownwardAPIVolumeSource_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
					io_k8s_api_core_v1_DownwardAPIVolumeSource_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
						mandatory
							String io_k8s_api_core_v1_DownwardAPIVolumeSource_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
						optional
							io_k8s_api_core_v1_DownwardAPIVolumeSource_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
								mandatory
									String io_k8s_api_core_v1_DownwardAPIVolumeSource_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
								optional
									String io_k8s_api_core_v1_DownwardAPIVolumeSource_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
							Integer io_k8s_api_core_v1_DownwardAPIVolumeSource_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
							io_k8s_api_core_v1_DownwardAPIVolumeSource_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
								mandatory
									String io_k8s_api_core_v1_DownwardAPIVolumeSource_items_resourceFieldRef_resource {doc 'Required: resource to select'}
								optional
									String io_k8s_api_core_v1_DownwardAPIVolumeSource_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
									io_k8s_api_core_v1_DownwardAPIVolumeSource_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
										alternative
											String io_k8s_api_core_v1_DownwardAPIVolumeSource_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_DownwardAPIVolumeSource_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
			io_k8s_api_core_v1_EmptyDirVolumeSource {doc 'Represents an empty directory for a pod Empty directory volumes support ownership management and SELinux relabeling'}
				optional
					String io_k8s_api_core_v1_EmptyDirVolumeSource_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
					io_k8s_api_core_v1_EmptyDirVolumeSource_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
						alternative
							String io_k8s_api_core_v1_EmptyDirVolumeSource_sizeLimit_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_EmptyDirVolumeSource_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
			io_k8s_api_core_v1_EndpointAddress {doc 'EndpointAddress is a tuple that describes single IP address'}
				mandatory
					String io_k8s_api_core_v1_EndpointAddress_ip {doc 'The IP of this endpoint May not be loopback (127000/8 or ::1), link-local (16925400/16 or fe80::/10), or link-local multicast (224000/24 or ff02::/16)'}
				optional
					String io_k8s_api_core_v1_EndpointAddress_hostname {doc 'The Hostname of this endpoint'}
					String io_k8s_api_core_v1_EndpointAddress_nodeName {doc 'Optional: Node hosting this endpoint This can be used to determine endpoints local to a node'}
					io_k8s_api_core_v1_EndpointAddress_targetRef {doc 'Reference to object providing the endpoint'}
						optional
							String io_k8s_api_core_v1_EndpointAddress_targetRef_apiVersion {doc 'API version of the referent'}
							String io_k8s_api_core_v1_EndpointAddress_targetRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
							String io_k8s_api_core_v1_EndpointAddress_targetRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							String io_k8s_api_core_v1_EndpointAddress_targetRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							String io_k8s_api_core_v1_EndpointAddress_targetRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
							String io_k8s_api_core_v1_EndpointAddress_targetRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_EndpointAddress_targetRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
			io_k8s_api_core_v1_EndpointPort {doc 'EndpointPort is a tuple that describes a single port'}
				mandatory
					Integer io_k8s_api_core_v1_EndpointPort_port {doc 'The port number of the endpoint'}
				optional
					String io_k8s_api_core_v1_EndpointPort_appProtocol {doc 'The application protocol for this port This is used as a hint for implementations to offer richer behavior for protocols that they understand This field follows standard Kubernetes label syntax Valid values are either:* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https:_wwwianaorg/assignments/service-names)* Kubernetes-defined prefixed names:  * _kubernetesio/h2c_ - HTTP/2 prior knowledge over cleartext as described in https:_wwwrfc-editororg/rfc/rfc9113html#name-starting-http-2-with-prior-  * _kubernetesio/ws_  - WebSocket over cleartext as described in https:_wwwrfc-editororg/rfc/rfc6455  * _kubernetesio/wss_ - WebSocket over TLS as described in https:_wwwrfc-editororg/rfc/rfc6455* Other protocols should use implementation-defined prefixed names such as mycompanycom/my-custom-protocol'}
					String io_k8s_api_core_v1_EndpointPort_name {doc 'The name of this port  This must match the _name_ field in the corresponding ServicePort Must be a DNS_LABEL Optional only if one port is defined'}
					io_k8s_api_core_v1_EndpointPort_protocol {doc 'The IP protocol for this port Must be UDP, TCP, or SCTP Default is TCP'}
						alternative
							io_k8s_api_core_v1_EndpointPort_protocol_SCTP {doc 'Specific value: SCTP'}
							io_k8s_api_core_v1_EndpointPort_protocol_TCP {default, doc 'Specific value: TCP'}
							io_k8s_api_core_v1_EndpointPort_protocol_UDP {doc 'Specific value: UDP'}
			io_k8s_api_core_v1_EndpointSubset {doc 'EndpointSubset is a group of addresses with a common set of ports The expanded set of endpoints is the Cartesian product of Addresses x Ports For example, given:		  Addresses: [ip: 101011, ip: 101022],	  Ports:     [name: a, port: 8675, name: b, port: 309]	The resulting set of endpoints can be viewed as:	a: [ 101011:8675, 101022:8675 ],	b: [ 101011:309, 101022:309 ]'}
				optional
					io_k8s_api_core_v1_EndpointSubset_addresses cardinality [1..*] {doc 'IP addresses which offer the related ports that are marked as ready These endpoints should be considered safe for load balancers and clients to utilize'}
						mandatory
							String io_k8s_api_core_v1_EndpointSubset_addresses_ip {doc 'The IP of this endpoint May not be loopback (127000/8 or ::1), link-local (16925400/16 or fe80::/10), or link-local multicast (224000/24 or ff02::/16)'}
						optional
							String io_k8s_api_core_v1_EndpointSubset_addresses_hostname {doc 'The Hostname of this endpoint'}
							String io_k8s_api_core_v1_EndpointSubset_addresses_nodeName {doc 'Optional: Node hosting this endpoint This can be used to determine endpoints local to a node'}
							io_k8s_api_core_v1_EndpointSubset_addresses_targetRef {doc 'Reference to object providing the endpoint'}
								optional
									String io_k8s_api_core_v1_EndpointSubset_addresses_targetRef_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_EndpointSubset_addresses_targetRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
									String io_k8s_api_core_v1_EndpointSubset_addresses_targetRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_EndpointSubset_addresses_targetRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									String io_k8s_api_core_v1_EndpointSubset_addresses_targetRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
									String io_k8s_api_core_v1_EndpointSubset_addresses_targetRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_EndpointSubset_addresses_targetRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
					io_k8s_api_core_v1_EndpointSubset_notReadyAddresses cardinality [1..*] {doc 'IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check'}
						mandatory
							String io_k8s_api_core_v1_EndpointSubset_notReadyAddresses_ip {doc 'The IP of this endpoint May not be loopback (127000/8 or ::1), link-local (16925400/16 or fe80::/10), or link-local multicast (224000/24 or ff02::/16)'}
						optional
							String io_k8s_api_core_v1_EndpointSubset_notReadyAddresses_hostname {doc 'The Hostname of this endpoint'}
							String io_k8s_api_core_v1_EndpointSubset_notReadyAddresses_nodeName {doc 'Optional: Node hosting this endpoint This can be used to determine endpoints local to a node'}
							io_k8s_api_core_v1_EndpointSubset_notReadyAddresses_targetRef {doc 'Reference to object providing the endpoint'}
								optional
									String io_k8s_api_core_v1_EndpointSubset_notReadyAddresses_targetRef_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_EndpointSubset_notReadyAddresses_targetRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
									String io_k8s_api_core_v1_EndpointSubset_notReadyAddresses_targetRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_EndpointSubset_notReadyAddresses_targetRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									String io_k8s_api_core_v1_EndpointSubset_notReadyAddresses_targetRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
									String io_k8s_api_core_v1_EndpointSubset_notReadyAddresses_targetRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_EndpointSubset_notReadyAddresses_targetRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
					io_k8s_api_core_v1_EndpointSubset_ports cardinality [1..*] {doc 'Port numbers available on the related IP addresses'}
						mandatory
							Integer io_k8s_api_core_v1_EndpointSubset_ports_port {doc 'The port number of the endpoint'}
						optional
							String io_k8s_api_core_v1_EndpointSubset_ports_appProtocol {doc 'The application protocol for this port This is used as a hint for implementations to offer richer behavior for protocols that they understand This field follows standard Kubernetes label syntax Valid values are either:* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https:_wwwianaorg/assignments/service-names)* Kubernetes-defined prefixed names:  * _kubernetesio/h2c_ - HTTP/2 prior knowledge over cleartext as described in https:_wwwrfc-editororg/rfc/rfc9113html#name-starting-http-2-with-prior-  * _kubernetesio/ws_  - WebSocket over cleartext as described in https:_wwwrfc-editororg/rfc/rfc6455  * _kubernetesio/wss_ - WebSocket over TLS as described in https:_wwwrfc-editororg/rfc/rfc6455* Other protocols should use implementation-defined prefixed names such as mycompanycom/my-custom-protocol'}
							String io_k8s_api_core_v1_EndpointSubset_ports_name {doc 'The name of this port  This must match the _name_ field in the corresponding ServicePort Must be a DNS_LABEL Optional only if one port is defined'}
							io_k8s_api_core_v1_EndpointSubset_ports_protocol {doc 'The IP protocol for this port Must be UDP, TCP, or SCTP Default is TCP'}
								alternative
									io_k8s_api_core_v1_EndpointSubset_ports_protocol_SCTP {doc 'Specific value: SCTP'}
									io_k8s_api_core_v1_EndpointSubset_ports_protocol_TCP {default, doc 'Specific value: TCP'}
									io_k8s_api_core_v1_EndpointSubset_ports_protocol_UDP {doc 'Specific value: UDP'}
			io_k8s_api_core_v1_Endpoints {doc 'Endpoints is a collection of endpoints that implement the actual service Example:	 Name: mysvc,	 Subsets: [	   	     Addresses: [ip: 101011, ip: 101022],	     Ports: [name: a, port: 8675, name: b, port: 309]	   ,	   	     Addresses: [ip: 101033],	     Ports: [name: a, port: 93, name: b, port: 76]	   ,	]'}
				optional
					String io_k8s_api_core_v1_Endpoints_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_Endpoints_kind {default 'Endpoints', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_Endpoints_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_core_v1_Endpoints_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_core_v1_Endpoints_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_Endpoints_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_Endpoints_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_Endpoints_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_Endpoints_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_core_v1_Endpoints_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_core_v1_Endpoints_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_Endpoints_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_Endpoints_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_Endpoints_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_core_v1_Endpoints_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_core_v1_Endpoints_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_core_v1_Endpoints_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_core_v1_Endpoints_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_Endpoints_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_Endpoints_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_core_v1_Endpoints_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_core_v1_Endpoints_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_core_v1_Endpoints_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_core_v1_Endpoints_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_core_v1_Endpoints_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_core_v1_Endpoints_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_core_v1_Endpoints_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_core_v1_Endpoints_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_core_v1_Endpoints_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_core_v1_Endpoints_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_core_v1_Endpoints_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_core_v1_Endpoints_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_Endpoints_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_core_v1_Endpoints_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_core_v1_Endpoints_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_Endpoints_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_Endpoints_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_Endpoints_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_Endpoints_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_core_v1_Endpoints_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_core_v1_Endpoints_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_core_v1_Endpoints_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_Endpoints_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_core_v1_Endpoints_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_core_v1_Endpoints_subsets cardinality [1..*] {doc 'The set of all endpoints is the union of all subsets Addresses are placed into subsets according to the IPs they share A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports No address will appear in both Addresses and NotReadyAddresses in the same subset Sets of addresses and ports that comprise a service'}
						optional
							io_k8s_api_core_v1_Endpoints_subsets_addresses cardinality [1..*] {doc 'IP addresses which offer the related ports that are marked as ready These endpoints should be considered safe for load balancers and clients to utilize'}
								mandatory
									String io_k8s_api_core_v1_Endpoints_subsets_addresses_ip {doc 'The IP of this endpoint May not be loopback (127000/8 or ::1), link-local (16925400/16 or fe80::/10), or link-local multicast (224000/24 or ff02::/16)'}
								optional
									String io_k8s_api_core_v1_Endpoints_subsets_addresses_hostname {doc 'The Hostname of this endpoint'}
									String io_k8s_api_core_v1_Endpoints_subsets_addresses_nodeName {doc 'Optional: Node hosting this endpoint This can be used to determine endpoints local to a node'}
									io_k8s_api_core_v1_Endpoints_subsets_addresses_targetRef {doc 'Reference to object providing the endpoint'}
										optional
											String io_k8s_api_core_v1_Endpoints_subsets_addresses_targetRef_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_core_v1_Endpoints_subsets_addresses_targetRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
											String io_k8s_api_core_v1_Endpoints_subsets_addresses_targetRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_core_v1_Endpoints_subsets_addresses_targetRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											String io_k8s_api_core_v1_Endpoints_subsets_addresses_targetRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
											String io_k8s_api_core_v1_Endpoints_subsets_addresses_targetRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
											String io_k8s_api_core_v1_Endpoints_subsets_addresses_targetRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
							io_k8s_api_core_v1_Endpoints_subsets_notReadyAddresses cardinality [1..*] {doc 'IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check'}
								mandatory
									String io_k8s_api_core_v1_Endpoints_subsets_notReadyAddresses_ip {doc 'The IP of this endpoint May not be loopback (127000/8 or ::1), link-local (16925400/16 or fe80::/10), or link-local multicast (224000/24 or ff02::/16)'}
								optional
									String io_k8s_api_core_v1_Endpoints_subsets_notReadyAddresses_hostname {doc 'The Hostname of this endpoint'}
									String io_k8s_api_core_v1_Endpoints_subsets_notReadyAddresses_nodeName {doc 'Optional: Node hosting this endpoint This can be used to determine endpoints local to a node'}
									io_k8s_api_core_v1_Endpoints_subsets_notReadyAddresses_targetRef {doc 'Reference to object providing the endpoint'}
										optional
											String io_k8s_api_core_v1_Endpoints_subsets_notReadyAddresses_targetRef_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_core_v1_Endpoints_subsets_notReadyAddresses_targetRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
											String io_k8s_api_core_v1_Endpoints_subsets_notReadyAddresses_targetRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_core_v1_Endpoints_subsets_notReadyAddresses_targetRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											String io_k8s_api_core_v1_Endpoints_subsets_notReadyAddresses_targetRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
											String io_k8s_api_core_v1_Endpoints_subsets_notReadyAddresses_targetRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
											String io_k8s_api_core_v1_Endpoints_subsets_notReadyAddresses_targetRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
							io_k8s_api_core_v1_Endpoints_subsets_ports cardinality [1..*] {doc 'Port numbers available on the related IP addresses'}
								mandatory
									Integer io_k8s_api_core_v1_Endpoints_subsets_ports_port {doc 'The port number of the endpoint'}
								optional
									String io_k8s_api_core_v1_Endpoints_subsets_ports_appProtocol {doc 'The application protocol for this port This is used as a hint for implementations to offer richer behavior for protocols that they understand This field follows standard Kubernetes label syntax Valid values are either:* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https:_wwwianaorg/assignments/service-names)* Kubernetes-defined prefixed names:  * _kubernetesio/h2c_ - HTTP/2 prior knowledge over cleartext as described in https:_wwwrfc-editororg/rfc/rfc9113html#name-starting-http-2-with-prior-  * _kubernetesio/ws_  - WebSocket over cleartext as described in https:_wwwrfc-editororg/rfc/rfc6455  * _kubernetesio/wss_ - WebSocket over TLS as described in https:_wwwrfc-editororg/rfc/rfc6455* Other protocols should use implementation-defined prefixed names such as mycompanycom/my-custom-protocol'}
									String io_k8s_api_core_v1_Endpoints_subsets_ports_name {doc 'The name of this port  This must match the _name_ field in the corresponding ServicePort Must be a DNS_LABEL Optional only if one port is defined'}
									io_k8s_api_core_v1_Endpoints_subsets_ports_protocol {doc 'The IP protocol for this port Must be UDP, TCP, or SCTP Default is TCP'}
										alternative
											io_k8s_api_core_v1_Endpoints_subsets_ports_protocol_SCTP {doc 'Specific value: SCTP'}
											io_k8s_api_core_v1_Endpoints_subsets_ports_protocol_TCP {default, doc 'Specific value: TCP'}
											io_k8s_api_core_v1_Endpoints_subsets_ports_protocol_UDP {doc 'Specific value: UDP'}
			io_k8s_api_core_v1_EndpointsList {doc 'EndpointsList is a list of endpoints'}
				mandatory
					io_k8s_api_core_v1_EndpointsList_items cardinality [1..*] {doc 'List of endpoints'}
						optional
							String io_k8s_api_core_v1_EndpointsList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_core_v1_EndpointsList_items_kind {default 'Endpoints', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_core_v1_EndpointsList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_core_v1_EndpointsList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_core_v1_EndpointsList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_EndpointsList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_EndpointsList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_EndpointsList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_EndpointsList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_core_v1_EndpointsList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_core_v1_EndpointsList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_EndpointsList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_EndpointsList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_EndpointsList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_core_v1_EndpointsList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_core_v1_EndpointsList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_core_v1_EndpointsList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_core_v1_EndpointsList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_EndpointsList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_EndpointsList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_core_v1_EndpointsList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_core_v1_EndpointsList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_core_v1_EndpointsList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_core_v1_EndpointsList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_core_v1_EndpointsList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_core_v1_EndpointsList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_core_v1_EndpointsList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_core_v1_EndpointsList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_core_v1_EndpointsList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_core_v1_EndpointsList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_core_v1_EndpointsList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_core_v1_EndpointsList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_EndpointsList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_EndpointsList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_core_v1_EndpointsList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_EndpointsList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_core_v1_EndpointsList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_core_v1_EndpointsList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_core_v1_EndpointsList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_core_v1_EndpointsList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_core_v1_EndpointsList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_core_v1_EndpointsList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_EndpointsList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_core_v1_EndpointsList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_core_v1_EndpointsList_items_subsets cardinality [1..*] {doc 'The set of all endpoints is the union of all subsets Addresses are placed into subsets according to the IPs they share A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports No address will appear in both Addresses and NotReadyAddresses in the same subset Sets of addresses and ports that comprise a service'}
								optional
									io_k8s_api_core_v1_EndpointsList_items_subsets_addresses cardinality [1..*] {doc 'IP addresses which offer the related ports that are marked as ready These endpoints should be considered safe for load balancers and clients to utilize'}
										mandatory
											String io_k8s_api_core_v1_EndpointsList_items_subsets_addresses_ip {doc 'The IP of this endpoint May not be loopback (127000/8 or ::1), link-local (16925400/16 or fe80::/10), or link-local multicast (224000/24 or ff02::/16)'}
										optional
											String io_k8s_api_core_v1_EndpointsList_items_subsets_addresses_hostname {doc 'The Hostname of this endpoint'}
											String io_k8s_api_core_v1_EndpointsList_items_subsets_addresses_nodeName {doc 'Optional: Node hosting this endpoint This can be used to determine endpoints local to a node'}
											io_k8s_api_core_v1_EndpointsList_items_subsets_addresses_targetRef {doc 'Reference to object providing the endpoint'}
												optional
													String io_k8s_api_core_v1_EndpointsList_items_subsets_addresses_targetRef_apiVersion {doc 'API version of the referent'}
													String io_k8s_api_core_v1_EndpointsList_items_subsets_addresses_targetRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
													String io_k8s_api_core_v1_EndpointsList_items_subsets_addresses_targetRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
													String io_k8s_api_core_v1_EndpointsList_items_subsets_addresses_targetRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_core_v1_EndpointsList_items_subsets_addresses_targetRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
													String io_k8s_api_core_v1_EndpointsList_items_subsets_addresses_targetRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
													String io_k8s_api_core_v1_EndpointsList_items_subsets_addresses_targetRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
									io_k8s_api_core_v1_EndpointsList_items_subsets_notReadyAddresses cardinality [1..*] {doc 'IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check'}
										mandatory
											String io_k8s_api_core_v1_EndpointsList_items_subsets_notReadyAddresses_ip {doc 'The IP of this endpoint May not be loopback (127000/8 or ::1), link-local (16925400/16 or fe80::/10), or link-local multicast (224000/24 or ff02::/16)'}
										optional
											String io_k8s_api_core_v1_EndpointsList_items_subsets_notReadyAddresses_hostname {doc 'The Hostname of this endpoint'}
											String io_k8s_api_core_v1_EndpointsList_items_subsets_notReadyAddresses_nodeName {doc 'Optional: Node hosting this endpoint This can be used to determine endpoints local to a node'}
											io_k8s_api_core_v1_EndpointsList_items_subsets_notReadyAddresses_targetRef {doc 'Reference to object providing the endpoint'}
												optional
													String io_k8s_api_core_v1_EndpointsList_items_subsets_notReadyAddresses_targetRef_apiVersion {doc 'API version of the referent'}
													String io_k8s_api_core_v1_EndpointsList_items_subsets_notReadyAddresses_targetRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
													String io_k8s_api_core_v1_EndpointsList_items_subsets_notReadyAddresses_targetRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
													String io_k8s_api_core_v1_EndpointsList_items_subsets_notReadyAddresses_targetRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_core_v1_EndpointsList_items_subsets_notReadyAddresses_targetRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
													String io_k8s_api_core_v1_EndpointsList_items_subsets_notReadyAddresses_targetRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
													String io_k8s_api_core_v1_EndpointsList_items_subsets_notReadyAddresses_targetRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
									io_k8s_api_core_v1_EndpointsList_items_subsets_ports cardinality [1..*] {doc 'Port numbers available on the related IP addresses'}
										mandatory
											Integer io_k8s_api_core_v1_EndpointsList_items_subsets_ports_port {doc 'The port number of the endpoint'}
										optional
											String io_k8s_api_core_v1_EndpointsList_items_subsets_ports_appProtocol {doc 'The application protocol for this port This is used as a hint for implementations to offer richer behavior for protocols that they understand This field follows standard Kubernetes label syntax Valid values are either:* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https:_wwwianaorg/assignments/service-names)* Kubernetes-defined prefixed names:  * _kubernetesio/h2c_ - HTTP/2 prior knowledge over cleartext as described in https:_wwwrfc-editororg/rfc/rfc9113html#name-starting-http-2-with-prior-  * _kubernetesio/ws_  - WebSocket over cleartext as described in https:_wwwrfc-editororg/rfc/rfc6455  * _kubernetesio/wss_ - WebSocket over TLS as described in https:_wwwrfc-editororg/rfc/rfc6455* Other protocols should use implementation-defined prefixed names such as mycompanycom/my-custom-protocol'}
											String io_k8s_api_core_v1_EndpointsList_items_subsets_ports_name {doc 'The name of this port  This must match the _name_ field in the corresponding ServicePort Must be a DNS_LABEL Optional only if one port is defined'}
											io_k8s_api_core_v1_EndpointsList_items_subsets_ports_protocol {doc 'The IP protocol for this port Must be UDP, TCP, or SCTP Default is TCP'}
												alternative
													io_k8s_api_core_v1_EndpointsList_items_subsets_ports_protocol_SCTP {doc 'Specific value: SCTP'}
													io_k8s_api_core_v1_EndpointsList_items_subsets_ports_protocol_TCP {default, doc 'Specific value: TCP'}
													io_k8s_api_core_v1_EndpointsList_items_subsets_ports_protocol_UDP {doc 'Specific value: UDP'}
				optional
					String io_k8s_api_core_v1_EndpointsList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_EndpointsList_kind {default 'EndpointsList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_EndpointsList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_core_v1_EndpointsList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_core_v1_EndpointsList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_core_v1_EndpointsList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_EndpointsList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_core_v1_EnvFromSource {doc 'EnvFromSource represents the source of a set of ConfigMaps'}
				optional
					io_k8s_api_core_v1_EnvFromSource_configMapRef {doc 'The ConfigMap to select from'}
						optional
							String io_k8s_api_core_v1_EnvFromSource_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							io_k8s_api_core_v1_EnvFromSource_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
					String io_k8s_api_core_v1_EnvFromSource_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
					io_k8s_api_core_v1_EnvFromSource_secretRef {doc 'The Secret to select from'}
						optional
							String io_k8s_api_core_v1_EnvFromSource_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							io_k8s_api_core_v1_EnvFromSource_secretRef_optional {doc 'Specify whether the Secret must be defined'}
			io_k8s_api_core_v1_EnvVar {doc 'EnvVar represents an environment variable present in a Container'}
				mandatory
					String io_k8s_api_core_v1_EnvVar_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
				optional
					String io_k8s_api_core_v1_EnvVar_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
					io_k8s_api_core_v1_EnvVar_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
						optional
							io_k8s_api_core_v1_EnvVar_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
								mandatory
									String io_k8s_api_core_v1_EnvVar_valueFrom_configMapKeyRef_key {doc 'The key to select'}
								optional
									String io_k8s_api_core_v1_EnvVar_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_core_v1_EnvVar_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
							io_k8s_api_core_v1_EnvVar_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
								mandatory
									String io_k8s_api_core_v1_EnvVar_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
								optional
									String io_k8s_api_core_v1_EnvVar_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
							io_k8s_api_core_v1_EnvVar_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
								mandatory
									String io_k8s_api_core_v1_EnvVar_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
								optional
									String io_k8s_api_core_v1_EnvVar_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
									io_k8s_api_core_v1_EnvVar_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
										alternative
											String io_k8s_api_core_v1_EnvVar_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_EnvVar_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_EnvVar_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
								mandatory
									String io_k8s_api_core_v1_EnvVar_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
								optional
									String io_k8s_api_core_v1_EnvVar_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_core_v1_EnvVar_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
			io_k8s_api_core_v1_EnvVarSource {doc 'EnvVarSource represents a source for the value of an EnvVar'}
				optional
					io_k8s_api_core_v1_EnvVarSource_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
						mandatory
							String io_k8s_api_core_v1_EnvVarSource_configMapKeyRef_key {doc 'The key to select'}
						optional
							String io_k8s_api_core_v1_EnvVarSource_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							io_k8s_api_core_v1_EnvVarSource_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
					io_k8s_api_core_v1_EnvVarSource_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
						mandatory
							String io_k8s_api_core_v1_EnvVarSource_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
						optional
							String io_k8s_api_core_v1_EnvVarSource_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
					io_k8s_api_core_v1_EnvVarSource_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
						mandatory
							String io_k8s_api_core_v1_EnvVarSource_resourceFieldRef_resource {doc 'Required: resource to select'}
						optional
							String io_k8s_api_core_v1_EnvVarSource_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
							io_k8s_api_core_v1_EnvVarSource_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
								alternative
									String io_k8s_api_core_v1_EnvVarSource_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_EnvVarSource_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_core_v1_EnvVarSource_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
						mandatory
							String io_k8s_api_core_v1_EnvVarSource_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
						optional
							String io_k8s_api_core_v1_EnvVarSource_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							io_k8s_api_core_v1_EnvVarSource_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
			io_k8s_api_core_v1_EphemeralContainer {doc 'An EphemeralContainer is a temporary container that you may add to an existing Pod for user-initiated activities such as debugging Ephemeral containers have no resource or scheduling guarantees, and they will not be restarted when they exit or when a Pod is removed or restarted The kubelet may evict a Pod if an ephemeral container causes the Pod to exceed its resource allocationTo add an ephemeral container, use the ephemeralcontainers subresource of an existing Pod Ephemeral containers may not be removed or restarted'}
				mandatory
					String io_k8s_api_core_v1_EphemeralContainer_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
				optional
					io_k8s_api_core_v1_EphemeralContainer_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
						mandatory
							String io_k8s_api_core_v1_EphemeralContainer_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_EphemeralContainer_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
						mandatory
							String io_k8s_api_core_v1_EphemeralContainer_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_EphemeralContainer_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
						mandatory
							String io_k8s_api_core_v1_EphemeralContainer_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
						optional
							String io_k8s_api_core_v1_EphemeralContainer_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
							io_k8s_api_core_v1_EphemeralContainer_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
								optional
									io_k8s_api_core_v1_EphemeralContainer_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
										mandatory
											String io_k8s_api_core_v1_EphemeralContainer_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
										optional
											String io_k8s_api_core_v1_EphemeralContainer_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_EphemeralContainer_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
									io_k8s_api_core_v1_EphemeralContainer_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
										mandatory
											String io_k8s_api_core_v1_EphemeralContainer_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
										optional
											String io_k8s_api_core_v1_EphemeralContainer_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
									io_k8s_api_core_v1_EphemeralContainer_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
										mandatory
											String io_k8s_api_core_v1_EphemeralContainer_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
										optional
											String io_k8s_api_core_v1_EphemeralContainer_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
											io_k8s_api_core_v1_EphemeralContainer_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
												alternative
													String io_k8s_api_core_v1_EphemeralContainer_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_EphemeralContainer_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_EphemeralContainer_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
										mandatory
											String io_k8s_api_core_v1_EphemeralContainer_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
										optional
											String io_k8s_api_core_v1_EphemeralContainer_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_EphemeralContainer_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
					io_k8s_api_core_v1_EphemeralContainer_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
						optional
							io_k8s_api_core_v1_EphemeralContainer_envFrom_configMapRef {doc 'The ConfigMap to select from'}
								optional
									String io_k8s_api_core_v1_EphemeralContainer_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_core_v1_EphemeralContainer_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
							String io_k8s_api_core_v1_EphemeralContainer_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
							io_k8s_api_core_v1_EphemeralContainer_envFrom_secretRef {doc 'The Secret to select from'}
								optional
									String io_k8s_api_core_v1_EphemeralContainer_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_core_v1_EphemeralContainer_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
					String io_k8s_api_core_v1_EphemeralContainer_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
					io_k8s_api_core_v1_EphemeralContainer_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
						alternative
							io_k8s_api_core_v1_EphemeralContainer_imagePullPolicy_Never {doc 'Specific value: Never'}
							io_k8s_api_core_v1_EphemeralContainer_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
							io_k8s_api_core_v1_EphemeralContainer_imagePullPolicy_Always {doc 'Specific value: Always'}
					io_k8s_api_core_v1_EphemeralContainer_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
						optional
							io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
								optional
									io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
										optional
											io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
												mandatory
													String io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
										mandatory
											io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
											io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
												mandatory
													String io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
													String io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
											String io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
											String io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
									io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
										mandatory
											Integer io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
									io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
										mandatory
											io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
							io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
								optional
									io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
										optional
											io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
												mandatory
													String io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
										mandatory
											io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
											io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
												mandatory
													String io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
													String io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
											String io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
											String io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
									io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
										mandatory
											Integer io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
									io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
										mandatory
											io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
					io_k8s_api_core_v1_EphemeralContainer_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
						optional
							io_k8s_api_core_v1_EphemeralContainer_livenessProbe_exec {doc 'Exec specifies the action to take'}
								optional
									io_k8s_api_core_v1_EphemeralContainer_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
										mandatory
											String io_k8s_api_core_v1_EphemeralContainer_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							Integer io_k8s_api_core_v1_EphemeralContainer_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
							io_k8s_api_core_v1_EphemeralContainer_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
								mandatory
									Integer io_k8s_api_core_v1_EphemeralContainer_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
								optional
									String io_k8s_api_core_v1_EphemeralContainer_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
							io_k8s_api_core_v1_EphemeralContainer_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
								mandatory
									io_k8s_api_core_v1_EphemeralContainer_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
										alternative
											String io_k8s_api_core_v1_EphemeralContainer_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_EphemeralContainer_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
								optional
									String io_k8s_api_core_v1_EphemeralContainer_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
									io_k8s_api_core_v1_EphemeralContainer_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
										mandatory
											String io_k8s_api_core_v1_EphemeralContainer_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
											String io_k8s_api_core_v1_EphemeralContainer_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
									String io_k8s_api_core_v1_EphemeralContainer_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
									String io_k8s_api_core_v1_EphemeralContainer_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
							Integer io_k8s_api_core_v1_EphemeralContainer_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
							Integer io_k8s_api_core_v1_EphemeralContainer_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
							Integer io_k8s_api_core_v1_EphemeralContainer_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
							io_k8s_api_core_v1_EphemeralContainer_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
								mandatory
									io_k8s_api_core_v1_EphemeralContainer_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
										alternative
											String io_k8s_api_core_v1_EphemeralContainer_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_EphemeralContainer_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
								optional
									String io_k8s_api_core_v1_EphemeralContainer_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
							Integer io_k8s_api_core_v1_EphemeralContainer_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
							Integer io_k8s_api_core_v1_EphemeralContainer_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
					io_k8s_api_core_v1_EphemeralContainer_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
						mandatory
							Integer io_k8s_api_core_v1_EphemeralContainer_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
						optional
							String io_k8s_api_core_v1_EphemeralContainer_ports_hostIP {doc 'What host IP to bind the external port to'}
							Integer io_k8s_api_core_v1_EphemeralContainer_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
							String io_k8s_api_core_v1_EphemeralContainer_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
							io_k8s_api_core_v1_EphemeralContainer_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
								alternative
									io_k8s_api_core_v1_EphemeralContainer_ports_protocol_SCTP {doc 'Specific value: SCTP'}
									io_k8s_api_core_v1_EphemeralContainer_ports_protocol_TCP {default, doc 'Specific value: TCP'}
									io_k8s_api_core_v1_EphemeralContainer_ports_protocol_UDP {doc 'Specific value: UDP'}
					io_k8s_api_core_v1_EphemeralContainer_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
						optional
							io_k8s_api_core_v1_EphemeralContainer_readinessProbe_exec {doc 'Exec specifies the action to take'}
								optional
									io_k8s_api_core_v1_EphemeralContainer_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
										mandatory
											String io_k8s_api_core_v1_EphemeralContainer_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							Integer io_k8s_api_core_v1_EphemeralContainer_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
							io_k8s_api_core_v1_EphemeralContainer_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
								mandatory
									Integer io_k8s_api_core_v1_EphemeralContainer_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
								optional
									String io_k8s_api_core_v1_EphemeralContainer_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
							io_k8s_api_core_v1_EphemeralContainer_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
								mandatory
									io_k8s_api_core_v1_EphemeralContainer_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
										alternative
											String io_k8s_api_core_v1_EphemeralContainer_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_EphemeralContainer_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
								optional
									String io_k8s_api_core_v1_EphemeralContainer_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
									io_k8s_api_core_v1_EphemeralContainer_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
										mandatory
											String io_k8s_api_core_v1_EphemeralContainer_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
											String io_k8s_api_core_v1_EphemeralContainer_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
									String io_k8s_api_core_v1_EphemeralContainer_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
									String io_k8s_api_core_v1_EphemeralContainer_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
							Integer io_k8s_api_core_v1_EphemeralContainer_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
							Integer io_k8s_api_core_v1_EphemeralContainer_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
							Integer io_k8s_api_core_v1_EphemeralContainer_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
							io_k8s_api_core_v1_EphemeralContainer_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
								mandatory
									io_k8s_api_core_v1_EphemeralContainer_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
										alternative
											String io_k8s_api_core_v1_EphemeralContainer_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_EphemeralContainer_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
								optional
									String io_k8s_api_core_v1_EphemeralContainer_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
							Integer io_k8s_api_core_v1_EphemeralContainer_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
							Integer io_k8s_api_core_v1_EphemeralContainer_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
					io_k8s_api_core_v1_EphemeralContainer_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
						mandatory
							io_k8s_api_core_v1_EphemeralContainer_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
								alternative
									io_k8s_api_core_v1_EphemeralContainer_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
									io_k8s_api_core_v1_EphemeralContainer_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
							String io_k8s_api_core_v1_EphemeralContainer_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
					io_k8s_api_core_v1_EphemeralContainer_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
						optional
							io_k8s_api_core_v1_EphemeralContainer_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
								mandatory
									String io_k8s_api_core_v1_EphemeralContainer_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
							io_k8s_api_core_v1_EphemeralContainer_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
								alternative
									String io_k8s_api_core_v1_EphemeralContainer_resources_limits_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_EphemeralContainer_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_EphemeralContainer_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
								alternative
									String io_k8s_api_core_v1_EphemeralContainer_resources_requests_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_EphemeralContainer_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
					String io_k8s_api_core_v1_EphemeralContainer_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
					io_k8s_api_core_v1_EphemeralContainer_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
						optional
							io_k8s_api_core_v1_EphemeralContainer_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
							io_k8s_api_core_v1_EphemeralContainer_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
								mandatory
									io_k8s_api_core_v1_EphemeralContainer_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
										alternative
											io_k8s_api_core_v1_EphemeralContainer_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
											io_k8s_api_core_v1_EphemeralContainer_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
											io_k8s_api_core_v1_EphemeralContainer_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
								optional
									io_k8s_api_core_v1_EphemeralContainer_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
										mandatory
											io_k8s_api_core_v1_EphemeralContainer_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							io_k8s_api_core_v1_EphemeralContainer_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
								optional
									io_k8s_api_core_v1_EphemeralContainer_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
										mandatory
											String io_k8s_api_core_v1_EphemeralContainer_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_EphemeralContainer_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
										mandatory
											String io_k8s_api_core_v1_EphemeralContainer_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_EphemeralContainer_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
							io_k8s_api_core_v1_EphemeralContainer_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
								mandatory
									String io_k8s_api_core_v1_EphemeralContainer_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							io_k8s_api_core_v1_EphemeralContainer_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
							io_k8s_api_core_v1_EphemeralContainer_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
								mandatory
									Integer io_k8s_api_core_v1_EphemeralContainer_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
							io_k8s_api_core_v1_EphemeralContainer_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
							io_k8s_api_core_v1_EphemeralContainer_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
								mandatory
									Integer io_k8s_api_core_v1_EphemeralContainer_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
							io_k8s_api_core_v1_EphemeralContainer_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
								optional
									String io_k8s_api_core_v1_EphemeralContainer_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
									String io_k8s_api_core_v1_EphemeralContainer_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
									String io_k8s_api_core_v1_EphemeralContainer_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
									String io_k8s_api_core_v1_EphemeralContainer_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
							io_k8s_api_core_v1_EphemeralContainer_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
								mandatory
									io_k8s_api_core_v1_EphemeralContainer_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
										alternative
											io_k8s_api_core_v1_EphemeralContainer_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
											io_k8s_api_core_v1_EphemeralContainer_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
											io_k8s_api_core_v1_EphemeralContainer_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
								optional
									io_k8s_api_core_v1_EphemeralContainer_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
										mandatory
											io_k8s_api_core_v1_EphemeralContainer_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							io_k8s_api_core_v1_EphemeralContainer_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
								optional
									String io_k8s_api_core_v1_EphemeralContainer_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
									String io_k8s_api_core_v1_EphemeralContainer_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
									io_k8s_api_core_v1_EphemeralContainer_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
									String io_k8s_api_core_v1_EphemeralContainer_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
					io_k8s_api_core_v1_EphemeralContainer_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
						optional
							io_k8s_api_core_v1_EphemeralContainer_startupProbe_exec {doc 'Exec specifies the action to take'}
								optional
									io_k8s_api_core_v1_EphemeralContainer_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
										mandatory
											String io_k8s_api_core_v1_EphemeralContainer_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							Integer io_k8s_api_core_v1_EphemeralContainer_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
							io_k8s_api_core_v1_EphemeralContainer_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
								mandatory
									Integer io_k8s_api_core_v1_EphemeralContainer_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
								optional
									String io_k8s_api_core_v1_EphemeralContainer_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
							io_k8s_api_core_v1_EphemeralContainer_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
								mandatory
									io_k8s_api_core_v1_EphemeralContainer_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
										alternative
											String io_k8s_api_core_v1_EphemeralContainer_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_EphemeralContainer_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
								optional
									String io_k8s_api_core_v1_EphemeralContainer_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
									io_k8s_api_core_v1_EphemeralContainer_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
										mandatory
											String io_k8s_api_core_v1_EphemeralContainer_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
											String io_k8s_api_core_v1_EphemeralContainer_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
									String io_k8s_api_core_v1_EphemeralContainer_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
									String io_k8s_api_core_v1_EphemeralContainer_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
							Integer io_k8s_api_core_v1_EphemeralContainer_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
							Integer io_k8s_api_core_v1_EphemeralContainer_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
							Integer io_k8s_api_core_v1_EphemeralContainer_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
							io_k8s_api_core_v1_EphemeralContainer_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
								mandatory
									io_k8s_api_core_v1_EphemeralContainer_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
										alternative
											String io_k8s_api_core_v1_EphemeralContainer_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_EphemeralContainer_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
								optional
									String io_k8s_api_core_v1_EphemeralContainer_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
							Integer io_k8s_api_core_v1_EphemeralContainer_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
							Integer io_k8s_api_core_v1_EphemeralContainer_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
					io_k8s_api_core_v1_EphemeralContainer_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
					io_k8s_api_core_v1_EphemeralContainer_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
					String io_k8s_api_core_v1_EphemeralContainer_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
					String io_k8s_api_core_v1_EphemeralContainer_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
					String io_k8s_api_core_v1_EphemeralContainer_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
					io_k8s_api_core_v1_EphemeralContainer_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
					io_k8s_api_core_v1_EphemeralContainer_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
						mandatory
							String io_k8s_api_core_v1_EphemeralContainer_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
							String io_k8s_api_core_v1_EphemeralContainer_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
					io_k8s_api_core_v1_EphemeralContainer_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
						mandatory
							String io_k8s_api_core_v1_EphemeralContainer_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
							String io_k8s_api_core_v1_EphemeralContainer_volumeMounts_name {doc 'This must match the Name of a Volume'}
						optional
							String io_k8s_api_core_v1_EphemeralContainer_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
							io_k8s_api_core_v1_EphemeralContainer_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
							String io_k8s_api_core_v1_EphemeralContainer_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
							String io_k8s_api_core_v1_EphemeralContainer_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
							String io_k8s_api_core_v1_EphemeralContainer_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
					String io_k8s_api_core_v1_EphemeralContainer_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
			io_k8s_api_core_v1_EphemeralVolumeSource {doc 'Represents an ephemeral volume that is handled by a normal storage driver'}
				optional
					io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
						mandatory
							io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
								optional
									io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
										mandatory
											String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
										mandatory
											String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
											String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
										optional
											String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
									io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
										mandatory
											String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
											String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
										optional
											String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
											String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
									io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
										optional
											io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
										optional
											io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
									String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
									String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
									String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
						optional
							io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
								optional
									io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
			io_k8s_api_core_v1_Event {doc 'Event is a report of an event somewhere in the cluster  Events have a limited retention time and triggers and messages may evolve with time  Event consumers should not rely on the timing of an event with a given Reason reflecting a consistent underlying trigger, or the continued existence of events with that Reason  Events should be treated as informative, best-effort, supplemental data'}
				mandatory
					io_k8s_api_core_v1_Event_involvedObject {doc 'The object that this event is about'}
						optional
							String io_k8s_api_core_v1_Event_involvedObject_apiVersion {doc 'API version of the referent'}
							String io_k8s_api_core_v1_Event_involvedObject_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
							String io_k8s_api_core_v1_Event_involvedObject_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							String io_k8s_api_core_v1_Event_involvedObject_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							String io_k8s_api_core_v1_Event_involvedObject_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
							String io_k8s_api_core_v1_Event_involvedObject_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_Event_involvedObject_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
					io_k8s_api_core_v1_Event_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_core_v1_Event_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_core_v1_Event_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_Event_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_Event_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_Event_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_Event_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_core_v1_Event_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_core_v1_Event_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_Event_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_Event_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_Event_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_core_v1_Event_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_core_v1_Event_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_core_v1_Event_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_core_v1_Event_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_Event_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_Event_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_core_v1_Event_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_core_v1_Event_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_core_v1_Event_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_core_v1_Event_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_core_v1_Event_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_core_v1_Event_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_core_v1_Event_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_core_v1_Event_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_core_v1_Event_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_core_v1_Event_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_core_v1_Event_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_core_v1_Event_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_Event_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_core_v1_Event_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_core_v1_Event_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_Event_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_Event_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_Event_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_Event_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_core_v1_Event_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_core_v1_Event_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_core_v1_Event_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_Event_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_core_v1_Event_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
				optional
					String io_k8s_api_core_v1_Event_action {doc 'What action was taken/failed regarding to the Regarding object'}
					String io_k8s_api_core_v1_Event_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					Integer io_k8s_api_core_v1_Event_count {doc 'The number of times this event has occurred'}
					io_k8s_api_core_v1_Event_eventTime {doc 'Time when this Event was first observed'}
						optional
							String io_k8s_api_core_v1_Event_eventTime_MicroTime {doc 'MicroTime is version of Time with microsecond level precision'}
					io_k8s_api_core_v1_Event_firstTimestamp {doc 'The time at which the event was first recorded (Time of server receipt is in TypeMeta)'}
						optional
							String io_k8s_api_core_v1_Event_firstTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_api_core_v1_Event_kind {default 'Event', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_Event_lastTimestamp {doc 'The time at which the most recent occurrence of this event was recorded'}
						optional
							String io_k8s_api_core_v1_Event_lastTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_api_core_v1_Event_message {doc 'A human-readable description of the status of this operation'}
					String io_k8s_api_core_v1_Event_reason {doc 'This should be a short, machine understandable string that gives the reason for the transition into the object_s current status'}
					io_k8s_api_core_v1_Event_related {doc 'Optional secondary object for more complex actions'}
						optional
							String io_k8s_api_core_v1_Event_related_apiVersion {doc 'API version of the referent'}
							String io_k8s_api_core_v1_Event_related_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
							String io_k8s_api_core_v1_Event_related_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							String io_k8s_api_core_v1_Event_related_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							String io_k8s_api_core_v1_Event_related_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
							String io_k8s_api_core_v1_Event_related_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_Event_related_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
					String io_k8s_api_core_v1_Event_reportingComponent {doc 'Name of the controller that emitted this Event, eg kubernetesio/kubelet'}
					String io_k8s_api_core_v1_Event_reportingInstance {doc 'ID of the controller instance, eg kubelet-xyzf'}
					io_k8s_api_core_v1_Event_series {doc 'Data about the Event series this event represents or nil if it_s a singleton Event'}
						optional
							Integer io_k8s_api_core_v1_Event_series_count {doc 'Number of occurrences in this series up to the last heartbeat time'}
							io_k8s_api_core_v1_Event_series_lastObservedTime {doc 'Time of the last occurrence observed'}
								optional
									String io_k8s_api_core_v1_Event_series_lastObservedTime_MicroTime {doc 'MicroTime is version of Time with microsecond level precision'}
					io_k8s_api_core_v1_Event_source {doc 'The component reporting this event Should be a short machine understandable string'}
						optional
							String io_k8s_api_core_v1_Event_source_component {doc 'Component from which the event is generated'}
							String io_k8s_api_core_v1_Event_source_host {doc 'Node name on which the event is generated'}
					String io_k8s_api_core_v1_Event_type {doc 'Type of this event (Normal, Warning), new types could be added in the future'}
			io_k8s_api_core_v1_EventList {doc 'EventList is a list of events'}
				mandatory
					io_k8s_api_core_v1_EventList_items cardinality [1..*] {doc 'List of events'}
						mandatory
							io_k8s_api_core_v1_EventList_items_involvedObject {doc 'The object that this event is about'}
								optional
									String io_k8s_api_core_v1_EventList_items_involvedObject_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_EventList_items_involvedObject_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
									String io_k8s_api_core_v1_EventList_items_involvedObject_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_EventList_items_involvedObject_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									String io_k8s_api_core_v1_EventList_items_involvedObject_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
									String io_k8s_api_core_v1_EventList_items_involvedObject_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_EventList_items_involvedObject_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
							io_k8s_api_core_v1_EventList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_core_v1_EventList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_core_v1_EventList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_EventList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_EventList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_EventList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_EventList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_core_v1_EventList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_core_v1_EventList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_EventList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_EventList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_EventList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_core_v1_EventList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_core_v1_EventList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_core_v1_EventList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_core_v1_EventList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_EventList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_EventList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_core_v1_EventList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_core_v1_EventList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_core_v1_EventList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_core_v1_EventList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_core_v1_EventList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_core_v1_EventList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_core_v1_EventList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_core_v1_EventList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_core_v1_EventList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_core_v1_EventList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_core_v1_EventList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_core_v1_EventList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_EventList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_EventList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_core_v1_EventList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_EventList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_core_v1_EventList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_core_v1_EventList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_core_v1_EventList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_core_v1_EventList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_core_v1_EventList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_core_v1_EventList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_EventList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_core_v1_EventList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
						optional
							String io_k8s_api_core_v1_EventList_items_action {doc 'What action was taken/failed regarding to the Regarding object'}
							String io_k8s_api_core_v1_EventList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							Integer io_k8s_api_core_v1_EventList_items_count {doc 'The number of times this event has occurred'}
							io_k8s_api_core_v1_EventList_items_eventTime {doc 'Time when this Event was first observed'}
								optional
									String io_k8s_api_core_v1_EventList_items_eventTime_MicroTime {doc 'MicroTime is version of Time with microsecond level precision'}
							io_k8s_api_core_v1_EventList_items_firstTimestamp {doc 'The time at which the event was first recorded (Time of server receipt is in TypeMeta)'}
								optional
									String io_k8s_api_core_v1_EventList_items_firstTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_EventList_items_kind {default 'Event', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_core_v1_EventList_items_lastTimestamp {doc 'The time at which the most recent occurrence of this event was recorded'}
								optional
									String io_k8s_api_core_v1_EventList_items_lastTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_EventList_items_message {doc 'A human-readable description of the status of this operation'}
							String io_k8s_api_core_v1_EventList_items_reason {doc 'This should be a short, machine understandable string that gives the reason for the transition into the object_s current status'}
							io_k8s_api_core_v1_EventList_items_related {doc 'Optional secondary object for more complex actions'}
								optional
									String io_k8s_api_core_v1_EventList_items_related_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_EventList_items_related_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
									String io_k8s_api_core_v1_EventList_items_related_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_EventList_items_related_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									String io_k8s_api_core_v1_EventList_items_related_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
									String io_k8s_api_core_v1_EventList_items_related_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_EventList_items_related_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
							String io_k8s_api_core_v1_EventList_items_reportingComponent {doc 'Name of the controller that emitted this Event, eg kubernetesio/kubelet'}
							String io_k8s_api_core_v1_EventList_items_reportingInstance {doc 'ID of the controller instance, eg kubelet-xyzf'}
							io_k8s_api_core_v1_EventList_items_series {doc 'Data about the Event series this event represents or nil if it_s a singleton Event'}
								optional
									Integer io_k8s_api_core_v1_EventList_items_series_count {doc 'Number of occurrences in this series up to the last heartbeat time'}
									io_k8s_api_core_v1_EventList_items_series_lastObservedTime {doc 'Time of the last occurrence observed'}
										optional
											String io_k8s_api_core_v1_EventList_items_series_lastObservedTime_MicroTime {doc 'MicroTime is version of Time with microsecond level precision'}
							io_k8s_api_core_v1_EventList_items_source {doc 'The component reporting this event Should be a short machine understandable string'}
								optional
									String io_k8s_api_core_v1_EventList_items_source_component {doc 'Component from which the event is generated'}
									String io_k8s_api_core_v1_EventList_items_source_host {doc 'Node name on which the event is generated'}
							String io_k8s_api_core_v1_EventList_items_type {doc 'Type of this event (Normal, Warning), new types could be added in the future'}
				optional
					String io_k8s_api_core_v1_EventList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_EventList_kind {default 'EventList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_EventList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_core_v1_EventList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_core_v1_EventList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_core_v1_EventList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_EventList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_core_v1_EventSeries {doc 'EventSeries contain information on series of events, ie thing that was/is happening continuously for some time'}
				optional
					Integer io_k8s_api_core_v1_EventSeries_count {doc 'Number of occurrences in this series up to the last heartbeat time'}
					io_k8s_api_core_v1_EventSeries_lastObservedTime {doc 'Time of the last occurrence observed'}
						optional
							String io_k8s_api_core_v1_EventSeries_lastObservedTime_MicroTime {doc 'MicroTime is version of Time with microsecond level precision'}
			io_k8s_api_core_v1_EventSource {doc 'EventSource contains information for an event'}
				optional
					String io_k8s_api_core_v1_EventSource_component {doc 'Component from which the event is generated'}
					String io_k8s_api_core_v1_EventSource_host {doc 'Node name on which the event is generated'}
			io_k8s_api_core_v1_ExecAction {doc 'ExecAction describes a run in container action'}
				optional
					io_k8s_api_core_v1_ExecAction_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
						mandatory
							String io_k8s_api_core_v1_ExecAction_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_FCVolumeSource {doc 'Represents a Fibre Channel volume Fibre Channel volumes can only be mounted as read/write once Fibre Channel volumes support ownership management and SELinux relabeling'}
				optional
					io_k8s_api_core_v1_FCVolumeSource_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
						alternative
							io_k8s_api_core_v1_FCVolumeSource_fsType_xfs {doc 'Specific value: xfs'}
							io_k8s_api_core_v1_FCVolumeSource_fsType_ext4 {default, doc 'Specific value: ext4'}
							io_k8s_api_core_v1_FCVolumeSource_fsType_ntfs {doc 'Specific value: ntfs'}
					Integer io_k8s_api_core_v1_FCVolumeSource_lun {doc 'lun is Optional: FC target lun number'}
					io_k8s_api_core_v1_FCVolumeSource_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
					io_k8s_api_core_v1_FCVolumeSource_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
						mandatory
							String io_k8s_api_core_v1_FCVolumeSource_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_FCVolumeSource_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
						mandatory
							String io_k8s_api_core_v1_FCVolumeSource_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_FlexPersistentVolumeSource {doc 'FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin'}
				mandatory
					String io_k8s_api_core_v1_FlexPersistentVolumeSource_driver {doc 'driver is the name of the driver to use for this volume'}
				optional
					io_k8s_api_core_v1_FlexPersistentVolumeSource_fsType {doc 'fsType is the Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
						alternative
							io_k8s_api_core_v1_FlexPersistentVolumeSource_fsType_xfs {doc 'Specific value: xfs'}
							io_k8s_api_core_v1_FlexPersistentVolumeSource_fsType_ext4 {doc 'Specific value: ext4'}
							io_k8s_api_core_v1_FlexPersistentVolumeSource_fsType_ntfs {doc 'Specific value: ntfs'}
					io_k8s_api_core_v1_FlexPersistentVolumeSource_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
						mandatory
							String io_k8s_api_core_v1_FlexPersistentVolumeSource_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_FlexPersistentVolumeSource_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
					io_k8s_api_core_v1_FlexPersistentVolumeSource_secretRef {doc 'secretRef is Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
						optional
							String io_k8s_api_core_v1_FlexPersistentVolumeSource_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
							String io_k8s_api_core_v1_FlexPersistentVolumeSource_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
			io_k8s_api_core_v1_FlexVolumeSource {doc 'FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
				mandatory
					String io_k8s_api_core_v1_FlexVolumeSource_driver {doc 'driver is the name of the driver to use for this volume'}
				optional
					io_k8s_api_core_v1_FlexVolumeSource_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
						alternative
							io_k8s_api_core_v1_FlexVolumeSource_fsType_xfs {doc 'Specific value: xfs'}
							io_k8s_api_core_v1_FlexVolumeSource_fsType_ext4 {doc 'Specific value: ext4'}
							io_k8s_api_core_v1_FlexVolumeSource_fsType_ntfs {doc 'Specific value: ntfs'}
					io_k8s_api_core_v1_FlexVolumeSource_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
						mandatory
							String io_k8s_api_core_v1_FlexVolumeSource_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_FlexVolumeSource_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
					io_k8s_api_core_v1_FlexVolumeSource_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
						optional
							String io_k8s_api_core_v1_FlexVolumeSource_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
			io_k8s_api_core_v1_FlockerVolumeSource {doc 'Represents a Flocker volume mounted by the Flocker agent One and only one of datasetName and datasetUUID should be set Flocker volumes do not support ownership management or SELinux relabeling'}
				optional
					io_k8s_api_core_v1_FlockerVolumeSource_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
						mandatory
							String io_k8s_api_core_v1_FlockerVolumeSource_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
					io_k8s_api_core_v1_FlockerVolumeSource_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
						mandatory
							String io_k8s_api_core_v1_FlockerVolumeSource_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
			io_k8s_api_core_v1_GCEPersistentDiskVolumeSource {doc 'Represents a Persistent Disk resource in Google Compute EngineA GCE PD must exist before mounting to a container The disk must also be in the same GCE project and zone as the kubelet A GCE PD can only be mounted as read/write once or read-only many times GCE PDs support ownership management and SELinux relabeling'}
				mandatory
					String io_k8s_api_core_v1_GCEPersistentDiskVolumeSource_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
				optional
					io_k8s_api_core_v1_GCEPersistentDiskVolumeSource_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
						alternative
							io_k8s_api_core_v1_GCEPersistentDiskVolumeSource_fsType_xfs {doc 'Specific value: xfs'}
							io_k8s_api_core_v1_GCEPersistentDiskVolumeSource_fsType_ext4 {default, doc 'Specific value: ext4'}
							io_k8s_api_core_v1_GCEPersistentDiskVolumeSource_fsType_ntfs {doc 'Specific value: ntfs'}
					Integer io_k8s_api_core_v1_GCEPersistentDiskVolumeSource_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
					io_k8s_api_core_v1_GCEPersistentDiskVolumeSource_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
			io_k8s_api_core_v1_GRPCAction {doc 'Auto doc generate for not add empty Strings No descripcion in schemas JSON'}
				mandatory
					Integer io_k8s_api_core_v1_GRPCAction_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
				optional
					String io_k8s_api_core_v1_GRPCAction_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
			io_k8s_api_core_v1_GitRepoVolumeSource {doc 'Represents a volume that is populated with the contents of a git repository Git repo volumes do not support ownership management Git repo volumes support SELinux relabelingDEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
				mandatory
					String io_k8s_api_core_v1_GitRepoVolumeSource_repository {doc 'repository is the URL'}
				optional
					String io_k8s_api_core_v1_GitRepoVolumeSource_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
					String io_k8s_api_core_v1_GitRepoVolumeSource_revision {doc 'revision is the commit hash for the specified revision'}
			io_k8s_api_core_v1_GlusterfsPersistentVolumeSource {doc 'Represents a Glusterfs mount that lasts the lifetime of a pod Glusterfs volumes do not support ownership management or SELinux relabeling'}
				mandatory
					String io_k8s_api_core_v1_GlusterfsPersistentVolumeSource_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
					String io_k8s_api_core_v1_GlusterfsPersistentVolumeSource_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
				optional
					String io_k8s_api_core_v1_GlusterfsPersistentVolumeSource_endpointsNamespace {doc 'endpointsNamespace is the namespace that contains Glusterfs endpoint If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
					io_k8s_api_core_v1_GlusterfsPersistentVolumeSource_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
			io_k8s_api_core_v1_GlusterfsVolumeSource {doc 'Represents a Glusterfs mount that lasts the lifetime of a pod Glusterfs volumes do not support ownership management or SELinux relabeling'}
				mandatory
					String io_k8s_api_core_v1_GlusterfsVolumeSource_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
					String io_k8s_api_core_v1_GlusterfsVolumeSource_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
				optional
					io_k8s_api_core_v1_GlusterfsVolumeSource_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
			io_k8s_api_core_v1_HTTPGetAction {doc 'HTTPGetAction describes an action based on HTTP Get requests'}
				mandatory
					io_k8s_api_core_v1_HTTPGetAction_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
						alternative
							String io_k8s_api_core_v1_HTTPGetAction_port_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_HTTPGetAction_port_asInteger {doc 'Sub-feature added of type Integer'}
				optional
					String io_k8s_api_core_v1_HTTPGetAction_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
					io_k8s_api_core_v1_HTTPGetAction_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
						mandatory
							String io_k8s_api_core_v1_HTTPGetAction_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
							String io_k8s_api_core_v1_HTTPGetAction_httpHeaders_value {doc 'The header field value'}
					String io_k8s_api_core_v1_HTTPGetAction_path {doc 'Path to access on the HTTP server'}
					String io_k8s_api_core_v1_HTTPGetAction_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
			io_k8s_api_core_v1_HTTPHeader {doc 'HTTPHeader describes a custom header to be used in HTTP probes'}
				mandatory
					String io_k8s_api_core_v1_HTTPHeader_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
					String io_k8s_api_core_v1_HTTPHeader_value {doc 'The header field value'}
			io_k8s_api_core_v1_HostAlias {doc 'HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod_s hosts file'}
				mandatory
					String io_k8s_api_core_v1_HostAlias_ip {doc 'IP address of the host file entry'}
				optional
					io_k8s_api_core_v1_HostAlias_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
						mandatory
							String io_k8s_api_core_v1_HostAlias_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_HostIP {doc 'HostIP represents a single IP address allocated to the host'}
				optional
					String io_k8s_api_core_v1_HostIP_ip {doc 'IP is the IP address assigned to the host'}
			io_k8s_api_core_v1_HostPathVolumeSource {doc 'Represents a host path mapped into a pod Host path volumes do not support ownership management or SELinux relabeling'}
				mandatory
					String io_k8s_api_core_v1_HostPathVolumeSource_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
				optional
					String io_k8s_api_core_v1_HostPathVolumeSource_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
			io_k8s_api_core_v1_ISCSIPersistentVolumeSource {doc 'ISCSIPersistentVolumeSource represents an ISCSI disk ISCSI volumes can only be mounted as read/write once ISCSI volumes support ownership management and SELinux relabeling'}
				mandatory
					String io_k8s_api_core_v1_ISCSIPersistentVolumeSource_iqn {doc 'iqn is Target iSCSI Qualified Name'}
					Integer io_k8s_api_core_v1_ISCSIPersistentVolumeSource_lun {doc 'lun is iSCSI Target Lun number'}
					String io_k8s_api_core_v1_ISCSIPersistentVolumeSource_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
				optional
					io_k8s_api_core_v1_ISCSIPersistentVolumeSource_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
					io_k8s_api_core_v1_ISCSIPersistentVolumeSource_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
					io_k8s_api_core_v1_ISCSIPersistentVolumeSource_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
						alternative
							io_k8s_api_core_v1_ISCSIPersistentVolumeSource_fsType_xfs {doc 'Specific value: xfs'}
							io_k8s_api_core_v1_ISCSIPersistentVolumeSource_fsType_ext4 {default, doc 'Specific value: ext4'}
							io_k8s_api_core_v1_ISCSIPersistentVolumeSource_fsType_ntfs {doc 'Specific value: ntfs'}
					String io_k8s_api_core_v1_ISCSIPersistentVolumeSource_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
					String io_k8s_api_core_v1_ISCSIPersistentVolumeSource_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
					io_k8s_api_core_v1_ISCSIPersistentVolumeSource_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
						mandatory
							String io_k8s_api_core_v1_ISCSIPersistentVolumeSource_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_ISCSIPersistentVolumeSource_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
					io_k8s_api_core_v1_ISCSIPersistentVolumeSource_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
						optional
							String io_k8s_api_core_v1_ISCSIPersistentVolumeSource_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
							String io_k8s_api_core_v1_ISCSIPersistentVolumeSource_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
			io_k8s_api_core_v1_ISCSIVolumeSource {doc 'Represents an ISCSI disk ISCSI volumes can only be mounted as read/write once ISCSI volumes support ownership management and SELinux relabeling'}
				mandatory
					String io_k8s_api_core_v1_ISCSIVolumeSource_iqn {doc 'iqn is the target iSCSI Qualified Name'}
					Integer io_k8s_api_core_v1_ISCSIVolumeSource_lun {doc 'lun represents iSCSI Target Lun number'}
					String io_k8s_api_core_v1_ISCSIVolumeSource_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
				optional
					io_k8s_api_core_v1_ISCSIVolumeSource_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
					io_k8s_api_core_v1_ISCSIVolumeSource_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
					io_k8s_api_core_v1_ISCSIVolumeSource_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
						alternative
							io_k8s_api_core_v1_ISCSIVolumeSource_fsType_xfs {doc 'Specific value: xfs'}
							io_k8s_api_core_v1_ISCSIVolumeSource_fsType_ext4 {default, doc 'Specific value: ext4'}
							io_k8s_api_core_v1_ISCSIVolumeSource_fsType_ntfs {doc 'Specific value: ntfs'}
					String io_k8s_api_core_v1_ISCSIVolumeSource_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
					String io_k8s_api_core_v1_ISCSIVolumeSource_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
					io_k8s_api_core_v1_ISCSIVolumeSource_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
						mandatory
							String io_k8s_api_core_v1_ISCSIVolumeSource_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_ISCSIVolumeSource_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
					io_k8s_api_core_v1_ISCSIVolumeSource_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
						optional
							String io_k8s_api_core_v1_ISCSIVolumeSource_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
			io_k8s_api_core_v1_KeyToPath {doc 'Maps a string key to a path within a volume'}
				mandatory
					String io_k8s_api_core_v1_KeyToPath_key {doc 'key is the key to project'}
					String io_k8s_api_core_v1_KeyToPath_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
				optional
					Integer io_k8s_api_core_v1_KeyToPath_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
			io_k8s_api_core_v1_Lifecycle {doc 'Lifecycle describes actions that the management system should take in response to container lifecycle events For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted'}
				optional
					io_k8s_api_core_v1_Lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
						optional
							io_k8s_api_core_v1_Lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
								optional
									io_k8s_api_core_v1_Lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
										mandatory
											String io_k8s_api_core_v1_Lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_Lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
								mandatory
									io_k8s_api_core_v1_Lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
										alternative
											String io_k8s_api_core_v1_Lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_Lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
								optional
									String io_k8s_api_core_v1_Lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
									io_k8s_api_core_v1_Lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
										mandatory
											String io_k8s_api_core_v1_Lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
											String io_k8s_api_core_v1_Lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
									String io_k8s_api_core_v1_Lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
									String io_k8s_api_core_v1_Lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
							io_k8s_api_core_v1_Lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
								mandatory
									Integer io_k8s_api_core_v1_Lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
							io_k8s_api_core_v1_Lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
								mandatory
									io_k8s_api_core_v1_Lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
										alternative
											String io_k8s_api_core_v1_Lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_Lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
								optional
									String io_k8s_api_core_v1_Lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
					io_k8s_api_core_v1_Lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
						optional
							io_k8s_api_core_v1_Lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
								optional
									io_k8s_api_core_v1_Lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
										mandatory
											String io_k8s_api_core_v1_Lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_Lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
								mandatory
									io_k8s_api_core_v1_Lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
										alternative
											String io_k8s_api_core_v1_Lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_Lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
								optional
									String io_k8s_api_core_v1_Lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
									io_k8s_api_core_v1_Lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
										mandatory
											String io_k8s_api_core_v1_Lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
											String io_k8s_api_core_v1_Lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
									String io_k8s_api_core_v1_Lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
									String io_k8s_api_core_v1_Lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
							io_k8s_api_core_v1_Lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
								mandatory
									Integer io_k8s_api_core_v1_Lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
							io_k8s_api_core_v1_Lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
								mandatory
									io_k8s_api_core_v1_Lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
										alternative
											String io_k8s_api_core_v1_Lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_Lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
								optional
									String io_k8s_api_core_v1_Lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
			io_k8s_api_core_v1_LifecycleHandler {doc 'LifecycleHandler defines a specific action that should be taken in a lifecycle hook One and only one of the fields, except TCPSocket must be specified'}
				optional
					io_k8s_api_core_v1_LifecycleHandler_exec {doc 'Exec specifies the action to take'}
						optional
							io_k8s_api_core_v1_LifecycleHandler_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
								mandatory
									String io_k8s_api_core_v1_LifecycleHandler_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_LifecycleHandler_httpGet {doc 'HTTPGet specifies the http request to perform'}
						mandatory
							io_k8s_api_core_v1_LifecycleHandler_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
								alternative
									String io_k8s_api_core_v1_LifecycleHandler_httpGet_port_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_LifecycleHandler_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
						optional
							String io_k8s_api_core_v1_LifecycleHandler_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
							io_k8s_api_core_v1_LifecycleHandler_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
								mandatory
									String io_k8s_api_core_v1_LifecycleHandler_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
									String io_k8s_api_core_v1_LifecycleHandler_httpGet_httpHeaders_value {doc 'The header field value'}
							String io_k8s_api_core_v1_LifecycleHandler_httpGet_path {doc 'Path to access on the HTTP server'}
							String io_k8s_api_core_v1_LifecycleHandler_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
					io_k8s_api_core_v1_LifecycleHandler_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
						mandatory
							Integer io_k8s_api_core_v1_LifecycleHandler_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
					io_k8s_api_core_v1_LifecycleHandler_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
						mandatory
							io_k8s_api_core_v1_LifecycleHandler_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
								alternative
									String io_k8s_api_core_v1_LifecycleHandler_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_LifecycleHandler_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
						optional
							String io_k8s_api_core_v1_LifecycleHandler_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
			io_k8s_api_core_v1_LimitRange {doc 'LimitRange sets resource usage limits for each kind of resource in a Namespace'}
				optional
					String io_k8s_api_core_v1_LimitRange_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_LimitRange_kind {default 'LimitRange', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_LimitRange_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_core_v1_LimitRange_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_core_v1_LimitRange_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_LimitRange_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_LimitRange_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_LimitRange_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_LimitRange_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_core_v1_LimitRange_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_core_v1_LimitRange_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_LimitRange_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_LimitRange_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_LimitRange_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_core_v1_LimitRange_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_core_v1_LimitRange_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_core_v1_LimitRange_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_core_v1_LimitRange_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_LimitRange_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_LimitRange_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_core_v1_LimitRange_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_core_v1_LimitRange_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_core_v1_LimitRange_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_core_v1_LimitRange_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_core_v1_LimitRange_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_core_v1_LimitRange_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_core_v1_LimitRange_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_core_v1_LimitRange_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_core_v1_LimitRange_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_core_v1_LimitRange_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_core_v1_LimitRange_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_core_v1_LimitRange_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_LimitRange_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_core_v1_LimitRange_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_core_v1_LimitRange_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_LimitRange_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_LimitRange_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_LimitRange_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_LimitRange_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_core_v1_LimitRange_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_core_v1_LimitRange_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_core_v1_LimitRange_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_LimitRange_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_core_v1_LimitRange_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_core_v1_LimitRange_spec {doc 'Spec defines the limits enforced More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						mandatory
							io_k8s_api_core_v1_LimitRange_spec_limits cardinality [1..*] {doc 'Limits is the list of LimitRangeItem objects that are enforced'}
								mandatory
									String io_k8s_api_core_v1_LimitRange_spec_limits_type {doc 'Type of resource that this limit applies to'}
								optional
									io_k8s_api_core_v1_LimitRange_spec_limits_default cardinality [1..*] {doc 'Default resource requirement limit value by resource name if resource limit is omitted'}
										alternative
											String io_k8s_api_core_v1_LimitRange_spec_limits_default_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_LimitRange_spec_limits_default_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_LimitRange_spec_limits_defaultRequest cardinality [1..*] {doc 'DefaultRequest is the default resource requirement request value by resource name if resource request is omitted'}
										alternative
											String io_k8s_api_core_v1_LimitRange_spec_limits_defaultRequest_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_LimitRange_spec_limits_defaultRequest_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_LimitRange_spec_limits_max cardinality [1..*] {doc 'Max usage constraints on this kind by resource name'}
										alternative
											String io_k8s_api_core_v1_LimitRange_spec_limits_max_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_LimitRange_spec_limits_max_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_LimitRange_spec_limits_maxLimitRequestRatio cardinality [1..*] {doc 'MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource'}
										alternative
											String io_k8s_api_core_v1_LimitRange_spec_limits_maxLimitRequestRatio_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_LimitRange_spec_limits_maxLimitRequestRatio_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_LimitRange_spec_limits_min cardinality [1..*] {doc 'Min usage constraints on this kind by resource name'}
										alternative
											String io_k8s_api_core_v1_LimitRange_spec_limits_min_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_LimitRange_spec_limits_min_asNumber {doc 'Sub-feature added of type Number'}
			io_k8s_api_core_v1_LimitRangeItem {doc 'LimitRangeItem defines a min/max usage limit for any resource that matches on kind'}
				mandatory
					String io_k8s_api_core_v1_LimitRangeItem_type {doc 'Type of resource that this limit applies to'}
				optional
					io_k8s_api_core_v1_LimitRangeItem_default cardinality [1..*] {doc 'Default resource requirement limit value by resource name if resource limit is omitted'}
						alternative
							String io_k8s_api_core_v1_LimitRangeItem_default_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_LimitRangeItem_default_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_core_v1_LimitRangeItem_defaultRequest cardinality [1..*] {doc 'DefaultRequest is the default resource requirement request value by resource name if resource request is omitted'}
						alternative
							String io_k8s_api_core_v1_LimitRangeItem_defaultRequest_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_LimitRangeItem_defaultRequest_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_core_v1_LimitRangeItem_max cardinality [1..*] {doc 'Max usage constraints on this kind by resource name'}
						alternative
							String io_k8s_api_core_v1_LimitRangeItem_max_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_LimitRangeItem_max_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_core_v1_LimitRangeItem_maxLimitRequestRatio cardinality [1..*] {doc 'MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource'}
						alternative
							String io_k8s_api_core_v1_LimitRangeItem_maxLimitRequestRatio_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_LimitRangeItem_maxLimitRequestRatio_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_core_v1_LimitRangeItem_min cardinality [1..*] {doc 'Min usage constraints on this kind by resource name'}
						alternative
							String io_k8s_api_core_v1_LimitRangeItem_min_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_LimitRangeItem_min_asNumber {doc 'Sub-feature added of type Number'}
			io_k8s_api_core_v1_LimitRangeList {doc 'LimitRangeList is a list of LimitRange items'}
				mandatory
					io_k8s_api_core_v1_LimitRangeList_items cardinality [1..*] {doc 'Items is a list of LimitRange objects More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
						optional
							String io_k8s_api_core_v1_LimitRangeList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_core_v1_LimitRangeList_items_kind {default 'LimitRange', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_core_v1_LimitRangeList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_core_v1_LimitRangeList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_core_v1_LimitRangeList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_LimitRangeList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_LimitRangeList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_LimitRangeList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_LimitRangeList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_core_v1_LimitRangeList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_core_v1_LimitRangeList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_LimitRangeList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_LimitRangeList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_LimitRangeList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_core_v1_LimitRangeList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_core_v1_LimitRangeList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_core_v1_LimitRangeList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_core_v1_LimitRangeList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_LimitRangeList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_LimitRangeList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_core_v1_LimitRangeList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_core_v1_LimitRangeList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_core_v1_LimitRangeList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_core_v1_LimitRangeList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_core_v1_LimitRangeList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_core_v1_LimitRangeList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_core_v1_LimitRangeList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_core_v1_LimitRangeList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_core_v1_LimitRangeList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_core_v1_LimitRangeList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_core_v1_LimitRangeList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_core_v1_LimitRangeList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_LimitRangeList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_LimitRangeList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_core_v1_LimitRangeList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_LimitRangeList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_core_v1_LimitRangeList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_core_v1_LimitRangeList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_core_v1_LimitRangeList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_core_v1_LimitRangeList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_core_v1_LimitRangeList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_core_v1_LimitRangeList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_LimitRangeList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_core_v1_LimitRangeList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_core_v1_LimitRangeList_items_spec {doc 'Spec defines the limits enforced More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									io_k8s_api_core_v1_LimitRangeList_items_spec_limits cardinality [1..*] {doc 'Limits is the list of LimitRangeItem objects that are enforced'}
										mandatory
											String io_k8s_api_core_v1_LimitRangeList_items_spec_limits_type {doc 'Type of resource that this limit applies to'}
										optional
											io_k8s_api_core_v1_LimitRangeList_items_spec_limits_default cardinality [1..*] {doc 'Default resource requirement limit value by resource name if resource limit is omitted'}
												alternative
													String io_k8s_api_core_v1_LimitRangeList_items_spec_limits_default_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_LimitRangeList_items_spec_limits_default_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_LimitRangeList_items_spec_limits_defaultRequest cardinality [1..*] {doc 'DefaultRequest is the default resource requirement request value by resource name if resource request is omitted'}
												alternative
													String io_k8s_api_core_v1_LimitRangeList_items_spec_limits_defaultRequest_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_LimitRangeList_items_spec_limits_defaultRequest_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_LimitRangeList_items_spec_limits_max cardinality [1..*] {doc 'Max usage constraints on this kind by resource name'}
												alternative
													String io_k8s_api_core_v1_LimitRangeList_items_spec_limits_max_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_LimitRangeList_items_spec_limits_max_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_LimitRangeList_items_spec_limits_maxLimitRequestRatio cardinality [1..*] {doc 'MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource'}
												alternative
													String io_k8s_api_core_v1_LimitRangeList_items_spec_limits_maxLimitRequestRatio_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_LimitRangeList_items_spec_limits_maxLimitRequestRatio_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_LimitRangeList_items_spec_limits_min cardinality [1..*] {doc 'Min usage constraints on this kind by resource name'}
												alternative
													String io_k8s_api_core_v1_LimitRangeList_items_spec_limits_min_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_LimitRangeList_items_spec_limits_min_asNumber {doc 'Sub-feature added of type Number'}
				optional
					String io_k8s_api_core_v1_LimitRangeList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_LimitRangeList_kind {default 'LimitRangeList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_LimitRangeList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_core_v1_LimitRangeList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_core_v1_LimitRangeList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_core_v1_LimitRangeList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_LimitRangeList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_core_v1_LimitRangeSpec {doc 'LimitRangeSpec defines a min/max usage limit for resources that match on kind'}
				mandatory
					io_k8s_api_core_v1_LimitRangeSpec_limits cardinality [1..*] {doc 'Limits is the list of LimitRangeItem objects that are enforced'}
						mandatory
							String io_k8s_api_core_v1_LimitRangeSpec_limits_type {doc 'Type of resource that this limit applies to'}
						optional
							io_k8s_api_core_v1_LimitRangeSpec_limits_default cardinality [1..*] {doc 'Default resource requirement limit value by resource name if resource limit is omitted'}
								alternative
									String io_k8s_api_core_v1_LimitRangeSpec_limits_default_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_LimitRangeSpec_limits_default_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_LimitRangeSpec_limits_defaultRequest cardinality [1..*] {doc 'DefaultRequest is the default resource requirement request value by resource name if resource request is omitted'}
								alternative
									String io_k8s_api_core_v1_LimitRangeSpec_limits_defaultRequest_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_LimitRangeSpec_limits_defaultRequest_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_LimitRangeSpec_limits_max cardinality [1..*] {doc 'Max usage constraints on this kind by resource name'}
								alternative
									String io_k8s_api_core_v1_LimitRangeSpec_limits_max_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_LimitRangeSpec_limits_max_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_LimitRangeSpec_limits_maxLimitRequestRatio cardinality [1..*] {doc 'MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource'}
								alternative
									String io_k8s_api_core_v1_LimitRangeSpec_limits_maxLimitRequestRatio_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_LimitRangeSpec_limits_maxLimitRequestRatio_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_LimitRangeSpec_limits_min cardinality [1..*] {doc 'Min usage constraints on this kind by resource name'}
								alternative
									String io_k8s_api_core_v1_LimitRangeSpec_limits_min_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_LimitRangeSpec_limits_min_asNumber {doc 'Sub-feature added of type Number'}
			io_k8s_api_core_v1_LoadBalancerIngress {doc 'LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point'}
				optional
					String io_k8s_api_core_v1_LoadBalancerIngress_hostname {doc 'Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)'}
					String io_k8s_api_core_v1_LoadBalancerIngress_ip {doc 'IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)'}
					String io_k8s_api_core_v1_LoadBalancerIngress_ipMode {doc 'IPMode specifies how the load-balancer IP behaves, and may only be specified when the ip field is specified Setting this to VIP indicates that traffic is delivered to the node with the destination set to the load-balancer_s IP and port Setting this to Proxy indicates that traffic is delivered to the node or pod with the destination set to the node_s IP and node port or the pod_s IP and port Service implementations may use this information to adjust traffic routing'}
					io_k8s_api_core_v1_LoadBalancerIngress_ports cardinality [1..*] {doc 'Ports is a list of records of service ports If used, every port defined in the service should have an entry in it'}
						mandatory
							Integer io_k8s_api_core_v1_LoadBalancerIngress_ports_port {doc 'Port is the port number of the service port of which status is recorded here'}
							io_k8s_api_core_v1_LoadBalancerIngress_ports_protocol {doc 'Protocol is the protocol of the service port of which status is recorded here The supported values are: TCP, UDP, SCTP'}
								alternative
									io_k8s_api_core_v1_LoadBalancerIngress_ports_protocol_SCTP {doc 'Specific value: SCTP'}
									io_k8s_api_core_v1_LoadBalancerIngress_ports_protocol_TCP {doc 'Specific value: TCP'}
									io_k8s_api_core_v1_LoadBalancerIngress_ports_protocol_UDP {doc 'Specific value: UDP'}
						optional
							String io_k8s_api_core_v1_LoadBalancerIngress_ports_error {doc 'Error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use  CamelCase names- cloud provider specific error values must have names that comply with the  format fooexamplecom/CamelCase'}
			io_k8s_api_core_v1_LoadBalancerStatus {doc 'LoadBalancerStatus represents the status of a load-balancer'}
				optional
					io_k8s_api_core_v1_LoadBalancerStatus_ingress cardinality [1..*] {doc 'Ingress is a list containing ingress points for the load-balancer Traffic intended for the service should be sent to these ingress points'}
						optional
							String io_k8s_api_core_v1_LoadBalancerStatus_ingress_hostname {doc 'Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)'}
							String io_k8s_api_core_v1_LoadBalancerStatus_ingress_ip {doc 'IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)'}
							String io_k8s_api_core_v1_LoadBalancerStatus_ingress_ipMode {doc 'IPMode specifies how the load-balancer IP behaves, and may only be specified when the ip field is specified Setting this to VIP indicates that traffic is delivered to the node with the destination set to the load-balancer_s IP and port Setting this to Proxy indicates that traffic is delivered to the node or pod with the destination set to the node_s IP and node port or the pod_s IP and port Service implementations may use this information to adjust traffic routing'}
							io_k8s_api_core_v1_LoadBalancerStatus_ingress_ports cardinality [1..*] {doc 'Ports is a list of records of service ports If used, every port defined in the service should have an entry in it'}
								mandatory
									Integer io_k8s_api_core_v1_LoadBalancerStatus_ingress_ports_port {doc 'Port is the port number of the service port of which status is recorded here'}
									io_k8s_api_core_v1_LoadBalancerStatus_ingress_ports_protocol {doc 'Protocol is the protocol of the service port of which status is recorded here The supported values are: TCP, UDP, SCTP'}
										alternative
											io_k8s_api_core_v1_LoadBalancerStatus_ingress_ports_protocol_SCTP {doc 'Specific value: SCTP'}
											io_k8s_api_core_v1_LoadBalancerStatus_ingress_ports_protocol_TCP {doc 'Specific value: TCP'}
											io_k8s_api_core_v1_LoadBalancerStatus_ingress_ports_protocol_UDP {doc 'Specific value: UDP'}
								optional
									String io_k8s_api_core_v1_LoadBalancerStatus_ingress_ports_error {doc 'Error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use  CamelCase names- cloud provider specific error values must have names that comply with the  format fooexamplecom/CamelCase'}
			io_k8s_api_core_v1_LocalObjectReference {doc 'LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace'}
				optional
					String io_k8s_api_core_v1_LocalObjectReference_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
			io_k8s_api_core_v1_LocalVolumeSource {doc 'Local represents directly-attached storage with node affinity (Beta feature)'}
				mandatory
					String io_k8s_api_core_v1_LocalVolumeSource_path {doc 'path of the full path to the volume on the node It can be either a directory or block device (disk, partition, )'}
				optional
					io_k8s_api_core_v1_LocalVolumeSource_fsType {doc 'fsType is the filesystem type to mount It applies only when the Path is a block device Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default value is to auto-select a filesystem if unspecified'}
						alternative
							io_k8s_api_core_v1_LocalVolumeSource_fsType_xfs {doc 'Specific value: xfs'}
							io_k8s_api_core_v1_LocalVolumeSource_fsType_ext4 {doc 'Specific value: ext4'}
							io_k8s_api_core_v1_LocalVolumeSource_fsType_ntfs {doc 'Specific value: ntfs'}
			io_k8s_api_core_v1_ModifyVolumeStatus {doc 'ModifyVolumeStatus represents the status object of ControllerModifyVolume operation'}
				mandatory
					io_k8s_api_core_v1_ModifyVolumeStatus_status {doc 'status is the status of the ControllerModifyVolume operation It can be in any of following states: - Pending   Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as   the specified VolumeAttributesClass not existing - InProgress   InProgress indicates that the volume is being modified - Infeasible  Infeasible indicates that the request has been rejected as invalid by the CSI driver To	  resolve the error, a valid VolumeAttributesClass needs to be specifiedNote: New statuses can be added in the future Consumers should check for unknown statuses and fail appropriately'}
						alternative
							io_k8s_api_core_v1_ModifyVolumeStatus_status_Pending {doc 'Specific value: Pending'}
							io_k8s_api_core_v1_ModifyVolumeStatus_status_Infeasible {doc 'Specific value: Infeasible'}
							io_k8s_api_core_v1_ModifyVolumeStatus_status_InProgress {doc 'Specific value: InProgress'}
				optional
					String io_k8s_api_core_v1_ModifyVolumeStatus_targetVolumeAttributesClassName {doc 'targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled'}
			io_k8s_api_core_v1_NFSVolumeSource {doc 'Represents an NFS mount that lasts the lifetime of a pod NFS volumes do not support ownership management or SELinux relabeling'}
				mandatory
					String io_k8s_api_core_v1_NFSVolumeSource_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
					String io_k8s_api_core_v1_NFSVolumeSource_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
				optional
					io_k8s_api_core_v1_NFSVolumeSource_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
			io_k8s_api_core_v1_Namespace {doc 'Namespace provides a scope for Names Use of multiple namespaces is optional'}
				optional
					String io_k8s_api_core_v1_Namespace_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_Namespace_kind {default 'Namespace', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_Namespace_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_core_v1_Namespace_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_core_v1_Namespace_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_Namespace_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_Namespace_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_Namespace_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_Namespace_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_core_v1_Namespace_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_core_v1_Namespace_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_Namespace_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_Namespace_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_Namespace_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_core_v1_Namespace_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_core_v1_Namespace_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_core_v1_Namespace_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_core_v1_Namespace_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_Namespace_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_Namespace_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_core_v1_Namespace_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_core_v1_Namespace_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_core_v1_Namespace_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_core_v1_Namespace_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_core_v1_Namespace_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_core_v1_Namespace_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_core_v1_Namespace_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_core_v1_Namespace_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_core_v1_Namespace_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_core_v1_Namespace_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_core_v1_Namespace_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_core_v1_Namespace_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_Namespace_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_core_v1_Namespace_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_core_v1_Namespace_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_Namespace_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_Namespace_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_Namespace_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_Namespace_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_core_v1_Namespace_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_core_v1_Namespace_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_core_v1_Namespace_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_Namespace_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_core_v1_Namespace_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_core_v1_Namespace_spec {doc 'Spec defines the behavior of the Namespace More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							io_k8s_api_core_v1_Namespace_spec_finalizers cardinality [1..*] {doc 'Finalizers is an opaque list of values that must be empty to permanently remove object from storage More info: https:_kubernetesio/docs/tasks/administer-cluster/namespaces/'}
								mandatory
									String io_k8s_api_core_v1_Namespace_spec_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_Namespace_status {doc 'Status describes the current status of a Namespace More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							io_k8s_api_core_v1_Namespace_status_conditions cardinality [1..*] {doc 'Represents the latest available observations of a namespace_s current state'}
								mandatory
									io_k8s_api_core_v1_Namespace_status_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
										alternative
											io_k8s_api_core_v1_Namespace_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_core_v1_Namespace_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_core_v1_Namespace_status_conditions_status_True {doc 'Specific value: True'}
									String io_k8s_api_core_v1_Namespace_status_conditions_type {doc 'Type of namespace controller condition'}
								optional
									io_k8s_api_core_v1_Namespace_status_conditions_lastTransitionTime
										optional
											String io_k8s_api_core_v1_Namespace_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_Namespace_status_conditions_message
									String io_k8s_api_core_v1_Namespace_status_conditions_reason
							String io_k8s_api_core_v1_Namespace_status_phase {doc 'Phase is the current lifecycle phase of the namespace More info: https:_kubernetesio/docs/tasks/administer-cluster/namespaces/'}
			io_k8s_api_core_v1_NamespaceCondition {doc 'NamespaceCondition contains details about state of namespace'}
				mandatory
					io_k8s_api_core_v1_NamespaceCondition_status {doc 'Status of the condition, one of True, False, Unknown'}
						alternative
							io_k8s_api_core_v1_NamespaceCondition_status_Unknown {doc 'Specific value: Unknown'}
							io_k8s_api_core_v1_NamespaceCondition_status_False {doc 'Specific value: False'}
							io_k8s_api_core_v1_NamespaceCondition_status_True {doc 'Specific value: True'}
					String io_k8s_api_core_v1_NamespaceCondition_type {doc 'Type of namespace controller condition'}
				optional
					io_k8s_api_core_v1_NamespaceCondition_lastTransitionTime
						optional
							String io_k8s_api_core_v1_NamespaceCondition_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_api_core_v1_NamespaceCondition_message
					String io_k8s_api_core_v1_NamespaceCondition_reason
			io_k8s_api_core_v1_NamespaceList {doc 'NamespaceList is a list of Namespaces'}
				mandatory
					io_k8s_api_core_v1_NamespaceList_items cardinality [1..*] {doc 'Items is the list of Namespace objects in the list More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
						optional
							String io_k8s_api_core_v1_NamespaceList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_core_v1_NamespaceList_items_kind {default 'Namespace', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_core_v1_NamespaceList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_core_v1_NamespaceList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_core_v1_NamespaceList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_NamespaceList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_NamespaceList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_NamespaceList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_NamespaceList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_core_v1_NamespaceList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_core_v1_NamespaceList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_NamespaceList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_NamespaceList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_NamespaceList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_core_v1_NamespaceList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_core_v1_NamespaceList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_core_v1_NamespaceList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_core_v1_NamespaceList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_NamespaceList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_NamespaceList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_core_v1_NamespaceList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_core_v1_NamespaceList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_core_v1_NamespaceList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_core_v1_NamespaceList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_core_v1_NamespaceList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_core_v1_NamespaceList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_core_v1_NamespaceList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_core_v1_NamespaceList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_core_v1_NamespaceList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_core_v1_NamespaceList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_core_v1_NamespaceList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_core_v1_NamespaceList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_NamespaceList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_NamespaceList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_core_v1_NamespaceList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_NamespaceList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_core_v1_NamespaceList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_core_v1_NamespaceList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_core_v1_NamespaceList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_core_v1_NamespaceList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_core_v1_NamespaceList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_core_v1_NamespaceList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_NamespaceList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_core_v1_NamespaceList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_core_v1_NamespaceList_items_spec {doc 'Spec defines the behavior of the Namespace More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								optional
									io_k8s_api_core_v1_NamespaceList_items_spec_finalizers cardinality [1..*] {doc 'Finalizers is an opaque list of values that must be empty to permanently remove object from storage More info: https:_kubernetesio/docs/tasks/administer-cluster/namespaces/'}
										mandatory
											String io_k8s_api_core_v1_NamespaceList_items_spec_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_NamespaceList_items_status {doc 'Status describes the current status of a Namespace More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								optional
									io_k8s_api_core_v1_NamespaceList_items_status_conditions cardinality [1..*] {doc 'Represents the latest available observations of a namespace_s current state'}
										mandatory
											io_k8s_api_core_v1_NamespaceList_items_status_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
												alternative
													io_k8s_api_core_v1_NamespaceList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_api_core_v1_NamespaceList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_api_core_v1_NamespaceList_items_status_conditions_status_True {doc 'Specific value: True'}
											String io_k8s_api_core_v1_NamespaceList_items_status_conditions_type {doc 'Type of namespace controller condition'}
										optional
											io_k8s_api_core_v1_NamespaceList_items_status_conditions_lastTransitionTime
												optional
													String io_k8s_api_core_v1_NamespaceList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_core_v1_NamespaceList_items_status_conditions_message
											String io_k8s_api_core_v1_NamespaceList_items_status_conditions_reason
									String io_k8s_api_core_v1_NamespaceList_items_status_phase {doc 'Phase is the current lifecycle phase of the namespace More info: https:_kubernetesio/docs/tasks/administer-cluster/namespaces/'}
				optional
					String io_k8s_api_core_v1_NamespaceList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_NamespaceList_kind {default 'NamespaceList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_NamespaceList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_core_v1_NamespaceList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_core_v1_NamespaceList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_core_v1_NamespaceList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_NamespaceList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_core_v1_NamespaceSpec {doc 'NamespaceSpec describes the attributes on a Namespace'}
				optional
					io_k8s_api_core_v1_NamespaceSpec_finalizers cardinality [1..*] {doc 'Finalizers is an opaque list of values that must be empty to permanently remove object from storage More info: https:_kubernetesio/docs/tasks/administer-cluster/namespaces/'}
						mandatory
							String io_k8s_api_core_v1_NamespaceSpec_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_NamespaceStatus {doc 'NamespaceStatus is information about the current status of a Namespace'}
				optional
					io_k8s_api_core_v1_NamespaceStatus_conditions cardinality [1..*] {doc 'Represents the latest available observations of a namespace_s current state'}
						mandatory
							io_k8s_api_core_v1_NamespaceStatus_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
								alternative
									io_k8s_api_core_v1_NamespaceStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_core_v1_NamespaceStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_core_v1_NamespaceStatus_conditions_status_True {doc 'Specific value: True'}
							String io_k8s_api_core_v1_NamespaceStatus_conditions_type {doc 'Type of namespace controller condition'}
						optional
							io_k8s_api_core_v1_NamespaceStatus_conditions_lastTransitionTime
								optional
									String io_k8s_api_core_v1_NamespaceStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_NamespaceStatus_conditions_message
							String io_k8s_api_core_v1_NamespaceStatus_conditions_reason
					String io_k8s_api_core_v1_NamespaceStatus_phase {doc 'Phase is the current lifecycle phase of the namespace More info: https:_kubernetesio/docs/tasks/administer-cluster/namespaces/'}
			io_k8s_api_core_v1_Node {doc 'Node is a worker node in Kubernetes Each node will have a unique identifier in the cache (ie in etcd)'}
				optional
					String io_k8s_api_core_v1_Node_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_Node_kind {default 'Node', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_Node_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_core_v1_Node_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_core_v1_Node_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_Node_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_Node_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_Node_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_Node_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_core_v1_Node_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_core_v1_Node_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_Node_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_Node_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_Node_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_core_v1_Node_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_core_v1_Node_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_core_v1_Node_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_core_v1_Node_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_Node_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_Node_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_core_v1_Node_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_core_v1_Node_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_core_v1_Node_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_core_v1_Node_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_core_v1_Node_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_core_v1_Node_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_core_v1_Node_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_core_v1_Node_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_core_v1_Node_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_core_v1_Node_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_core_v1_Node_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_core_v1_Node_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_Node_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_core_v1_Node_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_core_v1_Node_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_Node_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_Node_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_Node_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_Node_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_core_v1_Node_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_core_v1_Node_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_core_v1_Node_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_Node_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_core_v1_Node_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_core_v1_Node_spec {doc 'Spec defines the behavior of a node https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							io_k8s_api_core_v1_Node_spec_configSource {doc 'Deprecated: Previously used to specify the source of the node_s configuration for the DynamicKubeletConfig feature This feature is removed'}
								optional
									io_k8s_api_core_v1_Node_spec_configSource_configMap {doc 'ConfigMap is a reference to a Node_s ConfigMap'}
										mandatory
											String io_k8s_api_core_v1_Node_spec_configSource_configMap_kubeletConfigKey {doc 'KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases'}
											String io_k8s_api_core_v1_Node_spec_configSource_configMap_name {doc 'Name is the metadataname of the referenced ConfigMap This field is required in all cases'}
											String io_k8s_api_core_v1_Node_spec_configSource_configMap_namespace {doc 'Namespace is the metadatanamespace of the referenced ConfigMap This field is required in all cases'}
										optional
											String io_k8s_api_core_v1_Node_spec_configSource_configMap_resourceVersion {doc 'ResourceVersion is the metadataResourceVersion of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
											String io_k8s_api_core_v1_Node_spec_configSource_configMap_uid {doc 'UID is the metadataUID of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
							String io_k8s_api_core_v1_Node_spec_externalID {doc 'Deprecated Not all kubelets will set this field Remove field after 113 see: https:_issuesk8sio/61966'}
							String io_k8s_api_core_v1_Node_spec_podCIDR {doc 'PodCIDR represents the pod IP range assigned to the node'}
							io_k8s_api_core_v1_Node_spec_podCIDRs cardinality [1..*] {doc 'podCIDRs represents the IP ranges assigned to the node for usage by Pods on that node If this field is specified, the 0th entry must match the podCIDR field It may contain at most 1 value for each of IPv4 and IPv6'}
								mandatory
									String io_k8s_api_core_v1_Node_spec_podCIDRs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_core_v1_Node_spec_providerID {doc 'ID of the node assigned by the cloud provider in the format: <ProviderName>:_<ProviderSpecificNodeID>'}
							io_k8s_api_core_v1_Node_spec_taints cardinality [1..*] {doc 'If specified, the node_s taints'}
								mandatory
									String io_k8s_api_core_v1_Node_spec_taints_effect {doc 'Required The effect of the taint on pods that do not tolerate the taint Valid effects are NoSchedule, PreferNoSchedule and NoExecute'}
									String io_k8s_api_core_v1_Node_spec_taints_key {doc 'Required The taint key to be applied to a node'}
								optional
									io_k8s_api_core_v1_Node_spec_taints_timeAdded {doc 'TimeAdded represents the time at which the taint was added It is only written for NoExecute taints'}
										optional
											String io_k8s_api_core_v1_Node_spec_taints_timeAdded_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_Node_spec_taints_value {doc 'The taint value corresponding to the taint key'}
							io_k8s_api_core_v1_Node_spec_unschedulable {doc 'Unschedulable controls node schedulability of new pods By default, node is schedulable More info: https:_kubernetesio/docs/concepts/nodes/node/#manual-node-administration'}
					io_k8s_api_core_v1_Node_status {doc 'Most recently observed status of the node Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							io_k8s_api_core_v1_Node_status_addresses cardinality [1..*] {doc 'List of addresses reachable to the node Queried from cloud provider, if available More info: https:_kubernetesio/docs/concepts/nodes/node/#addresses Note: This field is declared as mergeable, but the merge key is not sufficiently unique, which can cause data corruption when it is merged Callers should instead use a full-replacement patch See https:_prk8sio/79391 for an example Consumers should assume that addresses can change during the lifetime of a Node However, there are some exceptions where this may not be possible, such as Pods that inherit a Node_s address in its own status or consumers of the downward API (statushostIP)'}
								mandatory
									String io_k8s_api_core_v1_Node_status_addresses_address {doc 'The node address'}
									io_k8s_api_core_v1_Node_status_addresses_type {doc 'Node address type, one of Hostname, ExternalIP or InternalIP'}
										alternative
											io_k8s_api_core_v1_Node_status_addresses_type_ExternalIP {doc 'Specific value: ExternalIP'}
											io_k8s_api_core_v1_Node_status_addresses_type_Hostname {doc 'Specific value: Hostname'}
											io_k8s_api_core_v1_Node_status_addresses_type_InternalIP {doc 'Specific value: InternalIP'}
							io_k8s_api_core_v1_Node_status_allocatable cardinality [1..*] {doc 'Allocatable represents the resources of a node that are available for scheduling Defaults to Capacity'}
								alternative
									String io_k8s_api_core_v1_Node_status_allocatable_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_Node_status_allocatable_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_Node_status_capacity cardinality [1..*] {doc 'Capacity represents the total resources of a node More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#capacity'}
								alternative
									String io_k8s_api_core_v1_Node_status_capacity_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_Node_status_capacity_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_Node_status_conditions cardinality [1..*] {doc 'Conditions is an array of current observed node conditions More info: https:_kubernetesio/docs/concepts/nodes/node/#condition'}
								mandatory
									io_k8s_api_core_v1_Node_status_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
										alternative
											io_k8s_api_core_v1_Node_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_core_v1_Node_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_core_v1_Node_status_conditions_status_True {doc 'Specific value: True'}
									String io_k8s_api_core_v1_Node_status_conditions_type {doc 'Type of node condition'}
								optional
									io_k8s_api_core_v1_Node_status_conditions_lastHeartbeatTime {doc 'Last time we got an update on a given condition'}
										optional
											String io_k8s_api_core_v1_Node_status_conditions_lastHeartbeatTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_Node_status_conditions_lastTransitionTime {doc 'Last time the condition transit from one status to another'}
										optional
											String io_k8s_api_core_v1_Node_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_Node_status_conditions_message {doc 'Human readable message indicating details about last transition'}
									String io_k8s_api_core_v1_Node_status_conditions_reason {doc '(brief) reason for the condition_s last transition'}
							io_k8s_api_core_v1_Node_status_config {doc 'Status of the config assigned to the node via the dynamic Kubelet config feature'}
								optional
									io_k8s_api_core_v1_Node_status_config_active {doc 'Active reports the checkpointed config the node is actively using Active will represent either the current version of the Assigned config, or the current LastKnownGood config, depending on whether attempting to use the Assigned config results in an error'}
										optional
											io_k8s_api_core_v1_Node_status_config_active_configMap {doc 'ConfigMap is a reference to a Node_s ConfigMap'}
												mandatory
													String io_k8s_api_core_v1_Node_status_config_active_configMap_kubeletConfigKey {doc 'KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases'}
													String io_k8s_api_core_v1_Node_status_config_active_configMap_name {doc 'Name is the metadataname of the referenced ConfigMap This field is required in all cases'}
													String io_k8s_api_core_v1_Node_status_config_active_configMap_namespace {doc 'Namespace is the metadatanamespace of the referenced ConfigMap This field is required in all cases'}
												optional
													String io_k8s_api_core_v1_Node_status_config_active_configMap_resourceVersion {doc 'ResourceVersion is the metadataResourceVersion of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
													String io_k8s_api_core_v1_Node_status_config_active_configMap_uid {doc 'UID is the metadataUID of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
									io_k8s_api_core_v1_Node_status_config_assigned {doc 'Assigned reports the checkpointed config the node will try to use When NodeSpecConfigSource is updated, the node checkpoints the associated config payload to local disk, along with a record indicating intended config The node refers to this record to choose its config checkpoint, and reports this record in Assigned Assigned only updates in the status after the record has been checkpointed to disk When the Kubelet is restarted, it tries to make the Assigned config the Active config by loading and validating the checkpointed payload identified by Assigned'}
										optional
											io_k8s_api_core_v1_Node_status_config_assigned_configMap {doc 'ConfigMap is a reference to a Node_s ConfigMap'}
												mandatory
													String io_k8s_api_core_v1_Node_status_config_assigned_configMap_kubeletConfigKey {doc 'KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases'}
													String io_k8s_api_core_v1_Node_status_config_assigned_configMap_name {doc 'Name is the metadataname of the referenced ConfigMap This field is required in all cases'}
													String io_k8s_api_core_v1_Node_status_config_assigned_configMap_namespace {doc 'Namespace is the metadatanamespace of the referenced ConfigMap This field is required in all cases'}
												optional
													String io_k8s_api_core_v1_Node_status_config_assigned_configMap_resourceVersion {doc 'ResourceVersion is the metadataResourceVersion of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
													String io_k8s_api_core_v1_Node_status_config_assigned_configMap_uid {doc 'UID is the metadataUID of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
									String io_k8s_api_core_v1_Node_status_config_error {doc 'Error describes any problems reconciling the SpecConfigSource to the Active config Errors may occur, for example, attempting to checkpoint SpecConfigSource to the local Assigned record, attempting to checkpoint the payload associated with SpecConfigSource, attempting to load or validate the Assigned config, etc Errors may occur at different points while syncing config Earlier errors (eg download or checkpointing errors) will not result in a rollback to LastKnownGood, and may resolve across Kubelet retries Later errors (eg loading or validating a checkpointed config) will result in a rollback to LastKnownGood In the latter case, it is usually possible to resolve the error by fixing the config assigned in SpecConfigSource You can find additional information for debugging by searching the error message in the Kubelet log Error is a human-readable description of the error state; machines can check whether or not Error is empty, but should not rely on the stability of the Error text across Kubelet versions'}
									io_k8s_api_core_v1_Node_status_config_lastKnownGood {doc 'LastKnownGood reports the checkpointed config the node will fall back to when it encounters an error attempting to use the Assigned config The Assigned config becomes the LastKnownGood config when the node determines that the Assigned config is stable and correct This is currently implemented as a 10-minute soak period starting when the local record of Assigned config is updated If the Assigned config is Active at the end of this period, it becomes the LastKnownGood Note that if SpecConfigSource is reset to nil (use local defaults), the LastKnownGood is also immediately reset to nil, because the local default config is always assumed good You should not make assumptions about the node_s method of determining config stability and correctness, as this may change or become configurable in the future'}
										optional
											io_k8s_api_core_v1_Node_status_config_lastKnownGood_configMap {doc 'ConfigMap is a reference to a Node_s ConfigMap'}
												mandatory
													String io_k8s_api_core_v1_Node_status_config_lastKnownGood_configMap_kubeletConfigKey {doc 'KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases'}
													String io_k8s_api_core_v1_Node_status_config_lastKnownGood_configMap_name {doc 'Name is the metadataname of the referenced ConfigMap This field is required in all cases'}
													String io_k8s_api_core_v1_Node_status_config_lastKnownGood_configMap_namespace {doc 'Namespace is the metadatanamespace of the referenced ConfigMap This field is required in all cases'}
												optional
													String io_k8s_api_core_v1_Node_status_config_lastKnownGood_configMap_resourceVersion {doc 'ResourceVersion is the metadataResourceVersion of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
													String io_k8s_api_core_v1_Node_status_config_lastKnownGood_configMap_uid {doc 'UID is the metadataUID of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
							io_k8s_api_core_v1_Node_status_daemonEndpoints {doc 'Endpoints of daemons running on the Node'}
								optional
									io_k8s_api_core_v1_Node_status_daemonEndpoints_kubeletEndpoint {doc 'Endpoint on which Kubelet is listening'}
										mandatory
											Integer io_k8s_api_core_v1_Node_status_daemonEndpoints_kubeletEndpoint_Port {doc 'Port number of the given endpoint'}
							io_k8s_api_core_v1_Node_status_images cardinality [1..*] {doc 'List of container images on this node'}
								optional
									io_k8s_api_core_v1_Node_status_images_names cardinality [1..*] {doc 'Names by which this image is known eg [kubernetesexample/hyperkube:v107, cloud-vendorregistryexample/cloud-vendor/hyperkube:v107]'}
										mandatory
											String io_k8s_api_core_v1_Node_status_images_names_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									Integer io_k8s_api_core_v1_Node_status_images_sizeBytes {doc 'The size of the image in bytes'}
							io_k8s_api_core_v1_Node_status_nodeInfo {doc 'Set of ids/uuids to uniquely identify the node More info: https:_kubernetesio/docs/concepts/nodes/node/#info'}
								mandatory
									String io_k8s_api_core_v1_Node_status_nodeInfo_architecture {doc 'The Architecture reported by the node'}
									String io_k8s_api_core_v1_Node_status_nodeInfo_bootID {doc 'Boot ID reported by the node'}
									String io_k8s_api_core_v1_Node_status_nodeInfo_containerRuntimeVersion {doc 'ContainerRuntime Version reported by the node through runtime remote API (eg containerd:_142)'}
									String io_k8s_api_core_v1_Node_status_nodeInfo_kernelVersion {doc 'Kernel Version reported by the node from _uname -r_ (eg 3160-0bpo4-amd64)'}
									String io_k8s_api_core_v1_Node_status_nodeInfo_kubeProxyVersion {doc 'KubeProxy Version reported by the node'}
									String io_k8s_api_core_v1_Node_status_nodeInfo_kubeletVersion {doc 'Kubelet Version reported by the node'}
									String io_k8s_api_core_v1_Node_status_nodeInfo_machineID {doc 'MachineID reported by the node For unique machine identification in the cluster this field is preferred Learn more from man(5) machine-id: http:_man7org/linux/man-pages/man5/machine-id5html'}
									String io_k8s_api_core_v1_Node_status_nodeInfo_operatingSystem {doc 'The Operating System reported by the node'}
									String io_k8s_api_core_v1_Node_status_nodeInfo_osImage {doc 'OS Image reported by the node from /etc/os-release (eg Debian GNU/Linux 7 (wheezy))'}
									String io_k8s_api_core_v1_Node_status_nodeInfo_systemUUID {doc 'SystemUUID reported by the node For unique machine identification MachineID is preferred This field is specific to Red Hat hosts https:_accessredhatcom/documentation/en-us/red_hat_subscription_management/1/html/rhsm/uuid'}
							String io_k8s_api_core_v1_Node_status_phase {doc 'NodePhase is the recently observed lifecycle phase of the node More info: https:_kubernetesio/docs/concepts/nodes/node/#phase The field is never populated, and now is deprecated'}
							io_k8s_api_core_v1_Node_status_runtimeHandlers cardinality [1..*] {doc 'The available runtime handlers'}
								optional
									io_k8s_api_core_v1_Node_status_runtimeHandlers_features {doc 'Supported features'}
										optional
											io_k8s_api_core_v1_Node_status_runtimeHandlers_features_recursiveReadOnlyMounts {doc 'RecursiveReadOnlyMounts is set to true if the runtime handler supports RecursiveReadOnlyMounts'}
									String io_k8s_api_core_v1_Node_status_runtimeHandlers_name {doc 'Runtime handler name Empty for the default runtime handler'}
							io_k8s_api_core_v1_Node_status_volumesAttached cardinality [1..*] {doc 'List of volumes that are attached to the node'}
								mandatory
									String io_k8s_api_core_v1_Node_status_volumesAttached_devicePath {doc 'DevicePath represents the device path where the volume should be available'}
									String io_k8s_api_core_v1_Node_status_volumesAttached_name {doc 'Name of the attached volume'}
							io_k8s_api_core_v1_Node_status_volumesInUse cardinality [1..*] {doc 'List of attachable volumes in use (mounted) by the node'}
								mandatory
									String io_k8s_api_core_v1_Node_status_volumesInUse_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_NodeAddress {doc 'NodeAddress contains information for the node_s address'}
				mandatory
					String io_k8s_api_core_v1_NodeAddress_address {doc 'The node address'}
					io_k8s_api_core_v1_NodeAddress_type {doc 'Node address type, one of Hostname, ExternalIP or InternalIP'}
						alternative
							io_k8s_api_core_v1_NodeAddress_type_ExternalIP {doc 'Specific value: ExternalIP'}
							io_k8s_api_core_v1_NodeAddress_type_Hostname {doc 'Specific value: Hostname'}
							io_k8s_api_core_v1_NodeAddress_type_InternalIP {doc 'Specific value: InternalIP'}
			io_k8s_api_core_v1_NodeAffinity {doc 'Node affinity is a group of node affinity scheduling rules'}
				optional
					io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
						mandatory
							io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
								optional
									io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
										mandatory
											String io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
											io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
												alternative
													io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
													io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
													io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
										mandatory
											String io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
											io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
												alternative
													io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
													io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
													io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
													io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							Integer io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
					io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
						mandatory
							io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
								optional
									io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
										mandatory
											String io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
											io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
												alternative
													io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
													io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
													io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
										mandatory
											String io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
											io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
												alternative
													io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
													io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
													io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
													io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_NodeCondition {doc 'NodeCondition contains condition information for a node'}
				mandatory
					io_k8s_api_core_v1_NodeCondition_status {doc 'Status of the condition, one of True, False, Unknown'}
						alternative
							io_k8s_api_core_v1_NodeCondition_status_Unknown {doc 'Specific value: Unknown'}
							io_k8s_api_core_v1_NodeCondition_status_False {doc 'Specific value: False'}
							io_k8s_api_core_v1_NodeCondition_status_True {doc 'Specific value: True'}
					String io_k8s_api_core_v1_NodeCondition_type {doc 'Type of node condition'}
				optional
					io_k8s_api_core_v1_NodeCondition_lastHeartbeatTime {doc 'Last time we got an update on a given condition'}
						optional
							String io_k8s_api_core_v1_NodeCondition_lastHeartbeatTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					io_k8s_api_core_v1_NodeCondition_lastTransitionTime {doc 'Last time the condition transit from one status to another'}
						optional
							String io_k8s_api_core_v1_NodeCondition_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_api_core_v1_NodeCondition_message {doc 'Human readable message indicating details about last transition'}
					String io_k8s_api_core_v1_NodeCondition_reason {doc '(brief) reason for the condition_s last transition'}
			io_k8s_api_core_v1_NodeConfigSource {doc 'NodeConfigSource specifies a source of node configuration Exactly one subfield (excluding metadata) must be non-nil This API is deprecated since 122'}
				optional
					io_k8s_api_core_v1_NodeConfigSource_configMap {doc 'ConfigMap is a reference to a Node_s ConfigMap'}
						mandatory
							String io_k8s_api_core_v1_NodeConfigSource_configMap_kubeletConfigKey {doc 'KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases'}
							String io_k8s_api_core_v1_NodeConfigSource_configMap_name {doc 'Name is the metadataname of the referenced ConfigMap This field is required in all cases'}
							String io_k8s_api_core_v1_NodeConfigSource_configMap_namespace {doc 'Namespace is the metadatanamespace of the referenced ConfigMap This field is required in all cases'}
						optional
							String io_k8s_api_core_v1_NodeConfigSource_configMap_resourceVersion {doc 'ResourceVersion is the metadataResourceVersion of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
							String io_k8s_api_core_v1_NodeConfigSource_configMap_uid {doc 'UID is the metadataUID of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
			io_k8s_api_core_v1_NodeConfigStatus {doc 'NodeConfigStatus describes the status of the config assigned by NodeSpecConfigSource'}
				optional
					io_k8s_api_core_v1_NodeConfigStatus_active {doc 'Active reports the checkpointed config the node is actively using Active will represent either the current version of the Assigned config, or the current LastKnownGood config, depending on whether attempting to use the Assigned config results in an error'}
						optional
							io_k8s_api_core_v1_NodeConfigStatus_active_configMap {doc 'ConfigMap is a reference to a Node_s ConfigMap'}
								mandatory
									String io_k8s_api_core_v1_NodeConfigStatus_active_configMap_kubeletConfigKey {doc 'KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases'}
									String io_k8s_api_core_v1_NodeConfigStatus_active_configMap_name {doc 'Name is the metadataname of the referenced ConfigMap This field is required in all cases'}
									String io_k8s_api_core_v1_NodeConfigStatus_active_configMap_namespace {doc 'Namespace is the metadatanamespace of the referenced ConfigMap This field is required in all cases'}
								optional
									String io_k8s_api_core_v1_NodeConfigStatus_active_configMap_resourceVersion {doc 'ResourceVersion is the metadataResourceVersion of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
									String io_k8s_api_core_v1_NodeConfigStatus_active_configMap_uid {doc 'UID is the metadataUID of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
					io_k8s_api_core_v1_NodeConfigStatus_assigned {doc 'Assigned reports the checkpointed config the node will try to use When NodeSpecConfigSource is updated, the node checkpoints the associated config payload to local disk, along with a record indicating intended config The node refers to this record to choose its config checkpoint, and reports this record in Assigned Assigned only updates in the status after the record has been checkpointed to disk When the Kubelet is restarted, it tries to make the Assigned config the Active config by loading and validating the checkpointed payload identified by Assigned'}
						optional
							io_k8s_api_core_v1_NodeConfigStatus_assigned_configMap {doc 'ConfigMap is a reference to a Node_s ConfigMap'}
								mandatory
									String io_k8s_api_core_v1_NodeConfigStatus_assigned_configMap_kubeletConfigKey {doc 'KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases'}
									String io_k8s_api_core_v1_NodeConfigStatus_assigned_configMap_name {doc 'Name is the metadataname of the referenced ConfigMap This field is required in all cases'}
									String io_k8s_api_core_v1_NodeConfigStatus_assigned_configMap_namespace {doc 'Namespace is the metadatanamespace of the referenced ConfigMap This field is required in all cases'}
								optional
									String io_k8s_api_core_v1_NodeConfigStatus_assigned_configMap_resourceVersion {doc 'ResourceVersion is the metadataResourceVersion of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
									String io_k8s_api_core_v1_NodeConfigStatus_assigned_configMap_uid {doc 'UID is the metadataUID of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
					String io_k8s_api_core_v1_NodeConfigStatus_error {doc 'Error describes any problems reconciling the SpecConfigSource to the Active config Errors may occur, for example, attempting to checkpoint SpecConfigSource to the local Assigned record, attempting to checkpoint the payload associated with SpecConfigSource, attempting to load or validate the Assigned config, etc Errors may occur at different points while syncing config Earlier errors (eg download or checkpointing errors) will not result in a rollback to LastKnownGood, and may resolve across Kubelet retries Later errors (eg loading or validating a checkpointed config) will result in a rollback to LastKnownGood In the latter case, it is usually possible to resolve the error by fixing the config assigned in SpecConfigSource You can find additional information for debugging by searching the error message in the Kubelet log Error is a human-readable description of the error state; machines can check whether or not Error is empty, but should not rely on the stability of the Error text across Kubelet versions'}
					io_k8s_api_core_v1_NodeConfigStatus_lastKnownGood {doc 'LastKnownGood reports the checkpointed config the node will fall back to when it encounters an error attempting to use the Assigned config The Assigned config becomes the LastKnownGood config when the node determines that the Assigned config is stable and correct This is currently implemented as a 10-minute soak period starting when the local record of Assigned config is updated If the Assigned config is Active at the end of this period, it becomes the LastKnownGood Note that if SpecConfigSource is reset to nil (use local defaults), the LastKnownGood is also immediately reset to nil, because the local default config is always assumed good You should not make assumptions about the node_s method of determining config stability and correctness, as this may change or become configurable in the future'}
						optional
							io_k8s_api_core_v1_NodeConfigStatus_lastKnownGood_configMap {doc 'ConfigMap is a reference to a Node_s ConfigMap'}
								mandatory
									String io_k8s_api_core_v1_NodeConfigStatus_lastKnownGood_configMap_kubeletConfigKey {doc 'KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases'}
									String io_k8s_api_core_v1_NodeConfigStatus_lastKnownGood_configMap_name {doc 'Name is the metadataname of the referenced ConfigMap This field is required in all cases'}
									String io_k8s_api_core_v1_NodeConfigStatus_lastKnownGood_configMap_namespace {doc 'Namespace is the metadatanamespace of the referenced ConfigMap This field is required in all cases'}
								optional
									String io_k8s_api_core_v1_NodeConfigStatus_lastKnownGood_configMap_resourceVersion {doc 'ResourceVersion is the metadataResourceVersion of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
									String io_k8s_api_core_v1_NodeConfigStatus_lastKnownGood_configMap_uid {doc 'UID is the metadataUID of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
			io_k8s_api_core_v1_NodeDaemonEndpoints {doc 'NodeDaemonEndpoints lists ports opened by daemons running on the Node'}
				optional
					io_k8s_api_core_v1_NodeDaemonEndpoints_kubeletEndpoint {doc 'Endpoint on which Kubelet is listening'}
						mandatory
							Integer io_k8s_api_core_v1_NodeDaemonEndpoints_kubeletEndpoint_Port {doc 'Port number of the given endpoint'}
			io_k8s_api_core_v1_NodeList {doc 'NodeList is the whole list of all Nodes which have been registered with master'}
				mandatory
					io_k8s_api_core_v1_NodeList_items cardinality [1..*] {doc 'List of nodes'}
						optional
							String io_k8s_api_core_v1_NodeList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_core_v1_NodeList_items_kind {default 'Node', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_core_v1_NodeList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_core_v1_NodeList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_core_v1_NodeList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_NodeList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_NodeList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_NodeList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_NodeList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_core_v1_NodeList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_core_v1_NodeList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_NodeList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_NodeList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_NodeList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_core_v1_NodeList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_core_v1_NodeList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_core_v1_NodeList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_core_v1_NodeList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_NodeList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_NodeList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_core_v1_NodeList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_core_v1_NodeList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_core_v1_NodeList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_core_v1_NodeList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_core_v1_NodeList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_core_v1_NodeList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_core_v1_NodeList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_core_v1_NodeList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_core_v1_NodeList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_core_v1_NodeList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_core_v1_NodeList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_core_v1_NodeList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_NodeList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_NodeList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_core_v1_NodeList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_NodeList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_core_v1_NodeList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_core_v1_NodeList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_core_v1_NodeList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_core_v1_NodeList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_core_v1_NodeList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_core_v1_NodeList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_NodeList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_core_v1_NodeList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_core_v1_NodeList_items_spec {doc 'Spec defines the behavior of a node https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								optional
									io_k8s_api_core_v1_NodeList_items_spec_configSource {doc 'Deprecated: Previously used to specify the source of the node_s configuration for the DynamicKubeletConfig feature This feature is removed'}
										optional
											io_k8s_api_core_v1_NodeList_items_spec_configSource_configMap {doc 'ConfigMap is a reference to a Node_s ConfigMap'}
												mandatory
													String io_k8s_api_core_v1_NodeList_items_spec_configSource_configMap_kubeletConfigKey {doc 'KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases'}
													String io_k8s_api_core_v1_NodeList_items_spec_configSource_configMap_name {doc 'Name is the metadataname of the referenced ConfigMap This field is required in all cases'}
													String io_k8s_api_core_v1_NodeList_items_spec_configSource_configMap_namespace {doc 'Namespace is the metadatanamespace of the referenced ConfigMap This field is required in all cases'}
												optional
													String io_k8s_api_core_v1_NodeList_items_spec_configSource_configMap_resourceVersion {doc 'ResourceVersion is the metadataResourceVersion of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
													String io_k8s_api_core_v1_NodeList_items_spec_configSource_configMap_uid {doc 'UID is the metadataUID of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
									String io_k8s_api_core_v1_NodeList_items_spec_externalID {doc 'Deprecated Not all kubelets will set this field Remove field after 113 see: https:_issuesk8sio/61966'}
									String io_k8s_api_core_v1_NodeList_items_spec_podCIDR {doc 'PodCIDR represents the pod IP range assigned to the node'}
									io_k8s_api_core_v1_NodeList_items_spec_podCIDRs cardinality [1..*] {doc 'podCIDRs represents the IP ranges assigned to the node for usage by Pods on that node If this field is specified, the 0th entry must match the podCIDR field It may contain at most 1 value for each of IPv4 and IPv6'}
										mandatory
											String io_k8s_api_core_v1_NodeList_items_spec_podCIDRs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_core_v1_NodeList_items_spec_providerID {doc 'ID of the node assigned by the cloud provider in the format: <ProviderName>:_<ProviderSpecificNodeID>'}
									io_k8s_api_core_v1_NodeList_items_spec_taints cardinality [1..*] {doc 'If specified, the node_s taints'}
										mandatory
											String io_k8s_api_core_v1_NodeList_items_spec_taints_effect {doc 'Required The effect of the taint on pods that do not tolerate the taint Valid effects are NoSchedule, PreferNoSchedule and NoExecute'}
											String io_k8s_api_core_v1_NodeList_items_spec_taints_key {doc 'Required The taint key to be applied to a node'}
										optional
											io_k8s_api_core_v1_NodeList_items_spec_taints_timeAdded {doc 'TimeAdded represents the time at which the taint was added It is only written for NoExecute taints'}
												optional
													String io_k8s_api_core_v1_NodeList_items_spec_taints_timeAdded_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_core_v1_NodeList_items_spec_taints_value {doc 'The taint value corresponding to the taint key'}
									io_k8s_api_core_v1_NodeList_items_spec_unschedulable {doc 'Unschedulable controls node schedulability of new pods By default, node is schedulable More info: https:_kubernetesio/docs/concepts/nodes/node/#manual-node-administration'}
							io_k8s_api_core_v1_NodeList_items_status {doc 'Most recently observed status of the node Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								optional
									io_k8s_api_core_v1_NodeList_items_status_addresses cardinality [1..*] {doc 'List of addresses reachable to the node Queried from cloud provider, if available More info: https:_kubernetesio/docs/concepts/nodes/node/#addresses Note: This field is declared as mergeable, but the merge key is not sufficiently unique, which can cause data corruption when it is merged Callers should instead use a full-replacement patch See https:_prk8sio/79391 for an example Consumers should assume that addresses can change during the lifetime of a Node However, there are some exceptions where this may not be possible, such as Pods that inherit a Node_s address in its own status or consumers of the downward API (statushostIP)'}
										mandatory
											String io_k8s_api_core_v1_NodeList_items_status_addresses_address {doc 'The node address'}
											io_k8s_api_core_v1_NodeList_items_status_addresses_type {doc 'Node address type, one of Hostname, ExternalIP or InternalIP'}
												alternative
													io_k8s_api_core_v1_NodeList_items_status_addresses_type_ExternalIP {doc 'Specific value: ExternalIP'}
													io_k8s_api_core_v1_NodeList_items_status_addresses_type_Hostname {doc 'Specific value: Hostname'}
													io_k8s_api_core_v1_NodeList_items_status_addresses_type_InternalIP {doc 'Specific value: InternalIP'}
									io_k8s_api_core_v1_NodeList_items_status_allocatable cardinality [1..*] {doc 'Allocatable represents the resources of a node that are available for scheduling Defaults to Capacity'}
										alternative
											String io_k8s_api_core_v1_NodeList_items_status_allocatable_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_NodeList_items_status_allocatable_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_NodeList_items_status_capacity cardinality [1..*] {doc 'Capacity represents the total resources of a node More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#capacity'}
										alternative
											String io_k8s_api_core_v1_NodeList_items_status_capacity_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_NodeList_items_status_capacity_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_NodeList_items_status_conditions cardinality [1..*] {doc 'Conditions is an array of current observed node conditions More info: https:_kubernetesio/docs/concepts/nodes/node/#condition'}
										mandatory
											io_k8s_api_core_v1_NodeList_items_status_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
												alternative
													io_k8s_api_core_v1_NodeList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_api_core_v1_NodeList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_api_core_v1_NodeList_items_status_conditions_status_True {doc 'Specific value: True'}
											String io_k8s_api_core_v1_NodeList_items_status_conditions_type {doc 'Type of node condition'}
										optional
											io_k8s_api_core_v1_NodeList_items_status_conditions_lastHeartbeatTime {doc 'Last time we got an update on a given condition'}
												optional
													String io_k8s_api_core_v1_NodeList_items_status_conditions_lastHeartbeatTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_NodeList_items_status_conditions_lastTransitionTime {doc 'Last time the condition transit from one status to another'}
												optional
													String io_k8s_api_core_v1_NodeList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_core_v1_NodeList_items_status_conditions_message {doc 'Human readable message indicating details about last transition'}
											String io_k8s_api_core_v1_NodeList_items_status_conditions_reason {doc '(brief) reason for the condition_s last transition'}
									io_k8s_api_core_v1_NodeList_items_status_config {doc 'Status of the config assigned to the node via the dynamic Kubelet config feature'}
										optional
											io_k8s_api_core_v1_NodeList_items_status_config_active {doc 'Active reports the checkpointed config the node is actively using Active will represent either the current version of the Assigned config, or the current LastKnownGood config, depending on whether attempting to use the Assigned config results in an error'}
												optional
													io_k8s_api_core_v1_NodeList_items_status_config_active_configMap {doc 'ConfigMap is a reference to a Node_s ConfigMap'}
														mandatory
															String io_k8s_api_core_v1_NodeList_items_status_config_active_configMap_kubeletConfigKey {doc 'KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases'}
															String io_k8s_api_core_v1_NodeList_items_status_config_active_configMap_name {doc 'Name is the metadataname of the referenced ConfigMap This field is required in all cases'}
															String io_k8s_api_core_v1_NodeList_items_status_config_active_configMap_namespace {doc 'Namespace is the metadatanamespace of the referenced ConfigMap This field is required in all cases'}
														optional
															String io_k8s_api_core_v1_NodeList_items_status_config_active_configMap_resourceVersion {doc 'ResourceVersion is the metadataResourceVersion of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
															String io_k8s_api_core_v1_NodeList_items_status_config_active_configMap_uid {doc 'UID is the metadataUID of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
											io_k8s_api_core_v1_NodeList_items_status_config_assigned {doc 'Assigned reports the checkpointed config the node will try to use When NodeSpecConfigSource is updated, the node checkpoints the associated config payload to local disk, along with a record indicating intended config The node refers to this record to choose its config checkpoint, and reports this record in Assigned Assigned only updates in the status after the record has been checkpointed to disk When the Kubelet is restarted, it tries to make the Assigned config the Active config by loading and validating the checkpointed payload identified by Assigned'}
												optional
													io_k8s_api_core_v1_NodeList_items_status_config_assigned_configMap {doc 'ConfigMap is a reference to a Node_s ConfigMap'}
														mandatory
															String io_k8s_api_core_v1_NodeList_items_status_config_assigned_configMap_kubeletConfigKey {doc 'KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases'}
															String io_k8s_api_core_v1_NodeList_items_status_config_assigned_configMap_name {doc 'Name is the metadataname of the referenced ConfigMap This field is required in all cases'}
															String io_k8s_api_core_v1_NodeList_items_status_config_assigned_configMap_namespace {doc 'Namespace is the metadatanamespace of the referenced ConfigMap This field is required in all cases'}
														optional
															String io_k8s_api_core_v1_NodeList_items_status_config_assigned_configMap_resourceVersion {doc 'ResourceVersion is the metadataResourceVersion of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
															String io_k8s_api_core_v1_NodeList_items_status_config_assigned_configMap_uid {doc 'UID is the metadataUID of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
											String io_k8s_api_core_v1_NodeList_items_status_config_error {doc 'Error describes any problems reconciling the SpecConfigSource to the Active config Errors may occur, for example, attempting to checkpoint SpecConfigSource to the local Assigned record, attempting to checkpoint the payload associated with SpecConfigSource, attempting to load or validate the Assigned config, etc Errors may occur at different points while syncing config Earlier errors (eg download or checkpointing errors) will not result in a rollback to LastKnownGood, and may resolve across Kubelet retries Later errors (eg loading or validating a checkpointed config) will result in a rollback to LastKnownGood In the latter case, it is usually possible to resolve the error by fixing the config assigned in SpecConfigSource You can find additional information for debugging by searching the error message in the Kubelet log Error is a human-readable description of the error state; machines can check whether or not Error is empty, but should not rely on the stability of the Error text across Kubelet versions'}
											io_k8s_api_core_v1_NodeList_items_status_config_lastKnownGood {doc 'LastKnownGood reports the checkpointed config the node will fall back to when it encounters an error attempting to use the Assigned config The Assigned config becomes the LastKnownGood config when the node determines that the Assigned config is stable and correct This is currently implemented as a 10-minute soak period starting when the local record of Assigned config is updated If the Assigned config is Active at the end of this period, it becomes the LastKnownGood Note that if SpecConfigSource is reset to nil (use local defaults), the LastKnownGood is also immediately reset to nil, because the local default config is always assumed good You should not make assumptions about the node_s method of determining config stability and correctness, as this may change or become configurable in the future'}
												optional
													io_k8s_api_core_v1_NodeList_items_status_config_lastKnownGood_configMap {doc 'ConfigMap is a reference to a Node_s ConfigMap'}
														mandatory
															String io_k8s_api_core_v1_NodeList_items_status_config_lastKnownGood_configMap_kubeletConfigKey {doc 'KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases'}
															String io_k8s_api_core_v1_NodeList_items_status_config_lastKnownGood_configMap_name {doc 'Name is the metadataname of the referenced ConfigMap This field is required in all cases'}
															String io_k8s_api_core_v1_NodeList_items_status_config_lastKnownGood_configMap_namespace {doc 'Namespace is the metadatanamespace of the referenced ConfigMap This field is required in all cases'}
														optional
															String io_k8s_api_core_v1_NodeList_items_status_config_lastKnownGood_configMap_resourceVersion {doc 'ResourceVersion is the metadataResourceVersion of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
															String io_k8s_api_core_v1_NodeList_items_status_config_lastKnownGood_configMap_uid {doc 'UID is the metadataUID of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
									io_k8s_api_core_v1_NodeList_items_status_daemonEndpoints {doc 'Endpoints of daemons running on the Node'}
										optional
											io_k8s_api_core_v1_NodeList_items_status_daemonEndpoints_kubeletEndpoint {doc 'Endpoint on which Kubelet is listening'}
												mandatory
													Integer io_k8s_api_core_v1_NodeList_items_status_daemonEndpoints_kubeletEndpoint_Port {doc 'Port number of the given endpoint'}
									io_k8s_api_core_v1_NodeList_items_status_images cardinality [1..*] {doc 'List of container images on this node'}
										optional
											io_k8s_api_core_v1_NodeList_items_status_images_names cardinality [1..*] {doc 'Names by which this image is known eg [kubernetesexample/hyperkube:v107, cloud-vendorregistryexample/cloud-vendor/hyperkube:v107]'}
												mandatory
													String io_k8s_api_core_v1_NodeList_items_status_images_names_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_NodeList_items_status_images_sizeBytes {doc 'The size of the image in bytes'}
									io_k8s_api_core_v1_NodeList_items_status_nodeInfo {doc 'Set of ids/uuids to uniquely identify the node More info: https:_kubernetesio/docs/concepts/nodes/node/#info'}
										mandatory
											String io_k8s_api_core_v1_NodeList_items_status_nodeInfo_architecture {doc 'The Architecture reported by the node'}
											String io_k8s_api_core_v1_NodeList_items_status_nodeInfo_bootID {doc 'Boot ID reported by the node'}
											String io_k8s_api_core_v1_NodeList_items_status_nodeInfo_containerRuntimeVersion {doc 'ContainerRuntime Version reported by the node through runtime remote API (eg containerd:_142)'}
											String io_k8s_api_core_v1_NodeList_items_status_nodeInfo_kernelVersion {doc 'Kernel Version reported by the node from _uname -r_ (eg 3160-0bpo4-amd64)'}
											String io_k8s_api_core_v1_NodeList_items_status_nodeInfo_kubeProxyVersion {doc 'KubeProxy Version reported by the node'}
											String io_k8s_api_core_v1_NodeList_items_status_nodeInfo_kubeletVersion {doc 'Kubelet Version reported by the node'}
											String io_k8s_api_core_v1_NodeList_items_status_nodeInfo_machineID {doc 'MachineID reported by the node For unique machine identification in the cluster this field is preferred Learn more from man(5) machine-id: http:_man7org/linux/man-pages/man5/machine-id5html'}
											String io_k8s_api_core_v1_NodeList_items_status_nodeInfo_operatingSystem {doc 'The Operating System reported by the node'}
											String io_k8s_api_core_v1_NodeList_items_status_nodeInfo_osImage {doc 'OS Image reported by the node from /etc/os-release (eg Debian GNU/Linux 7 (wheezy))'}
											String io_k8s_api_core_v1_NodeList_items_status_nodeInfo_systemUUID {doc 'SystemUUID reported by the node For unique machine identification MachineID is preferred This field is specific to Red Hat hosts https:_accessredhatcom/documentation/en-us/red_hat_subscription_management/1/html/rhsm/uuid'}
									String io_k8s_api_core_v1_NodeList_items_status_phase {doc 'NodePhase is the recently observed lifecycle phase of the node More info: https:_kubernetesio/docs/concepts/nodes/node/#phase The field is never populated, and now is deprecated'}
									io_k8s_api_core_v1_NodeList_items_status_runtimeHandlers cardinality [1..*] {doc 'The available runtime handlers'}
										optional
											io_k8s_api_core_v1_NodeList_items_status_runtimeHandlers_features {doc 'Supported features'}
												optional
													io_k8s_api_core_v1_NodeList_items_status_runtimeHandlers_features_recursiveReadOnlyMounts {doc 'RecursiveReadOnlyMounts is set to true if the runtime handler supports RecursiveReadOnlyMounts'}
											String io_k8s_api_core_v1_NodeList_items_status_runtimeHandlers_name {doc 'Runtime handler name Empty for the default runtime handler'}
									io_k8s_api_core_v1_NodeList_items_status_volumesAttached cardinality [1..*] {doc 'List of volumes that are attached to the node'}
										mandatory
											String io_k8s_api_core_v1_NodeList_items_status_volumesAttached_devicePath {doc 'DevicePath represents the device path where the volume should be available'}
											String io_k8s_api_core_v1_NodeList_items_status_volumesAttached_name {doc 'Name of the attached volume'}
									io_k8s_api_core_v1_NodeList_items_status_volumesInUse cardinality [1..*] {doc 'List of attachable volumes in use (mounted) by the node'}
										mandatory
											String io_k8s_api_core_v1_NodeList_items_status_volumesInUse_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					String io_k8s_api_core_v1_NodeList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_NodeList_kind {default 'NodeList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_NodeList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_core_v1_NodeList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_core_v1_NodeList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_core_v1_NodeList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_NodeList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_core_v1_NodeRuntimeHandler {doc 'NodeRuntimeHandler is a set of runtime handler information'}
				optional
					io_k8s_api_core_v1_NodeRuntimeHandler_features {doc 'Supported features'}
						optional
							io_k8s_api_core_v1_NodeRuntimeHandler_features_recursiveReadOnlyMounts {doc 'RecursiveReadOnlyMounts is set to true if the runtime handler supports RecursiveReadOnlyMounts'}
					String io_k8s_api_core_v1_NodeRuntimeHandler_name {doc 'Runtime handler name Empty for the default runtime handler'}
			io_k8s_api_core_v1_NodeRuntimeHandlerFeatures {doc 'NodeRuntimeHandlerFeatures is a set of runtime features'}
				optional
					io_k8s_api_core_v1_NodeRuntimeHandlerFeatures_recursiveReadOnlyMounts {doc 'RecursiveReadOnlyMounts is set to true if the runtime handler supports RecursiveReadOnlyMounts'}
			io_k8s_api_core_v1_NodeSelector {doc 'A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms'}
				mandatory
					io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
						optional
							io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
								mandatory
									String io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
									io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
										alternative
											io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
											io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
											io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
								mandatory
									String io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
									io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
										alternative
											io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
											io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
											io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
											io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_NodeSelectorRequirement {doc 'A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values'}
				mandatory
					String io_k8s_api_core_v1_NodeSelectorRequirement_key {doc 'The label key that the selector applies to'}
					io_k8s_api_core_v1_NodeSelectorRequirement_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
						alternative
							io_k8s_api_core_v1_NodeSelectorRequirement_operator_NotIn {doc 'Specific value: NotIn'}
							io_k8s_api_core_v1_NodeSelectorRequirement_operator_Lt {doc 'Specific value: Lt'}
							io_k8s_api_core_v1_NodeSelectorRequirement_operator_In {doc 'Specific value: In'}
							io_k8s_api_core_v1_NodeSelectorRequirement_operator_Gt {doc 'Specific value: Gt'}
							io_k8s_api_core_v1_NodeSelectorRequirement_operator_Exists {doc 'Specific value: Exists'}
							io_k8s_api_core_v1_NodeSelectorRequirement_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
				optional
					io_k8s_api_core_v1_NodeSelectorRequirement_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
						mandatory
							String io_k8s_api_core_v1_NodeSelectorRequirement_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_NodeSelectorTerm {doc 'A null or empty node selector term matches no objects The requirements of them are ANDed The TopologySelectorTerm type implements a subset of the NodeSelectorTerm'}
				optional
					io_k8s_api_core_v1_NodeSelectorTerm_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
						mandatory
							String io_k8s_api_core_v1_NodeSelectorTerm_matchExpressions_key {doc 'The label key that the selector applies to'}
							io_k8s_api_core_v1_NodeSelectorTerm_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
								alternative
									io_k8s_api_core_v1_NodeSelectorTerm_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
									io_k8s_api_core_v1_NodeSelectorTerm_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
									io_k8s_api_core_v1_NodeSelectorTerm_matchExpressions_operator_In {doc 'Specific value: In'}
									io_k8s_api_core_v1_NodeSelectorTerm_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
									io_k8s_api_core_v1_NodeSelectorTerm_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
									io_k8s_api_core_v1_NodeSelectorTerm_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
						optional
							io_k8s_api_core_v1_NodeSelectorTerm_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
								mandatory
									String io_k8s_api_core_v1_NodeSelectorTerm_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_NodeSelectorTerm_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
						mandatory
							String io_k8s_api_core_v1_NodeSelectorTerm_matchFields_key {doc 'The label key that the selector applies to'}
							io_k8s_api_core_v1_NodeSelectorTerm_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
								alternative
									io_k8s_api_core_v1_NodeSelectorTerm_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
									io_k8s_api_core_v1_NodeSelectorTerm_matchFields_operator_Lt {doc 'Specific value: Lt'}
									io_k8s_api_core_v1_NodeSelectorTerm_matchFields_operator_In {doc 'Specific value: In'}
									io_k8s_api_core_v1_NodeSelectorTerm_matchFields_operator_Gt {doc 'Specific value: Gt'}
									io_k8s_api_core_v1_NodeSelectorTerm_matchFields_operator_Exists {doc 'Specific value: Exists'}
									io_k8s_api_core_v1_NodeSelectorTerm_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
						optional
							io_k8s_api_core_v1_NodeSelectorTerm_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
								mandatory
									String io_k8s_api_core_v1_NodeSelectorTerm_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_NodeSpec {doc 'NodeSpec describes the attributes that a node is created with'}
				optional
					io_k8s_api_core_v1_NodeSpec_configSource {doc 'Deprecated: Previously used to specify the source of the node_s configuration for the DynamicKubeletConfig feature This feature is removed'}
						optional
							io_k8s_api_core_v1_NodeSpec_configSource_configMap {doc 'ConfigMap is a reference to a Node_s ConfigMap'}
								mandatory
									String io_k8s_api_core_v1_NodeSpec_configSource_configMap_kubeletConfigKey {doc 'KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases'}
									String io_k8s_api_core_v1_NodeSpec_configSource_configMap_name {doc 'Name is the metadataname of the referenced ConfigMap This field is required in all cases'}
									String io_k8s_api_core_v1_NodeSpec_configSource_configMap_namespace {doc 'Namespace is the metadatanamespace of the referenced ConfigMap This field is required in all cases'}
								optional
									String io_k8s_api_core_v1_NodeSpec_configSource_configMap_resourceVersion {doc 'ResourceVersion is the metadataResourceVersion of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
									String io_k8s_api_core_v1_NodeSpec_configSource_configMap_uid {doc 'UID is the metadataUID of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
					String io_k8s_api_core_v1_NodeSpec_externalID {doc 'Deprecated Not all kubelets will set this field Remove field after 113 see: https:_issuesk8sio/61966'}
					String io_k8s_api_core_v1_NodeSpec_podCIDR {doc 'PodCIDR represents the pod IP range assigned to the node'}
					io_k8s_api_core_v1_NodeSpec_podCIDRs cardinality [1..*] {doc 'podCIDRs represents the IP ranges assigned to the node for usage by Pods on that node If this field is specified, the 0th entry must match the podCIDR field It may contain at most 1 value for each of IPv4 and IPv6'}
						mandatory
							String io_k8s_api_core_v1_NodeSpec_podCIDRs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					String io_k8s_api_core_v1_NodeSpec_providerID {doc 'ID of the node assigned by the cloud provider in the format: <ProviderName>:_<ProviderSpecificNodeID>'}
					io_k8s_api_core_v1_NodeSpec_taints cardinality [1..*] {doc 'If specified, the node_s taints'}
						mandatory
							String io_k8s_api_core_v1_NodeSpec_taints_effect {doc 'Required The effect of the taint on pods that do not tolerate the taint Valid effects are NoSchedule, PreferNoSchedule and NoExecute'}
							String io_k8s_api_core_v1_NodeSpec_taints_key {doc 'Required The taint key to be applied to a node'}
						optional
							io_k8s_api_core_v1_NodeSpec_taints_timeAdded {doc 'TimeAdded represents the time at which the taint was added It is only written for NoExecute taints'}
								optional
									String io_k8s_api_core_v1_NodeSpec_taints_timeAdded_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_NodeSpec_taints_value {doc 'The taint value corresponding to the taint key'}
					io_k8s_api_core_v1_NodeSpec_unschedulable {doc 'Unschedulable controls node schedulability of new pods By default, node is schedulable More info: https:_kubernetesio/docs/concepts/nodes/node/#manual-node-administration'}
			io_k8s_api_core_v1_NodeStatus {doc 'NodeStatus is information about the current status of a node'}
				optional
					io_k8s_api_core_v1_NodeStatus_addresses cardinality [1..*] {doc 'List of addresses reachable to the node Queried from cloud provider, if available More info: https:_kubernetesio/docs/concepts/nodes/node/#addresses Note: This field is declared as mergeable, but the merge key is not sufficiently unique, which can cause data corruption when it is merged Callers should instead use a full-replacement patch See https:_prk8sio/79391 for an example Consumers should assume that addresses can change during the lifetime of a Node However, there are some exceptions where this may not be possible, such as Pods that inherit a Node_s address in its own status or consumers of the downward API (statushostIP)'}
						mandatory
							String io_k8s_api_core_v1_NodeStatus_addresses_address {doc 'The node address'}
							io_k8s_api_core_v1_NodeStatus_addresses_type {doc 'Node address type, one of Hostname, ExternalIP or InternalIP'}
								alternative
									io_k8s_api_core_v1_NodeStatus_addresses_type_ExternalIP {doc 'Specific value: ExternalIP'}
									io_k8s_api_core_v1_NodeStatus_addresses_type_Hostname {doc 'Specific value: Hostname'}
									io_k8s_api_core_v1_NodeStatus_addresses_type_InternalIP {doc 'Specific value: InternalIP'}
					io_k8s_api_core_v1_NodeStatus_allocatable cardinality [1..*] {doc 'Allocatable represents the resources of a node that are available for scheduling Defaults to Capacity'}
						alternative
							String io_k8s_api_core_v1_NodeStatus_allocatable_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_NodeStatus_allocatable_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_core_v1_NodeStatus_capacity cardinality [1..*] {doc 'Capacity represents the total resources of a node More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#capacity'}
						alternative
							String io_k8s_api_core_v1_NodeStatus_capacity_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_NodeStatus_capacity_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_core_v1_NodeStatus_conditions cardinality [1..*] {doc 'Conditions is an array of current observed node conditions More info: https:_kubernetesio/docs/concepts/nodes/node/#condition'}
						mandatory
							io_k8s_api_core_v1_NodeStatus_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
								alternative
									io_k8s_api_core_v1_NodeStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_core_v1_NodeStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_core_v1_NodeStatus_conditions_status_True {doc 'Specific value: True'}
							String io_k8s_api_core_v1_NodeStatus_conditions_type {doc 'Type of node condition'}
						optional
							io_k8s_api_core_v1_NodeStatus_conditions_lastHeartbeatTime {doc 'Last time we got an update on a given condition'}
								optional
									String io_k8s_api_core_v1_NodeStatus_conditions_lastHeartbeatTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_NodeStatus_conditions_lastTransitionTime {doc 'Last time the condition transit from one status to another'}
								optional
									String io_k8s_api_core_v1_NodeStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_NodeStatus_conditions_message {doc 'Human readable message indicating details about last transition'}
							String io_k8s_api_core_v1_NodeStatus_conditions_reason {doc '(brief) reason for the condition_s last transition'}
					io_k8s_api_core_v1_NodeStatus_config {doc 'Status of the config assigned to the node via the dynamic Kubelet config feature'}
						optional
							io_k8s_api_core_v1_NodeStatus_config_active {doc 'Active reports the checkpointed config the node is actively using Active will represent either the current version of the Assigned config, or the current LastKnownGood config, depending on whether attempting to use the Assigned config results in an error'}
								optional
									io_k8s_api_core_v1_NodeStatus_config_active_configMap {doc 'ConfigMap is a reference to a Node_s ConfigMap'}
										mandatory
											String io_k8s_api_core_v1_NodeStatus_config_active_configMap_kubeletConfigKey {doc 'KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases'}
											String io_k8s_api_core_v1_NodeStatus_config_active_configMap_name {doc 'Name is the metadataname of the referenced ConfigMap This field is required in all cases'}
											String io_k8s_api_core_v1_NodeStatus_config_active_configMap_namespace {doc 'Namespace is the metadatanamespace of the referenced ConfigMap This field is required in all cases'}
										optional
											String io_k8s_api_core_v1_NodeStatus_config_active_configMap_resourceVersion {doc 'ResourceVersion is the metadataResourceVersion of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
											String io_k8s_api_core_v1_NodeStatus_config_active_configMap_uid {doc 'UID is the metadataUID of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
							io_k8s_api_core_v1_NodeStatus_config_assigned {doc 'Assigned reports the checkpointed config the node will try to use When NodeSpecConfigSource is updated, the node checkpoints the associated config payload to local disk, along with a record indicating intended config The node refers to this record to choose its config checkpoint, and reports this record in Assigned Assigned only updates in the status after the record has been checkpointed to disk When the Kubelet is restarted, it tries to make the Assigned config the Active config by loading and validating the checkpointed payload identified by Assigned'}
								optional
									io_k8s_api_core_v1_NodeStatus_config_assigned_configMap {doc 'ConfigMap is a reference to a Node_s ConfigMap'}
										mandatory
											String io_k8s_api_core_v1_NodeStatus_config_assigned_configMap_kubeletConfigKey {doc 'KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases'}
											String io_k8s_api_core_v1_NodeStatus_config_assigned_configMap_name {doc 'Name is the metadataname of the referenced ConfigMap This field is required in all cases'}
											String io_k8s_api_core_v1_NodeStatus_config_assigned_configMap_namespace {doc 'Namespace is the metadatanamespace of the referenced ConfigMap This field is required in all cases'}
										optional
											String io_k8s_api_core_v1_NodeStatus_config_assigned_configMap_resourceVersion {doc 'ResourceVersion is the metadataResourceVersion of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
											String io_k8s_api_core_v1_NodeStatus_config_assigned_configMap_uid {doc 'UID is the metadataUID of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
							String io_k8s_api_core_v1_NodeStatus_config_error {doc 'Error describes any problems reconciling the SpecConfigSource to the Active config Errors may occur, for example, attempting to checkpoint SpecConfigSource to the local Assigned record, attempting to checkpoint the payload associated with SpecConfigSource, attempting to load or validate the Assigned config, etc Errors may occur at different points while syncing config Earlier errors (eg download or checkpointing errors) will not result in a rollback to LastKnownGood, and may resolve across Kubelet retries Later errors (eg loading or validating a checkpointed config) will result in a rollback to LastKnownGood In the latter case, it is usually possible to resolve the error by fixing the config assigned in SpecConfigSource You can find additional information for debugging by searching the error message in the Kubelet log Error is a human-readable description of the error state; machines can check whether or not Error is empty, but should not rely on the stability of the Error text across Kubelet versions'}
							io_k8s_api_core_v1_NodeStatus_config_lastKnownGood {doc 'LastKnownGood reports the checkpointed config the node will fall back to when it encounters an error attempting to use the Assigned config The Assigned config becomes the LastKnownGood config when the node determines that the Assigned config is stable and correct This is currently implemented as a 10-minute soak period starting when the local record of Assigned config is updated If the Assigned config is Active at the end of this period, it becomes the LastKnownGood Note that if SpecConfigSource is reset to nil (use local defaults), the LastKnownGood is also immediately reset to nil, because the local default config is always assumed good You should not make assumptions about the node_s method of determining config stability and correctness, as this may change or become configurable in the future'}
								optional
									io_k8s_api_core_v1_NodeStatus_config_lastKnownGood_configMap {doc 'ConfigMap is a reference to a Node_s ConfigMap'}
										mandatory
											String io_k8s_api_core_v1_NodeStatus_config_lastKnownGood_configMap_kubeletConfigKey {doc 'KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases'}
											String io_k8s_api_core_v1_NodeStatus_config_lastKnownGood_configMap_name {doc 'Name is the metadataname of the referenced ConfigMap This field is required in all cases'}
											String io_k8s_api_core_v1_NodeStatus_config_lastKnownGood_configMap_namespace {doc 'Namespace is the metadatanamespace of the referenced ConfigMap This field is required in all cases'}
										optional
											String io_k8s_api_core_v1_NodeStatus_config_lastKnownGood_configMap_resourceVersion {doc 'ResourceVersion is the metadataResourceVersion of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
											String io_k8s_api_core_v1_NodeStatus_config_lastKnownGood_configMap_uid {doc 'UID is the metadataUID of the referenced ConfigMap This field is forbidden in NodeSpec, and required in NodeStatus'}
					io_k8s_api_core_v1_NodeStatus_daemonEndpoints {doc 'Endpoints of daemons running on the Node'}
						optional
							io_k8s_api_core_v1_NodeStatus_daemonEndpoints_kubeletEndpoint {doc 'Endpoint on which Kubelet is listening'}
								mandatory
									Integer io_k8s_api_core_v1_NodeStatus_daemonEndpoints_kubeletEndpoint_Port {doc 'Port number of the given endpoint'}
					io_k8s_api_core_v1_NodeStatus_images cardinality [1..*] {doc 'List of container images on this node'}
						optional
							io_k8s_api_core_v1_NodeStatus_images_names cardinality [1..*] {doc 'Names by which this image is known eg [kubernetesexample/hyperkube:v107, cloud-vendorregistryexample/cloud-vendor/hyperkube:v107]'}
								mandatory
									String io_k8s_api_core_v1_NodeStatus_images_names_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							Integer io_k8s_api_core_v1_NodeStatus_images_sizeBytes {doc 'The size of the image in bytes'}
					io_k8s_api_core_v1_NodeStatus_nodeInfo {doc 'Set of ids/uuids to uniquely identify the node More info: https:_kubernetesio/docs/concepts/nodes/node/#info'}
						mandatory
							String io_k8s_api_core_v1_NodeStatus_nodeInfo_architecture {doc 'The Architecture reported by the node'}
							String io_k8s_api_core_v1_NodeStatus_nodeInfo_bootID {doc 'Boot ID reported by the node'}
							String io_k8s_api_core_v1_NodeStatus_nodeInfo_containerRuntimeVersion {doc 'ContainerRuntime Version reported by the node through runtime remote API (eg containerd:_142)'}
							String io_k8s_api_core_v1_NodeStatus_nodeInfo_kernelVersion {doc 'Kernel Version reported by the node from _uname -r_ (eg 3160-0bpo4-amd64)'}
							String io_k8s_api_core_v1_NodeStatus_nodeInfo_kubeProxyVersion {doc 'KubeProxy Version reported by the node'}
							String io_k8s_api_core_v1_NodeStatus_nodeInfo_kubeletVersion {doc 'Kubelet Version reported by the node'}
							String io_k8s_api_core_v1_NodeStatus_nodeInfo_machineID {doc 'MachineID reported by the node For unique machine identification in the cluster this field is preferred Learn more from man(5) machine-id: http:_man7org/linux/man-pages/man5/machine-id5html'}
							String io_k8s_api_core_v1_NodeStatus_nodeInfo_operatingSystem {doc 'The Operating System reported by the node'}
							String io_k8s_api_core_v1_NodeStatus_nodeInfo_osImage {doc 'OS Image reported by the node from /etc/os-release (eg Debian GNU/Linux 7 (wheezy))'}
							String io_k8s_api_core_v1_NodeStatus_nodeInfo_systemUUID {doc 'SystemUUID reported by the node For unique machine identification MachineID is preferred This field is specific to Red Hat hosts https:_accessredhatcom/documentation/en-us/red_hat_subscription_management/1/html/rhsm/uuid'}
					String io_k8s_api_core_v1_NodeStatus_phase {doc 'NodePhase is the recently observed lifecycle phase of the node More info: https:_kubernetesio/docs/concepts/nodes/node/#phase The field is never populated, and now is deprecated'}
					io_k8s_api_core_v1_NodeStatus_runtimeHandlers cardinality [1..*] {doc 'The available runtime handlers'}
						optional
							io_k8s_api_core_v1_NodeStatus_runtimeHandlers_features {doc 'Supported features'}
								optional
									io_k8s_api_core_v1_NodeStatus_runtimeHandlers_features_recursiveReadOnlyMounts {doc 'RecursiveReadOnlyMounts is set to true if the runtime handler supports RecursiveReadOnlyMounts'}
							String io_k8s_api_core_v1_NodeStatus_runtimeHandlers_name {doc 'Runtime handler name Empty for the default runtime handler'}
					io_k8s_api_core_v1_NodeStatus_volumesAttached cardinality [1..*] {doc 'List of volumes that are attached to the node'}
						mandatory
							String io_k8s_api_core_v1_NodeStatus_volumesAttached_devicePath {doc 'DevicePath represents the device path where the volume should be available'}
							String io_k8s_api_core_v1_NodeStatus_volumesAttached_name {doc 'Name of the attached volume'}
					io_k8s_api_core_v1_NodeStatus_volumesInUse cardinality [1..*] {doc 'List of attachable volumes in use (mounted) by the node'}
						mandatory
							String io_k8s_api_core_v1_NodeStatus_volumesInUse_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_NodeSystemInfo {doc 'NodeSystemInfo is a set of ids/uuids to uniquely identify the node'}
				mandatory
					String io_k8s_api_core_v1_NodeSystemInfo_architecture {doc 'The Architecture reported by the node'}
					String io_k8s_api_core_v1_NodeSystemInfo_bootID {doc 'Boot ID reported by the node'}
					String io_k8s_api_core_v1_NodeSystemInfo_containerRuntimeVersion {doc 'ContainerRuntime Version reported by the node through runtime remote API (eg containerd:_142)'}
					String io_k8s_api_core_v1_NodeSystemInfo_kernelVersion {doc 'Kernel Version reported by the node from _uname -r_ (eg 3160-0bpo4-amd64)'}
					String io_k8s_api_core_v1_NodeSystemInfo_kubeProxyVersion {doc 'KubeProxy Version reported by the node'}
					String io_k8s_api_core_v1_NodeSystemInfo_kubeletVersion {doc 'Kubelet Version reported by the node'}
					String io_k8s_api_core_v1_NodeSystemInfo_machineID {doc 'MachineID reported by the node For unique machine identification in the cluster this field is preferred Learn more from man(5) machine-id: http:_man7org/linux/man-pages/man5/machine-id5html'}
					String io_k8s_api_core_v1_NodeSystemInfo_operatingSystem {doc 'The Operating System reported by the node'}
					String io_k8s_api_core_v1_NodeSystemInfo_osImage {doc 'OS Image reported by the node from /etc/os-release (eg Debian GNU/Linux 7 (wheezy))'}
					String io_k8s_api_core_v1_NodeSystemInfo_systemUUID {doc 'SystemUUID reported by the node For unique machine identification MachineID is preferred This field is specific to Red Hat hosts https:_accessredhatcom/documentation/en-us/red_hat_subscription_management/1/html/rhsm/uuid'}
			io_k8s_api_core_v1_ObjectFieldSelector {doc 'ObjectFieldSelector selects an APIVersioned field of an object'}
				mandatory
					String io_k8s_api_core_v1_ObjectFieldSelector_fieldPath {doc 'Path of the field to select in the specified API version'}
				optional
					String io_k8s_api_core_v1_ObjectFieldSelector_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
			io_k8s_api_core_v1_ObjectReference {doc 'ObjectReference contains enough information to let you inspect or modify the referred object'}
				optional
					String io_k8s_api_core_v1_ObjectReference_apiVersion {doc 'API version of the referent'}
					String io_k8s_api_core_v1_ObjectReference_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
					String io_k8s_api_core_v1_ObjectReference_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					String io_k8s_api_core_v1_ObjectReference_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
					String io_k8s_api_core_v1_ObjectReference_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
					String io_k8s_api_core_v1_ObjectReference_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
					String io_k8s_api_core_v1_ObjectReference_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
			io_k8s_api_core_v1_PersistentVolume {doc 'PersistentVolume (PV) is a storage resource provisioned by an administrator It is analogous to a node More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes'}
				optional
					String io_k8s_api_core_v1_PersistentVolume_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_PersistentVolume_kind {default 'PersistentVolume', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_PersistentVolume_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_core_v1_PersistentVolume_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_core_v1_PersistentVolume_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_PersistentVolume_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_PersistentVolume_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_PersistentVolume_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_PersistentVolume_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_core_v1_PersistentVolume_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_core_v1_PersistentVolume_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_PersistentVolume_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_PersistentVolume_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolume_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_core_v1_PersistentVolume_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_core_v1_PersistentVolume_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_core_v1_PersistentVolume_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolume_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_PersistentVolume_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_PersistentVolume_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_core_v1_PersistentVolume_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_core_v1_PersistentVolume_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_core_v1_PersistentVolume_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_core_v1_PersistentVolume_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_core_v1_PersistentVolume_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_core_v1_PersistentVolume_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_core_v1_PersistentVolume_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_core_v1_PersistentVolume_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_core_v1_PersistentVolume_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_core_v1_PersistentVolume_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_core_v1_PersistentVolume_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_core_v1_PersistentVolume_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_PersistentVolume_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_core_v1_PersistentVolume_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_core_v1_PersistentVolume_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolume_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_PersistentVolume_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_PersistentVolume_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_PersistentVolume_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_core_v1_PersistentVolume_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_core_v1_PersistentVolume_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_core_v1_PersistentVolume_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_PersistentVolume_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_core_v1_PersistentVolume_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_core_v1_PersistentVolume_spec {doc 'spec defines a specification of a persistent volume owned by the cluster Provisioned by an administrator More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistent-volumes'}
						optional
							io_k8s_api_core_v1_PersistentVolume_spec_accessModes cardinality [1..*] {doc 'accessModes contains all ways the volume can be mounted More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolume_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PersistentVolume_spec_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolume_spec_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
								optional
									io_k8s_api_core_v1_PersistentVolume_spec_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
										alternative
											io_k8s_api_core_v1_PersistentVolume_spec_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PersistentVolume_spec_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PersistentVolume_spec_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
									Integer io_k8s_api_core_v1_PersistentVolume_spec_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
									io_k8s_api_core_v1_PersistentVolume_spec_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
							io_k8s_api_core_v1_PersistentVolume_spec_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolume_spec_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
									String io_k8s_api_core_v1_PersistentVolume_spec_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
								optional
									io_k8s_api_core_v1_PersistentVolume_spec_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
										alternative
											io_k8s_api_core_v1_PersistentVolume_spec_azureDisk_cachingMode_None {doc 'Specific value: None'}
											io_k8s_api_core_v1_PersistentVolume_spec_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
											io_k8s_api_core_v1_PersistentVolume_spec_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
									io_k8s_api_core_v1_PersistentVolume_spec_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
										alternative
											io_k8s_api_core_v1_PersistentVolume_spec_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PersistentVolume_spec_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PersistentVolume_spec_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
									io_k8s_api_core_v1_PersistentVolume_spec_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
										alternative
											io_k8s_api_core_v1_PersistentVolume_spec_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
											io_k8s_api_core_v1_PersistentVolume_spec_azureDisk_kind_Managed {doc 'Specific value: Managed'}
											io_k8s_api_core_v1_PersistentVolume_spec_azureDisk_kind_Shared {doc 'Specific value: Shared'}
									io_k8s_api_core_v1_PersistentVolume_spec_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
							io_k8s_api_core_v1_PersistentVolume_spec_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolume_spec_azureFile_secretName {doc 'secretName is the name of secret that contains Azure Storage Account Name and Key'}
									String io_k8s_api_core_v1_PersistentVolume_spec_azureFile_shareName {doc 'shareName is the azure Share Name'}
								optional
									io_k8s_api_core_v1_PersistentVolume_spec_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									String io_k8s_api_core_v1_PersistentVolume_spec_azureFile_secretNamespace {doc 'secretNamespace is the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod'}
							io_k8s_api_core_v1_PersistentVolume_spec_capacity cardinality [1..*] {doc 'capacity is the description of the persistent volume_s resources and capacity More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#capacity'}
								alternative
									String io_k8s_api_core_v1_PersistentVolume_spec_capacity_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_PersistentVolume_spec_capacity_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_PersistentVolume_spec_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
								mandatory
									io_k8s_api_core_v1_PersistentVolume_spec_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolume_spec_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									String io_k8s_api_core_v1_PersistentVolume_spec_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
									io_k8s_api_core_v1_PersistentVolume_spec_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
									String io_k8s_api_core_v1_PersistentVolume_spec_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
									io_k8s_api_core_v1_PersistentVolume_spec_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
										optional
											String io_k8s_api_core_v1_PersistentVolume_spec_cephfs_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
											String io_k8s_api_core_v1_PersistentVolume_spec_cephfs_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
									String io_k8s_api_core_v1_PersistentVolume_spec_cephfs_user {doc 'user is Optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
							io_k8s_api_core_v1_PersistentVolume_spec_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolume_spec_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
								optional
									io_k8s_api_core_v1_PersistentVolume_spec_cinder_fsType {doc 'fsType Filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
										alternative
											io_k8s_api_core_v1_PersistentVolume_spec_cinder_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PersistentVolume_spec_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PersistentVolume_spec_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
									io_k8s_api_core_v1_PersistentVolume_spec_cinder_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
									io_k8s_api_core_v1_PersistentVolume_spec_cinder_secretRef {doc 'secretRef is Optional: points to a secret object containing parameters used to connect to OpenStack'}
										optional
											String io_k8s_api_core_v1_PersistentVolume_spec_cinder_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
											String io_k8s_api_core_v1_PersistentVolume_spec_cinder_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
							io_k8s_api_core_v1_PersistentVolume_spec_claimRef {doc 'claimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim Expected to be non-nil when bound claimVolumeName is the authoritative bind between PV and PVC More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#binding'}
								optional
									String io_k8s_api_core_v1_PersistentVolume_spec_claimRef_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_PersistentVolume_spec_claimRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
									String io_k8s_api_core_v1_PersistentVolume_spec_claimRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_PersistentVolume_spec_claimRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									String io_k8s_api_core_v1_PersistentVolume_spec_claimRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
									String io_k8s_api_core_v1_PersistentVolume_spec_claimRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_PersistentVolume_spec_claimRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
							io_k8s_api_core_v1_PersistentVolume_spec_csi {doc 'csi represents storage that is handled by an external CSI driver (Beta feature)'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolume_spec_csi_driver {doc 'driver is the name of the driver to use for this volume Required'}
									String io_k8s_api_core_v1_PersistentVolume_spec_csi_volumeHandle {doc 'volumeHandle is the unique volume name returned by the CSI volume plugins CreateVolume to refer to the volume on all subsequent calls Required'}
								optional
									io_k8s_api_core_v1_PersistentVolume_spec_csi_controllerExpandSecretRef {doc 'controllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
										optional
											String io_k8s_api_core_v1_PersistentVolume_spec_csi_controllerExpandSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
											String io_k8s_api_core_v1_PersistentVolume_spec_csi_controllerExpandSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
									io_k8s_api_core_v1_PersistentVolume_spec_csi_controllerPublishSecretRef {doc 'controllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
										optional
											String io_k8s_api_core_v1_PersistentVolume_spec_csi_controllerPublishSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
											String io_k8s_api_core_v1_PersistentVolume_spec_csi_controllerPublishSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
									io_k8s_api_core_v1_PersistentVolume_spec_csi_fsType {doc 'fsType to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs'}
										alternative
											io_k8s_api_core_v1_PersistentVolume_spec_csi_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PersistentVolume_spec_csi_fsType_ext4 {doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PersistentVolume_spec_csi_fsType_ntfs {doc 'Specific value: ntfs'}
									io_k8s_api_core_v1_PersistentVolume_spec_csi_nodeExpandSecretRef {doc 'nodeExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeExpandVolume call This field is optional, may be omitted if no secret is required If the secret object contains more than one secret, all secrets are passed'}
										optional
											String io_k8s_api_core_v1_PersistentVolume_spec_csi_nodeExpandSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
											String io_k8s_api_core_v1_PersistentVolume_spec_csi_nodeExpandSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
									io_k8s_api_core_v1_PersistentVolume_spec_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
										optional
											String io_k8s_api_core_v1_PersistentVolume_spec_csi_nodePublishSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
											String io_k8s_api_core_v1_PersistentVolume_spec_csi_nodePublishSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
									io_k8s_api_core_v1_PersistentVolume_spec_csi_nodeStageSecretRef {doc 'nodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
										optional
											String io_k8s_api_core_v1_PersistentVolume_spec_csi_nodeStageSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
											String io_k8s_api_core_v1_PersistentVolume_spec_csi_nodeStageSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
									io_k8s_api_core_v1_PersistentVolume_spec_csi_readOnly {default false, doc 'readOnly value to pass to ControllerPublishVolumeRequest Defaults to false (read/write)'}
									io_k8s_api_core_v1_PersistentVolume_spec_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes of the volume to publish'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolume_spec_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PersistentVolume_spec_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
								optional
									io_k8s_api_core_v1_PersistentVolume_spec_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
										alternative
											io_k8s_api_core_v1_PersistentVolume_spec_fc_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PersistentVolume_spec_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PersistentVolume_spec_fc_fsType_ntfs {doc 'Specific value: ntfs'}
									Integer io_k8s_api_core_v1_PersistentVolume_spec_fc_lun {doc 'lun is Optional: FC target lun number'}
									io_k8s_api_core_v1_PersistentVolume_spec_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									io_k8s_api_core_v1_PersistentVolume_spec_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolume_spec_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PersistentVolume_spec_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolume_spec_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PersistentVolume_spec_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolume_spec_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
								optional
									io_k8s_api_core_v1_PersistentVolume_spec_flexVolume_fsType {doc 'fsType is the Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
										alternative
											io_k8s_api_core_v1_PersistentVolume_spec_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PersistentVolume_spec_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PersistentVolume_spec_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
									io_k8s_api_core_v1_PersistentVolume_spec_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolume_spec_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PersistentVolume_spec_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									io_k8s_api_core_v1_PersistentVolume_spec_flexVolume_secretRef {doc 'secretRef is Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
										optional
											String io_k8s_api_core_v1_PersistentVolume_spec_flexVolume_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
											String io_k8s_api_core_v1_PersistentVolume_spec_flexVolume_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
							io_k8s_api_core_v1_PersistentVolume_spec_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine and exposed to the pod for its usage This depends on the Flocker control service being running'}
								optional
									io_k8s_api_core_v1_PersistentVolume_spec_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolume_spec_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_PersistentVolume_spec_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolume_spec_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							io_k8s_api_core_v1_PersistentVolume_spec_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod Provisioned by an admin More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolume_spec_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
								optional
									io_k8s_api_core_v1_PersistentVolume_spec_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
										alternative
											io_k8s_api_core_v1_PersistentVolume_spec_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PersistentVolume_spec_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PersistentVolume_spec_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
									Integer io_k8s_api_core_v1_PersistentVolume_spec_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
									io_k8s_api_core_v1_PersistentVolume_spec_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
							io_k8s_api_core_v1_PersistentVolume_spec_glusterfs {doc 'glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod Provisioned by an admin More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolume_spec_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
									String io_k8s_api_core_v1_PersistentVolume_spec_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
								optional
									String io_k8s_api_core_v1_PersistentVolume_spec_glusterfs_endpointsNamespace {doc 'endpointsNamespace is the namespace that contains Glusterfs endpoint If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
									io_k8s_api_core_v1_PersistentVolume_spec_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
							io_k8s_api_core_v1_PersistentVolume_spec_hostPath {doc 'hostPath represents a directory on the host Provisioned by a developer or tester This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolume_spec_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
								optional
									String io_k8s_api_core_v1_PersistentVolume_spec_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
							io_k8s_api_core_v1_PersistentVolume_spec_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod Provisioned by an admin'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolume_spec_iscsi_iqn {doc 'iqn is Target iSCSI Qualified Name'}
									Integer io_k8s_api_core_v1_PersistentVolume_spec_iscsi_lun {doc 'lun is iSCSI Target Lun number'}
									String io_k8s_api_core_v1_PersistentVolume_spec_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
								optional
									io_k8s_api_core_v1_PersistentVolume_spec_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
									io_k8s_api_core_v1_PersistentVolume_spec_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
									io_k8s_api_core_v1_PersistentVolume_spec_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
										alternative
											io_k8s_api_core_v1_PersistentVolume_spec_iscsi_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PersistentVolume_spec_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PersistentVolume_spec_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
									String io_k8s_api_core_v1_PersistentVolume_spec_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
									String io_k8s_api_core_v1_PersistentVolume_spec_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
									io_k8s_api_core_v1_PersistentVolume_spec_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolume_spec_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PersistentVolume_spec_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
									io_k8s_api_core_v1_PersistentVolume_spec_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
										optional
											String io_k8s_api_core_v1_PersistentVolume_spec_iscsi_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
											String io_k8s_api_core_v1_PersistentVolume_spec_iscsi_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
							io_k8s_api_core_v1_PersistentVolume_spec_local {doc 'local represents directly-attached storage with node affinity'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolume_spec_local_path {doc 'path of the full path to the volume on the node It can be either a directory or block device (disk, partition, )'}
								optional
									io_k8s_api_core_v1_PersistentVolume_spec_local_fsType {doc 'fsType is the filesystem type to mount It applies only when the Path is a block device Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default value is to auto-select a filesystem if unspecified'}
										alternative
											io_k8s_api_core_v1_PersistentVolume_spec_local_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PersistentVolume_spec_local_fsType_ext4 {doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PersistentVolume_spec_local_fsType_ntfs {doc 'Specific value: ntfs'}
							io_k8s_api_core_v1_PersistentVolume_spec_mountOptions cardinality [1..*] {doc 'mountOptions is the list of mount options, eg [ro, soft] Not validated - mount will simply fail if one is invalid More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes/#mount-options'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolume_spec_mountOptions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PersistentVolume_spec_nfs {doc 'nfs represents an NFS mount on the host Provisioned by an admin More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolume_spec_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
									String io_k8s_api_core_v1_PersistentVolume_spec_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
								optional
									io_k8s_api_core_v1_PersistentVolume_spec_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
							io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity {doc 'nodeAffinity defines constraints that limit what nodes this volume can be accessed from This field influences the scheduling of pods that use this volume'}
								optional
									io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required {doc 'required specifies hard node constraints that must be met'}
										mandatory
											io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
												optional
													io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
														mandatory
															String io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
															io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																alternative
																	io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																	io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																	io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
														mandatory
															String io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
															io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																alternative
																	io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																	io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																	io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																	io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PersistentVolume_spec_persistentVolumeReclaimPolicy {doc 'persistentVolumeReclaimPolicy defines what happens to a persistent volume when released from its claim Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated) Recycle must be supported by the volume plugin underlying this PersistentVolume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#reclaiming'}
								alternative
									io_k8s_api_core_v1_PersistentVolume_spec_persistentVolumeReclaimPolicy_Retain {doc 'Specific value: Retain'}
									io_k8s_api_core_v1_PersistentVolume_spec_persistentVolumeReclaimPolicy_Recycle {doc 'Specific value: Recycle'}
									io_k8s_api_core_v1_PersistentVolume_spec_persistentVolumeReclaimPolicy_Delete {doc 'Specific value: Delete'}
							io_k8s_api_core_v1_PersistentVolume_spec_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolume_spec_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
								optional
									io_k8s_api_core_v1_PersistentVolume_spec_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
										alternative
											io_k8s_api_core_v1_PersistentVolume_spec_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PersistentVolume_spec_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PersistentVolume_spec_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
							io_k8s_api_core_v1_PersistentVolume_spec_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolume_spec_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
								optional
									io_k8s_api_core_v1_PersistentVolume_spec_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
										alternative
											io_k8s_api_core_v1_PersistentVolume_spec_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PersistentVolume_spec_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
									io_k8s_api_core_v1_PersistentVolume_spec_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
							io_k8s_api_core_v1_PersistentVolume_spec_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolume_spec_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
									String io_k8s_api_core_v1_PersistentVolume_spec_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
								optional
									String io_k8s_api_core_v1_PersistentVolume_spec_quobyte_group {doc 'group to map volume access to Default is no group'}
									io_k8s_api_core_v1_PersistentVolume_spec_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
									String io_k8s_api_core_v1_PersistentVolume_spec_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
									String io_k8s_api_core_v1_PersistentVolume_spec_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
							io_k8s_api_core_v1_PersistentVolume_spec_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolume_spec_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
									io_k8s_api_core_v1_PersistentVolume_spec_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolume_spec_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_core_v1_PersistentVolume_spec_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
										alternative
											io_k8s_api_core_v1_PersistentVolume_spec_rbd_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PersistentVolume_spec_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PersistentVolume_spec_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
									String io_k8s_api_core_v1_PersistentVolume_spec_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
									String io_k8s_api_core_v1_PersistentVolume_spec_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
									io_k8s_api_core_v1_PersistentVolume_spec_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
									io_k8s_api_core_v1_PersistentVolume_spec_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
										optional
											String io_k8s_api_core_v1_PersistentVolume_spec_rbd_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
											String io_k8s_api_core_v1_PersistentVolume_spec_rbd_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
									String io_k8s_api_core_v1_PersistentVolume_spec_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
							io_k8s_api_core_v1_PersistentVolume_spec_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolume_spec_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
									io_k8s_api_core_v1_PersistentVolume_spec_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
										optional
											String io_k8s_api_core_v1_PersistentVolume_spec_scaleIO_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
											String io_k8s_api_core_v1_PersistentVolume_spec_scaleIO_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
									String io_k8s_api_core_v1_PersistentVolume_spec_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
								optional
									io_k8s_api_core_v1_PersistentVolume_spec_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
										alternative
											io_k8s_api_core_v1_PersistentVolume_spec_scaleIO_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PersistentVolume_spec_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PersistentVolume_spec_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
									String io_k8s_api_core_v1_PersistentVolume_spec_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
									io_k8s_api_core_v1_PersistentVolume_spec_scaleIO_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									io_k8s_api_core_v1_PersistentVolume_spec_scaleIO_sslEnabled {default false, doc 'sslEnabled is the flag to enable/disable SSL communication with Gateway, default false'}
									io_k8s_api_core_v1_PersistentVolume_spec_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
										alternative
											io_k8s_api_core_v1_PersistentVolume_spec_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
											io_k8s_api_core_v1_PersistentVolume_spec_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
									String io_k8s_api_core_v1_PersistentVolume_spec_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
									String io_k8s_api_core_v1_PersistentVolume_spec_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
							String io_k8s_api_core_v1_PersistentVolume_spec_storageClassName {doc 'storageClassName is the name of StorageClass to which this persistent volume belongs Empty value means that this volume does not belong to any StorageClass'}
							io_k8s_api_core_v1_PersistentVolume_spec_storageos {doc 'storageOS represents a StorageOS volume that is attached to the kubelet_s host machine and mounted into the pod More info: https:_examplesk8sio/volumes/storageos/READMEmd'}
								optional
									io_k8s_api_core_v1_PersistentVolume_spec_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
										alternative
											io_k8s_api_core_v1_PersistentVolume_spec_storageos_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PersistentVolume_spec_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PersistentVolume_spec_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
									io_k8s_api_core_v1_PersistentVolume_spec_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									io_k8s_api_core_v1_PersistentVolume_spec_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
										optional
											String io_k8s_api_core_v1_PersistentVolume_spec_storageos_secretRef_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_core_v1_PersistentVolume_spec_storageos_secretRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
											String io_k8s_api_core_v1_PersistentVolume_spec_storageos_secretRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_core_v1_PersistentVolume_spec_storageos_secretRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											String io_k8s_api_core_v1_PersistentVolume_spec_storageos_secretRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
											String io_k8s_api_core_v1_PersistentVolume_spec_storageos_secretRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
											String io_k8s_api_core_v1_PersistentVolume_spec_storageos_secretRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
									String io_k8s_api_core_v1_PersistentVolume_spec_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
									String io_k8s_api_core_v1_PersistentVolume_spec_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
							String io_k8s_api_core_v1_PersistentVolume_spec_volumeAttributesClassName {doc 'Name of VolumeAttributesClass to which this persistent volume belongs Empty value is not allowed When this field is not set, it indicates that this volume does not belong to any VolumeAttributesClass This field is mutable and can be changed by the CSI driver after a volume has been updated successfully to a new class For an unbound PersistentVolume, the volumeAttributesClassName will be matched with unbound PersistentVolumeClaims during the binding process This is an alpha field and requires enabling VolumeAttributesClass feature'}
							String io_k8s_api_core_v1_PersistentVolume_spec_volumeMode {doc 'volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state Value of Filesystem is implied when not included in spec'}
							io_k8s_api_core_v1_PersistentVolume_spec_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolume_spec_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
								optional
									io_k8s_api_core_v1_PersistentVolume_spec_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
										alternative
											io_k8s_api_core_v1_PersistentVolume_spec_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PersistentVolume_spec_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PersistentVolume_spec_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
									String io_k8s_api_core_v1_PersistentVolume_spec_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
									String io_k8s_api_core_v1_PersistentVolume_spec_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
					io_k8s_api_core_v1_PersistentVolume_status {doc 'status represents the current information/status for the persistent volume Populated by the system Read-only More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistent-volumes'}
						optional
							io_k8s_api_core_v1_PersistentVolume_status_lastPhaseTransitionTime {doc 'lastPhaseTransitionTime is the time the phase transitioned from one to another and automatically resets to current time everytime a volume phase transitions This is a beta field and requires the PersistentVolumeLastPhaseTransitionTime feature to be enabled (enabled by default)'}
								optional
									String io_k8s_api_core_v1_PersistentVolume_status_lastPhaseTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_PersistentVolume_status_message {doc 'message is a human-readable message indicating details about why the volume is in this state'}
							String io_k8s_api_core_v1_PersistentVolume_status_phase {doc 'phase indicates if a volume is available, bound to a claim, or released by a claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#phase'}
							String io_k8s_api_core_v1_PersistentVolume_status_reason {doc 'reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI'}
			io_k8s_api_core_v1_PersistentVolumeClaim {doc 'PersistentVolumeClaim is a user_s request for and claim to a persistent volume'}
				optional
					String io_k8s_api_core_v1_PersistentVolumeClaim_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_PersistentVolumeClaim_kind {default 'PersistentVolumeClaim', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_PersistentVolumeClaim_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_core_v1_PersistentVolumeClaim_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeClaim_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_PersistentVolumeClaim_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_PersistentVolumeClaim_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeClaim_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_PersistentVolumeClaim_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_core_v1_PersistentVolumeClaim_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_core_v1_PersistentVolumeClaim_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeClaim_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_PersistentVolumeClaim_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeClaim_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_core_v1_PersistentVolumeClaim_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_core_v1_PersistentVolumeClaim_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_core_v1_PersistentVolumeClaim_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeClaim_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_PersistentVolumeClaim_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_PersistentVolumeClaim_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeClaim_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_core_v1_PersistentVolumeClaim_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_core_v1_PersistentVolumeClaim_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_core_v1_PersistentVolumeClaim_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_core_v1_PersistentVolumeClaim_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_core_v1_PersistentVolumeClaim_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_core_v1_PersistentVolumeClaim_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_core_v1_PersistentVolumeClaim_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_core_v1_PersistentVolumeClaim_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_core_v1_PersistentVolumeClaim_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_core_v1_PersistentVolumeClaim_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_core_v1_PersistentVolumeClaim_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_PersistentVolumeClaim_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_core_v1_PersistentVolumeClaim_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_core_v1_PersistentVolumeClaim_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeClaim_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_PersistentVolumeClaim_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_PersistentVolumeClaim_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_PersistentVolumeClaim_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_core_v1_PersistentVolumeClaim_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_core_v1_PersistentVolumeClaim_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_core_v1_PersistentVolumeClaim_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_PersistentVolumeClaim_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_core_v1_PersistentVolumeClaim_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_core_v1_PersistentVolumeClaim_spec {doc 'spec defines the desired characteristics of a volume requested by a pod author More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
						optional
							io_k8s_api_core_v1_PersistentVolumeClaim_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeClaim_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PersistentVolumeClaim_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeClaim_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
									String io_k8s_api_core_v1_PersistentVolumeClaim_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeClaim_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
							io_k8s_api_core_v1_PersistentVolumeClaim_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeClaim_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
									String io_k8s_api_core_v1_PersistentVolumeClaim_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeClaim_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
									String io_k8s_api_core_v1_PersistentVolumeClaim_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
							io_k8s_api_core_v1_PersistentVolumeClaim_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
								optional
									io_k8s_api_core_v1_PersistentVolumeClaim_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
										alternative
											String io_k8s_api_core_v1_PersistentVolumeClaim_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_PersistentVolumeClaim_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_PersistentVolumeClaim_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
										alternative
											String io_k8s_api_core_v1_PersistentVolumeClaim_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_PersistentVolumeClaim_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_PersistentVolumeClaim_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
								optional
									io_k8s_api_core_v1_PersistentVolumeClaim_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeClaim_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_core_v1_PersistentVolumeClaim_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_core_v1_PersistentVolumeClaim_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_core_v1_PersistentVolumeClaim_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_core_v1_PersistentVolumeClaim_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_core_v1_PersistentVolumeClaim_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_core_v1_PersistentVolumeClaim_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_core_v1_PersistentVolumeClaim_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PersistentVolumeClaim_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeClaim_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_PersistentVolumeClaim_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							String io_k8s_api_core_v1_PersistentVolumeClaim_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
							String io_k8s_api_core_v1_PersistentVolumeClaim_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
							String io_k8s_api_core_v1_PersistentVolumeClaim_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
							String io_k8s_api_core_v1_PersistentVolumeClaim_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
					io_k8s_api_core_v1_PersistentVolumeClaim_status {doc 'status represents the current information/status of a persistent volume claim Read-only More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
						optional
							io_k8s_api_core_v1_PersistentVolumeClaim_status_accessModes cardinality [1..*] {doc 'accessModes contains the actual access modes the volume backing the PVC has More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeClaim_status_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PersistentVolumeClaim_status_allocatedResourceStatuses cardinality [1..*] {doc 'allocatedResourceStatuses stores status of resource being resized for the given PVC Key names follow standard Kubernetes label syntax Valid values are either:	* Un-prefixed keys:		- storage - the capacity of the volume	* Custom resources must use implementation-defined prefixed names such as examplecom/my-custom-resourceApart from above values - keys that are unprefixed or have kubernetesio prefix are considered reserved and hence may not be usedClaimResourceStatus can be in any of following states:	- ControllerResizeInProgress:		State set when resize controller starts resizing the volume in control-plane	- ControllerResizeFailed:		State set when resize has failed in resize controller with a terminal error	- NodeResizePending:		State set when resize controller has finished resizing the volume but further resizing of		volume is needed on the node	- NodeResizeInProgress:		State set when kubelet starts resizing the volume	- NodeResizeFailed:		State set when resizing has failed in kubelet with a terminal error Transient errors don_t set		NodeResizeFailedFor example: if expanding a PVC for more capacity - this field can be one of the following states:	- pvcstatusallocatedResourceStatus[_storage_] = ControllerResizeInProgress     - pvcstatusallocatedResourceStatus[_storage_] = ControllerResizeFailed     - pvcstatusallocatedResourceStatus[_storage_] = NodeResizePending     - pvcstatusallocatedResourceStatus[_storage_] = NodeResizeInProgress     - pvcstatusallocatedResourceStatus[_storage_] = NodeResizeFailedWhen this field is not set, it means that no resize operation is in progress for the given PVCA controller that receives PVC update with previously unknown resourceName or ClaimResourceStatus should ignore the update for the purpose it was designed For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVCThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature'}
								alternative
									io_k8s_api_core_v1_PersistentVolumeClaim_status_allocatedResourceStatuses_storage {doc 'Specific value: storage'}
									io_k8s_api_core_v1_PersistentVolumeClaim_status_allocatedResourceStatuses_NodeResizePending {doc 'Specific value: NodeResizePending'}
									io_k8s_api_core_v1_PersistentVolumeClaim_status_allocatedResourceStatuses_ControllerResizeFailed {doc 'Specific value: ControllerResizeFailed'}
									io_k8s_api_core_v1_PersistentVolumeClaim_status_allocatedResourceStatuses_NodeResizeInProgress {doc 'Specific value: NodeResizeInProgress'}
									io_k8s_api_core_v1_PersistentVolumeClaim_status_allocatedResourceStatuses_NodeResizeFailed {doc 'Specific value: NodeResizeFailed'}
							io_k8s_api_core_v1_PersistentVolumeClaim_status_allocatedResources cardinality [1..*] {doc 'allocatedResources tracks the resources allocated to a PVC including its capacity Key names follow standard Kubernetes label syntax Valid values are either:	* Un-prefixed keys:		- storage - the capacity of the volume	* Custom resources must use implementation-defined prefixed names such as examplecom/my-custom-resourceApart from above values - keys that are unprefixed or have kubernetesio prefix are considered reserved and hence may not be usedCapacity reported here may be larger than the actual capacity when a volume expansion operation is requested For storage quota, the larger value from allocatedResources and PVCspecresources is used If allocatedResources is not set, PVCspecresources alone is used for quota calculation If a volume expansion capacity request is lowered, allocatedResources is only lowered if there are no expansion operations in progress and if the actual volume capacity is equal or lower than the requested capacityA controller that receives PVC update with previously unknown resourceName should ignore the update for the purpose it was designed For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVCThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature'}
								alternative
									String io_k8s_api_core_v1_PersistentVolumeClaim_status_allocatedResources_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_PersistentVolumeClaim_status_allocatedResources_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_PersistentVolumeClaim_status_capacity cardinality [1..*] {doc 'capacity represents the actual resources of the underlying volume'}
								alternative
									String io_k8s_api_core_v1_PersistentVolumeClaim_status_capacity_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_PersistentVolumeClaim_status_capacity_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_PersistentVolumeClaim_status_conditions cardinality [1..*] {doc 'conditions is the current Condition of persistent volume claim If underlying persistent volume is being resized then the Condition will be set to _Resizing_'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeClaim_status_conditions_status
									String io_k8s_api_core_v1_PersistentVolumeClaim_status_conditions_type
								optional
									io_k8s_api_core_v1_PersistentVolumeClaim_status_conditions_lastProbeTime {doc 'lastProbeTime is the time we probed the condition'}
										optional
											String io_k8s_api_core_v1_PersistentVolumeClaim_status_conditions_lastProbeTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_PersistentVolumeClaim_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the time the condition transitioned from one status to another'}
										optional
											String io_k8s_api_core_v1_PersistentVolumeClaim_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_PersistentVolumeClaim_status_conditions_message {doc 'message is the human-readable message indicating details about last transition'}
									String io_k8s_api_core_v1_PersistentVolumeClaim_status_conditions_reason {doc 'reason is a unique, this should be a short, machine understandable string that gives the reason for condition_s last transition If it reports Resizing that means the underlying persistent volume is being resized'}
							String io_k8s_api_core_v1_PersistentVolumeClaim_status_currentVolumeAttributesClassName {doc 'currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using When unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim This is an alpha field and requires enabling VolumeAttributesClass feature'}
							io_k8s_api_core_v1_PersistentVolumeClaim_status_modifyVolumeStatus {doc 'ModifyVolumeStatus represents the status object of ControllerModifyVolume operation When this is unset, there is no ModifyVolume operation being attempted This is an alpha field and requires enabling VolumeAttributesClass feature'}
								mandatory
									io_k8s_api_core_v1_PersistentVolumeClaim_status_modifyVolumeStatus_status {doc 'status is the status of the ControllerModifyVolume operation It can be in any of following states: - Pending   Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as   the specified VolumeAttributesClass not existing - InProgress   InProgress indicates that the volume is being modified - Infeasible  Infeasible indicates that the request has been rejected as invalid by the CSI driver To	  resolve the error, a valid VolumeAttributesClass needs to be specifiedNote: New statuses can be added in the future Consumers should check for unknown statuses and fail appropriately'}
										alternative
											io_k8s_api_core_v1_PersistentVolumeClaim_status_modifyVolumeStatus_status_Pending {doc 'Specific value: Pending'}
											io_k8s_api_core_v1_PersistentVolumeClaim_status_modifyVolumeStatus_status_Infeasible {doc 'Specific value: Infeasible'}
											io_k8s_api_core_v1_PersistentVolumeClaim_status_modifyVolumeStatus_status_InProgress {doc 'Specific value: InProgress'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeClaim_status_modifyVolumeStatus_targetVolumeAttributesClassName {doc 'targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled'}
							String io_k8s_api_core_v1_PersistentVolumeClaim_status_phase {doc 'phase represents the current phase of PersistentVolumeClaim'}
			io_k8s_api_core_v1_PersistentVolumeClaimCondition {doc 'PersistentVolumeClaimCondition contains details about state of pvc'}
				mandatory
					String io_k8s_api_core_v1_PersistentVolumeClaimCondition_status
					String io_k8s_api_core_v1_PersistentVolumeClaimCondition_type
				optional
					io_k8s_api_core_v1_PersistentVolumeClaimCondition_lastProbeTime {doc 'lastProbeTime is the time we probed the condition'}
						optional
							String io_k8s_api_core_v1_PersistentVolumeClaimCondition_lastProbeTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					io_k8s_api_core_v1_PersistentVolumeClaimCondition_lastTransitionTime {doc 'lastTransitionTime is the time the condition transitioned from one status to another'}
						optional
							String io_k8s_api_core_v1_PersistentVolumeClaimCondition_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_api_core_v1_PersistentVolumeClaimCondition_message {doc 'message is the human-readable message indicating details about last transition'}
					String io_k8s_api_core_v1_PersistentVolumeClaimCondition_reason {doc 'reason is a unique, this should be a short, machine understandable string that gives the reason for condition_s last transition If it reports Resizing that means the underlying persistent volume is being resized'}
			io_k8s_api_core_v1_PersistentVolumeClaimList {doc 'PersistentVolumeClaimList is a list of PersistentVolumeClaim items'}
				mandatory
					io_k8s_api_core_v1_PersistentVolumeClaimList_items cardinality [1..*] {doc 'items is a list of persistent volume claims More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
						optional
							String io_k8s_api_core_v1_PersistentVolumeClaimList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_core_v1_PersistentVolumeClaimList_items_kind {default 'PersistentVolumeClaim', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_core_v1_PersistentVolumeClaimList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec {doc 'spec defines the desired characteristics of a volume requested by a pod author More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
								optional
									io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
										optional
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
									io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
										optional
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
									io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
										optional
											io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
										optional
											io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
									String io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
									String io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
									String io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
							io_k8s_api_core_v1_PersistentVolumeClaimList_items_status {doc 'status represents the current information/status of a persistent volume claim Read-only More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
								optional
									io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_accessModes cardinality [1..*] {doc 'accessModes contains the actual access modes the volume backing the PVC has More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_allocatedResourceStatuses cardinality [1..*] {doc 'allocatedResourceStatuses stores status of resource being resized for the given PVC Key names follow standard Kubernetes label syntax Valid values are either:	* Un-prefixed keys:		- storage - the capacity of the volume	* Custom resources must use implementation-defined prefixed names such as examplecom/my-custom-resourceApart from above values - keys that are unprefixed or have kubernetesio prefix are considered reserved and hence may not be usedClaimResourceStatus can be in any of following states:	- ControllerResizeInProgress:		State set when resize controller starts resizing the volume in control-plane	- ControllerResizeFailed:		State set when resize has failed in resize controller with a terminal error	- NodeResizePending:		State set when resize controller has finished resizing the volume but further resizing of		volume is needed on the node	- NodeResizeInProgress:		State set when kubelet starts resizing the volume	- NodeResizeFailed:		State set when resizing has failed in kubelet with a terminal error Transient errors don_t set		NodeResizeFailedFor example: if expanding a PVC for more capacity - this field can be one of the following states:	- pvcstatusallocatedResourceStatus[_storage_] = ControllerResizeInProgress     - pvcstatusallocatedResourceStatus[_storage_] = ControllerResizeFailed     - pvcstatusallocatedResourceStatus[_storage_] = NodeResizePending     - pvcstatusallocatedResourceStatus[_storage_] = NodeResizeInProgress     - pvcstatusallocatedResourceStatus[_storage_] = NodeResizeFailedWhen this field is not set, it means that no resize operation is in progress for the given PVCA controller that receives PVC update with previously unknown resourceName or ClaimResourceStatus should ignore the update for the purpose it was designed For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVCThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature'}
										alternative
											io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_allocatedResourceStatuses_storage {doc 'Specific value: storage'}
											io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_allocatedResourceStatuses_NodeResizePending {doc 'Specific value: NodeResizePending'}
											io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_allocatedResourceStatuses_ControllerResizeFailed {doc 'Specific value: ControllerResizeFailed'}
											io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_allocatedResourceStatuses_NodeResizeInProgress {doc 'Specific value: NodeResizeInProgress'}
											io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_allocatedResourceStatuses_NodeResizeFailed {doc 'Specific value: NodeResizeFailed'}
									io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_allocatedResources cardinality [1..*] {doc 'allocatedResources tracks the resources allocated to a PVC including its capacity Key names follow standard Kubernetes label syntax Valid values are either:	* Un-prefixed keys:		- storage - the capacity of the volume	* Custom resources must use implementation-defined prefixed names such as examplecom/my-custom-resourceApart from above values - keys that are unprefixed or have kubernetesio prefix are considered reserved and hence may not be usedCapacity reported here may be larger than the actual capacity when a volume expansion operation is requested For storage quota, the larger value from allocatedResources and PVCspecresources is used If allocatedResources is not set, PVCspecresources alone is used for quota calculation If a volume expansion capacity request is lowered, allocatedResources is only lowered if there are no expansion operations in progress and if the actual volume capacity is equal or lower than the requested capacityA controller that receives PVC update with previously unknown resourceName should ignore the update for the purpose it was designed For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVCThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature'}
										alternative
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_allocatedResources_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_allocatedResources_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_capacity cardinality [1..*] {doc 'capacity represents the actual resources of the underlying volume'}
										alternative
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_capacity_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_capacity_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_conditions cardinality [1..*] {doc 'conditions is the current Condition of persistent volume claim If underlying persistent volume is being resized then the Condition will be set to _Resizing_'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_conditions_status
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_conditions_type
										optional
											io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_conditions_lastProbeTime {doc 'lastProbeTime is the time we probed the condition'}
												optional
													String io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_conditions_lastProbeTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the time the condition transitioned from one status to another'}
												optional
													String io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_conditions_message {doc 'message is the human-readable message indicating details about last transition'}
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_conditions_reason {doc 'reason is a unique, this should be a short, machine understandable string that gives the reason for condition_s last transition If it reports Resizing that means the underlying persistent volume is being resized'}
									String io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_currentVolumeAttributesClassName {doc 'currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using When unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim This is an alpha field and requires enabling VolumeAttributesClass feature'}
									io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_modifyVolumeStatus {doc 'ModifyVolumeStatus represents the status object of ControllerModifyVolume operation When this is unset, there is no ModifyVolume operation being attempted This is an alpha field and requires enabling VolumeAttributesClass feature'}
										mandatory
											io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_modifyVolumeStatus_status {doc 'status is the status of the ControllerModifyVolume operation It can be in any of following states: - Pending   Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as   the specified VolumeAttributesClass not existing - InProgress   InProgress indicates that the volume is being modified - Infeasible  Infeasible indicates that the request has been rejected as invalid by the CSI driver To	  resolve the error, a valid VolumeAttributesClass needs to be specifiedNote: New statuses can be added in the future Consumers should check for unknown statuses and fail appropriately'}
												alternative
													io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_modifyVolumeStatus_status_Pending {doc 'Specific value: Pending'}
													io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_modifyVolumeStatus_status_Infeasible {doc 'Specific value: Infeasible'}
													io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_modifyVolumeStatus_status_InProgress {doc 'Specific value: InProgress'}
										optional
											String io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_modifyVolumeStatus_targetVolumeAttributesClassName {doc 'targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled'}
									String io_k8s_api_core_v1_PersistentVolumeClaimList_items_status_phase {doc 'phase represents the current phase of PersistentVolumeClaim'}
				optional
					String io_k8s_api_core_v1_PersistentVolumeClaimList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_PersistentVolumeClaimList_kind {default 'PersistentVolumeClaimList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_PersistentVolumeClaimList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_core_v1_PersistentVolumeClaimList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_core_v1_PersistentVolumeClaimList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_core_v1_PersistentVolumeClaimList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_PersistentVolumeClaimList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_core_v1_PersistentVolumeClaimSpec {doc 'PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes'}
				optional
					io_k8s_api_core_v1_PersistentVolumeClaimSpec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeClaimSpec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_PersistentVolumeClaimSpec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeClaimSpec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
							String io_k8s_api_core_v1_PersistentVolumeClaimSpec_dataSource_name {doc 'Name is the name of resource being referenced'}
						optional
							String io_k8s_api_core_v1_PersistentVolumeClaimSpec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
					io_k8s_api_core_v1_PersistentVolumeClaimSpec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeClaimSpec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
							String io_k8s_api_core_v1_PersistentVolumeClaimSpec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
						optional
							String io_k8s_api_core_v1_PersistentVolumeClaimSpec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
							String io_k8s_api_core_v1_PersistentVolumeClaimSpec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
					io_k8s_api_core_v1_PersistentVolumeClaimSpec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
						optional
							io_k8s_api_core_v1_PersistentVolumeClaimSpec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
								alternative
									String io_k8s_api_core_v1_PersistentVolumeClaimSpec_resources_limits_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_PersistentVolumeClaimSpec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_PersistentVolumeClaimSpec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
								alternative
									String io_k8s_api_core_v1_PersistentVolumeClaimSpec_resources_requests_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_PersistentVolumeClaimSpec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_core_v1_PersistentVolumeClaimSpec_selector {doc 'selector is a label query over volumes to consider for binding'}
						optional
							io_k8s_api_core_v1_PersistentVolumeClaimSpec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeClaimSpec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_core_v1_PersistentVolumeClaimSpec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_core_v1_PersistentVolumeClaimSpec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_core_v1_PersistentVolumeClaimSpec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_core_v1_PersistentVolumeClaimSpec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_core_v1_PersistentVolumeClaimSpec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_core_v1_PersistentVolumeClaimSpec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeClaimSpec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PersistentVolumeClaimSpec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeClaimSpec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_PersistentVolumeClaimSpec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					String io_k8s_api_core_v1_PersistentVolumeClaimSpec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
					String io_k8s_api_core_v1_PersistentVolumeClaimSpec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
					String io_k8s_api_core_v1_PersistentVolumeClaimSpec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
					String io_k8s_api_core_v1_PersistentVolumeClaimSpec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
			io_k8s_api_core_v1_PersistentVolumeClaimStatus {doc 'PersistentVolumeClaimStatus is the current status of a persistent volume claim'}
				optional
					io_k8s_api_core_v1_PersistentVolumeClaimStatus_accessModes cardinality [1..*] {doc 'accessModes contains the actual access modes the volume backing the PVC has More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeClaimStatus_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_PersistentVolumeClaimStatus_allocatedResourceStatuses cardinality [1..*] {doc 'allocatedResourceStatuses stores status of resource being resized for the given PVC Key names follow standard Kubernetes label syntax Valid values are either:	* Un-prefixed keys:		- storage - the capacity of the volume	* Custom resources must use implementation-defined prefixed names such as examplecom/my-custom-resourceApart from above values - keys that are unprefixed or have kubernetesio prefix are considered reserved and hence may not be usedClaimResourceStatus can be in any of following states:	- ControllerResizeInProgress:		State set when resize controller starts resizing the volume in control-plane	- ControllerResizeFailed:		State set when resize has failed in resize controller with a terminal error	- NodeResizePending:		State set when resize controller has finished resizing the volume but further resizing of		volume is needed on the node	- NodeResizeInProgress:		State set when kubelet starts resizing the volume	- NodeResizeFailed:		State set when resizing has failed in kubelet with a terminal error Transient errors don_t set		NodeResizeFailedFor example: if expanding a PVC for more capacity - this field can be one of the following states:	- pvcstatusallocatedResourceStatus[_storage_] = ControllerResizeInProgress     - pvcstatusallocatedResourceStatus[_storage_] = ControllerResizeFailed     - pvcstatusallocatedResourceStatus[_storage_] = NodeResizePending     - pvcstatusallocatedResourceStatus[_storage_] = NodeResizeInProgress     - pvcstatusallocatedResourceStatus[_storage_] = NodeResizeFailedWhen this field is not set, it means that no resize operation is in progress for the given PVCA controller that receives PVC update with previously unknown resourceName or ClaimResourceStatus should ignore the update for the purpose it was designed For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVCThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature'}
						alternative
							io_k8s_api_core_v1_PersistentVolumeClaimStatus_allocatedResourceStatuses_storage {doc 'Specific value: storage'}
							io_k8s_api_core_v1_PersistentVolumeClaimStatus_allocatedResourceStatuses_NodeResizePending {doc 'Specific value: NodeResizePending'}
							io_k8s_api_core_v1_PersistentVolumeClaimStatus_allocatedResourceStatuses_ControllerResizeFailed {doc 'Specific value: ControllerResizeFailed'}
							io_k8s_api_core_v1_PersistentVolumeClaimStatus_allocatedResourceStatuses_NodeResizeInProgress {doc 'Specific value: NodeResizeInProgress'}
							io_k8s_api_core_v1_PersistentVolumeClaimStatus_allocatedResourceStatuses_NodeResizeFailed {doc 'Specific value: NodeResizeFailed'}
					io_k8s_api_core_v1_PersistentVolumeClaimStatus_allocatedResources cardinality [1..*] {doc 'allocatedResources tracks the resources allocated to a PVC including its capacity Key names follow standard Kubernetes label syntax Valid values are either:	* Un-prefixed keys:		- storage - the capacity of the volume	* Custom resources must use implementation-defined prefixed names such as examplecom/my-custom-resourceApart from above values - keys that are unprefixed or have kubernetesio prefix are considered reserved and hence may not be usedCapacity reported here may be larger than the actual capacity when a volume expansion operation is requested For storage quota, the larger value from allocatedResources and PVCspecresources is used If allocatedResources is not set, PVCspecresources alone is used for quota calculation If a volume expansion capacity request is lowered, allocatedResources is only lowered if there are no expansion operations in progress and if the actual volume capacity is equal or lower than the requested capacityA controller that receives PVC update with previously unknown resourceName should ignore the update for the purpose it was designed For example - a controller that only is responsible for resizing capacity of the volume, should ignore PVC updates that change other valid resources associated with PVCThis is an alpha field and requires enabling RecoverVolumeExpansionFailure feature'}
						alternative
							String io_k8s_api_core_v1_PersistentVolumeClaimStatus_allocatedResources_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_PersistentVolumeClaimStatus_allocatedResources_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_core_v1_PersistentVolumeClaimStatus_capacity cardinality [1..*] {doc 'capacity represents the actual resources of the underlying volume'}
						alternative
							String io_k8s_api_core_v1_PersistentVolumeClaimStatus_capacity_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_PersistentVolumeClaimStatus_capacity_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_core_v1_PersistentVolumeClaimStatus_conditions cardinality [1..*] {doc 'conditions is the current Condition of persistent volume claim If underlying persistent volume is being resized then the Condition will be set to _Resizing_'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeClaimStatus_conditions_status
							String io_k8s_api_core_v1_PersistentVolumeClaimStatus_conditions_type
						optional
							io_k8s_api_core_v1_PersistentVolumeClaimStatus_conditions_lastProbeTime {doc 'lastProbeTime is the time we probed the condition'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeClaimStatus_conditions_lastProbeTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_PersistentVolumeClaimStatus_conditions_lastTransitionTime {doc 'lastTransitionTime is the time the condition transitioned from one status to another'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeClaimStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_PersistentVolumeClaimStatus_conditions_message {doc 'message is the human-readable message indicating details about last transition'}
							String io_k8s_api_core_v1_PersistentVolumeClaimStatus_conditions_reason {doc 'reason is a unique, this should be a short, machine understandable string that gives the reason for condition_s last transition If it reports Resizing that means the underlying persistent volume is being resized'}
					String io_k8s_api_core_v1_PersistentVolumeClaimStatus_currentVolumeAttributesClassName {doc 'currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using When unset, there is no VolumeAttributeClass applied to this PersistentVolumeClaim This is an alpha field and requires enabling VolumeAttributesClass feature'}
					io_k8s_api_core_v1_PersistentVolumeClaimStatus_modifyVolumeStatus {doc 'ModifyVolumeStatus represents the status object of ControllerModifyVolume operation When this is unset, there is no ModifyVolume operation being attempted This is an alpha field and requires enabling VolumeAttributesClass feature'}
						mandatory
							io_k8s_api_core_v1_PersistentVolumeClaimStatus_modifyVolumeStatus_status {doc 'status is the status of the ControllerModifyVolume operation It can be in any of following states: - Pending   Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as   the specified VolumeAttributesClass not existing - InProgress   InProgress indicates that the volume is being modified - Infeasible  Infeasible indicates that the request has been rejected as invalid by the CSI driver To	  resolve the error, a valid VolumeAttributesClass needs to be specifiedNote: New statuses can be added in the future Consumers should check for unknown statuses and fail appropriately'}
								alternative
									io_k8s_api_core_v1_PersistentVolumeClaimStatus_modifyVolumeStatus_status_Pending {doc 'Specific value: Pending'}
									io_k8s_api_core_v1_PersistentVolumeClaimStatus_modifyVolumeStatus_status_Infeasible {doc 'Specific value: Infeasible'}
									io_k8s_api_core_v1_PersistentVolumeClaimStatus_modifyVolumeStatus_status_InProgress {doc 'Specific value: InProgress'}
						optional
							String io_k8s_api_core_v1_PersistentVolumeClaimStatus_modifyVolumeStatus_targetVolumeAttributesClassName {doc 'targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled'}
					String io_k8s_api_core_v1_PersistentVolumeClaimStatus_phase {doc 'phase represents the current phase of PersistentVolumeClaim'}
			io_k8s_api_core_v1_PersistentVolumeClaimTemplate {doc 'PersistentVolumeClaimTemplate is used to produce PersistentVolumeClaim objects as part of an EphemeralVolumeSource'}
				mandatory
					io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
						optional
							io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
									String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
							io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
									String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
									String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
							io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
								optional
									io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
										alternative
											String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
										alternative
											String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
								optional
									io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
							String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
							String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
							String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
				optional
					io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
						optional
							io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_core_v1_PersistentVolumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
			io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource {doc 'PersistentVolumeClaimVolumeSource references the user_s PVC in the same namespace This volume finds the bound PV and mounts that volume for the pod A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system)'}
				mandatory
					String io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
				optional
					io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
			io_k8s_api_core_v1_PersistentVolumeList {doc 'PersistentVolumeList is a list of PersistentVolume items'}
				mandatory
					io_k8s_api_core_v1_PersistentVolumeList_items cardinality [1..*] {doc 'items is a list of persistent volumes More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes'}
						optional
							String io_k8s_api_core_v1_PersistentVolumeList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_core_v1_PersistentVolumeList_items_kind {default 'PersistentVolume', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_core_v1_PersistentVolumeList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_core_v1_PersistentVolumeList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_core_v1_PersistentVolumeList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_PersistentVolumeList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_PersistentVolumeList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_PersistentVolumeList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_core_v1_PersistentVolumeList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_core_v1_PersistentVolumeList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_PersistentVolumeList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_PersistentVolumeList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_core_v1_PersistentVolumeList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_core_v1_PersistentVolumeList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_core_v1_PersistentVolumeList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_PersistentVolumeList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_core_v1_PersistentVolumeList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_core_v1_PersistentVolumeList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_core_v1_PersistentVolumeList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_core_v1_PersistentVolumeList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_core_v1_PersistentVolumeList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_core_v1_PersistentVolumeList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_core_v1_PersistentVolumeList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_core_v1_PersistentVolumeList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_core_v1_PersistentVolumeList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_PersistentVolumeList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_PersistentVolumeList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_core_v1_PersistentVolumeList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_core_v1_PersistentVolumeList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_core_v1_PersistentVolumeList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_core_v1_PersistentVolumeList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_PersistentVolumeList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_core_v1_PersistentVolumeList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_core_v1_PersistentVolumeList_items_spec {doc 'spec defines a specification of a persistent volume owned by the cluster Provisioned by an administrator More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistent-volumes'}
								optional
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_accessModes cardinality [1..*] {doc 'accessModes contains all ways the volume can be mounted More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
										optional
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
												alternative
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
											Integer io_k8s_api_core_v1_PersistentVolumeList_items_spec_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
										optional
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
												alternative
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_azureDisk_cachingMode_None {doc 'Specific value: None'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
												alternative
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_azureDisk_kind_Managed {doc 'Specific value: Managed'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_azureDisk_kind_Shared {doc 'Specific value: Shared'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_azureFile_secretName {doc 'secretName is the name of secret that contains Azure Storage Account Name and Key'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_azureFile_shareName {doc 'shareName is the azure Share Name'}
										optional
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_azureFile_secretNamespace {doc 'secretNamespace is the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_capacity cardinality [1..*] {doc 'capacity is the description of the persistent volume_s resources and capacity More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#capacity'}
										alternative
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_capacity_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_PersistentVolumeList_items_spec_capacity_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
										mandatory
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
												mandatory
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
												optional
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_cephfs_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_cephfs_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_cephfs_user {doc 'user is Optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
										optional
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_cinder_fsType {doc 'fsType Filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
												alternative
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_cinder_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_cinder_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_cinder_secretRef {doc 'secretRef is Optional: points to a secret object containing parameters used to connect to OpenStack'}
												optional
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_cinder_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_cinder_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_claimRef {doc 'claimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim Expected to be non-nil when bound claimVolumeName is the authoritative bind between PV and PVC More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#binding'}
										optional
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_claimRef_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_claimRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_claimRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_claimRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_claimRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_claimRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_claimRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi {doc 'csi represents storage that is handled by an external CSI driver (Beta feature)'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_driver {doc 'driver is the name of the driver to use for this volume Required'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_volumeHandle {doc 'volumeHandle is the unique volume name returned by the CSI volume plugins CreateVolume to refer to the volume on all subsequent calls Required'}
										optional
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_controllerExpandSecretRef {doc 'controllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
												optional
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_controllerExpandSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_controllerExpandSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_controllerPublishSecretRef {doc 'controllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
												optional
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_controllerPublishSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_controllerPublishSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_fsType {doc 'fsType to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs'}
												alternative
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_fsType_ext4 {doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_nodeExpandSecretRef {doc 'nodeExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeExpandVolume call This field is optional, may be omitted if no secret is required If the secret object contains more than one secret, all secrets are passed'}
												optional
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_nodeExpandSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_nodeExpandSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
												optional
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_nodePublishSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_nodePublishSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_nodeStageSecretRef {doc 'nodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
												optional
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_nodeStageSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_nodeStageSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_readOnly {default false, doc 'readOnly value to pass to ControllerPublishVolumeRequest Defaults to false (read/write)'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes of the volume to publish'}
												mandatory
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
										optional
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_fc_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_fc_fsType_ntfs {doc 'Specific value: ntfs'}
											Integer io_k8s_api_core_v1_PersistentVolumeList_items_spec_fc_lun {doc 'lun is Optional: FC target lun number'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
												mandatory
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
												mandatory
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
										optional
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_flexVolume_fsType {doc 'fsType is the Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
												alternative
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
												mandatory
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_flexVolume_secretRef {doc 'secretRef is Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
												optional
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_flexVolume_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_flexVolume_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine and exposed to the pod for its usage This depends on the Flocker control service being running'}
										optional
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
												mandatory
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
												mandatory
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod Provisioned by an admin More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
										optional
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
												alternative
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
											Integer io_k8s_api_core_v1_PersistentVolumeList_items_spec_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_glusterfs {doc 'glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod Provisioned by an admin More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
										optional
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_glusterfs_endpointsNamespace {doc 'endpointsNamespace is the namespace that contains Glusterfs endpoint If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_hostPath {doc 'hostPath represents a directory on the host Provisioned by a developer or tester This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
										optional
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod Provisioned by an admin'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_iscsi_iqn {doc 'iqn is Target iSCSI Qualified Name'}
											Integer io_k8s_api_core_v1_PersistentVolumeList_items_spec_iscsi_lun {doc 'lun is iSCSI Target Lun number'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
										optional
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
												alternative
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_iscsi_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
												mandatory
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
												optional
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_iscsi_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_iscsi_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_local {doc 'local represents directly-attached storage with node affinity'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_local_path {doc 'path of the full path to the volume on the node It can be either a directory or block device (disk, partition, )'}
										optional
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_local_fsType {doc 'fsType is the filesystem type to mount It applies only when the Path is a block device Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default value is to auto-select a filesystem if unspecified'}
												alternative
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_local_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_local_fsType_ext4 {doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_local_fsType_ntfs {doc 'Specific value: ntfs'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_mountOptions cardinality [1..*] {doc 'mountOptions is the list of mount options, eg [ro, soft] Not validated - mount will simply fail if one is invalid More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes/#mount-options'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_mountOptions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_nfs {doc 'nfs represents an NFS mount on the host Provisioned by an admin More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
										optional
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity {doc 'nodeAffinity defines constraints that limit what nodes this volume can be accessed from This field influences the scheduling of pods that use this volume'}
										optional
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required {doc 'required specifies hard node constraints that must be met'}
												mandatory
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
														optional
															io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																mandatory
																	String io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																	io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																		alternative
																			io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																			io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																			io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																mandatory
																	String io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																	io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																		alternative
																			io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																			io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																			io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_persistentVolumeReclaimPolicy {doc 'persistentVolumeReclaimPolicy defines what happens to a persistent volume when released from its claim Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated) Recycle must be supported by the volume plugin underlying this PersistentVolume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#reclaiming'}
										alternative
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_persistentVolumeReclaimPolicy_Retain {doc 'Specific value: Retain'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_persistentVolumeReclaimPolicy_Recycle {doc 'Specific value: Recycle'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_persistentVolumeReclaimPolicy_Delete {doc 'Specific value: Delete'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
										optional
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
										optional
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
										optional
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_quobyte_group {doc 'group to map volume access to Default is no group'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
												mandatory
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
												alternative
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_rbd_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
												optional
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_rbd_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_rbd_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
												optional
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_scaleIO_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_scaleIO_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
										optional
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
												alternative
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_scaleIO_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_scaleIO_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_scaleIO_sslEnabled {default false, doc 'sslEnabled is the flag to enable/disable SSL communication with Gateway, default false'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
												alternative
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
									String io_k8s_api_core_v1_PersistentVolumeList_items_spec_storageClassName {doc 'storageClassName is the name of StorageClass to which this persistent volume belongs Empty value means that this volume does not belong to any StorageClass'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_storageos {doc 'storageOS represents a StorageOS volume that is attached to the kubelet_s host machine and mounted into the pod More info: https:_examplesk8sio/volumes/storageos/READMEmd'}
										optional
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_storageos_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
												optional
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_storageos_secretRef_apiVersion {doc 'API version of the referent'}
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_storageos_secretRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_storageos_secretRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_storageos_secretRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_storageos_secretRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_storageos_secretRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
													String io_k8s_api_core_v1_PersistentVolumeList_items_spec_storageos_secretRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
									String io_k8s_api_core_v1_PersistentVolumeList_items_spec_volumeAttributesClassName {doc 'Name of VolumeAttributesClass to which this persistent volume belongs Empty value is not allowed When this field is not set, it indicates that this volume does not belong to any VolumeAttributesClass This field is mutable and can be changed by the CSI driver after a volume has been updated successfully to a new class For an unbound PersistentVolume, the volumeAttributesClassName will be matched with unbound PersistentVolumeClaims during the binding process This is an alpha field and requires enabling VolumeAttributesClass feature'}
									String io_k8s_api_core_v1_PersistentVolumeList_items_spec_volumeMode {doc 'volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state Value of Filesystem is implied when not included in spec'}
									io_k8s_api_core_v1_PersistentVolumeList_items_spec_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
										mandatory
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
										optional
											io_k8s_api_core_v1_PersistentVolumeList_items_spec_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PersistentVolumeList_items_spec_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
											String io_k8s_api_core_v1_PersistentVolumeList_items_spec_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
							io_k8s_api_core_v1_PersistentVolumeList_items_status {doc 'status represents the current information/status for the persistent volume Populated by the system Read-only More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistent-volumes'}
								optional
									io_k8s_api_core_v1_PersistentVolumeList_items_status_lastPhaseTransitionTime {doc 'lastPhaseTransitionTime is the time the phase transitioned from one to another and automatically resets to current time everytime a volume phase transitions This is a beta field and requires the PersistentVolumeLastPhaseTransitionTime feature to be enabled (enabled by default)'}
										optional
											String io_k8s_api_core_v1_PersistentVolumeList_items_status_lastPhaseTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_PersistentVolumeList_items_status_message {doc 'message is a human-readable message indicating details about why the volume is in this state'}
									String io_k8s_api_core_v1_PersistentVolumeList_items_status_phase {doc 'phase indicates if a volume is available, bound to a claim, or released by a claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#phase'}
									String io_k8s_api_core_v1_PersistentVolumeList_items_status_reason {doc 'reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI'}
				optional
					String io_k8s_api_core_v1_PersistentVolumeList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_PersistentVolumeList_kind {default 'PersistentVolumeList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_PersistentVolumeList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_core_v1_PersistentVolumeList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_core_v1_PersistentVolumeList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_core_v1_PersistentVolumeList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_PersistentVolumeList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_core_v1_PersistentVolumeSpec {doc 'PersistentVolumeSpec is the specification of a persistent volume'}
				optional
					io_k8s_api_core_v1_PersistentVolumeSpec_accessModes cardinality [1..*] {doc 'accessModes contains all ways the volume can be mounted More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeSpec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_PersistentVolumeSpec_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeSpec_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
						optional
							io_k8s_api_core_v1_PersistentVolumeSpec_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
								alternative
									io_k8s_api_core_v1_PersistentVolumeSpec_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_PersistentVolumeSpec_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
									io_k8s_api_core_v1_PersistentVolumeSpec_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
							Integer io_k8s_api_core_v1_PersistentVolumeSpec_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
							io_k8s_api_core_v1_PersistentVolumeSpec_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
					io_k8s_api_core_v1_PersistentVolumeSpec_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeSpec_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
						optional
							io_k8s_api_core_v1_PersistentVolumeSpec_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
								alternative
									io_k8s_api_core_v1_PersistentVolumeSpec_azureDisk_cachingMode_None {doc 'Specific value: None'}
									io_k8s_api_core_v1_PersistentVolumeSpec_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
									io_k8s_api_core_v1_PersistentVolumeSpec_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
							io_k8s_api_core_v1_PersistentVolumeSpec_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
								alternative
									io_k8s_api_core_v1_PersistentVolumeSpec_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_PersistentVolumeSpec_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
									io_k8s_api_core_v1_PersistentVolumeSpec_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
							io_k8s_api_core_v1_PersistentVolumeSpec_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
								alternative
									io_k8s_api_core_v1_PersistentVolumeSpec_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
									io_k8s_api_core_v1_PersistentVolumeSpec_azureDisk_kind_Managed {doc 'Specific value: Managed'}
									io_k8s_api_core_v1_PersistentVolumeSpec_azureDisk_kind_Shared {doc 'Specific value: Shared'}
							io_k8s_api_core_v1_PersistentVolumeSpec_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
					io_k8s_api_core_v1_PersistentVolumeSpec_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeSpec_azureFile_secretName {doc 'secretName is the name of secret that contains Azure Storage Account Name and Key'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_azureFile_shareName {doc 'shareName is the azure Share Name'}
						optional
							io_k8s_api_core_v1_PersistentVolumeSpec_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_azureFile_secretNamespace {doc 'secretNamespace is the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod'}
					io_k8s_api_core_v1_PersistentVolumeSpec_capacity cardinality [1..*] {doc 'capacity is the description of the persistent volume_s resources and capacity More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#capacity'}
						alternative
							String io_k8s_api_core_v1_PersistentVolumeSpec_capacity_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_PersistentVolumeSpec_capacity_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_core_v1_PersistentVolumeSpec_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
						mandatory
							io_k8s_api_core_v1_PersistentVolumeSpec_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeSpec_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							String io_k8s_api_core_v1_PersistentVolumeSpec_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
							io_k8s_api_core_v1_PersistentVolumeSpec_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
							io_k8s_api_core_v1_PersistentVolumeSpec_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeSpec_cephfs_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
									String io_k8s_api_core_v1_PersistentVolumeSpec_cephfs_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_cephfs_user {doc 'user is Optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
					io_k8s_api_core_v1_PersistentVolumeSpec_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeSpec_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
						optional
							io_k8s_api_core_v1_PersistentVolumeSpec_cinder_fsType {doc 'fsType Filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
								alternative
									io_k8s_api_core_v1_PersistentVolumeSpec_cinder_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_PersistentVolumeSpec_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
									io_k8s_api_core_v1_PersistentVolumeSpec_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
							io_k8s_api_core_v1_PersistentVolumeSpec_cinder_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
							io_k8s_api_core_v1_PersistentVolumeSpec_cinder_secretRef {doc 'secretRef is Optional: points to a secret object containing parameters used to connect to OpenStack'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeSpec_cinder_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
									String io_k8s_api_core_v1_PersistentVolumeSpec_cinder_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
					io_k8s_api_core_v1_PersistentVolumeSpec_claimRef {doc 'claimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim Expected to be non-nil when bound claimVolumeName is the authoritative bind between PV and PVC More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#binding'}
						optional
							String io_k8s_api_core_v1_PersistentVolumeSpec_claimRef_apiVersion {doc 'API version of the referent'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_claimRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_claimRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_claimRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_claimRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_claimRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_claimRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
					io_k8s_api_core_v1_PersistentVolumeSpec_csi {doc 'csi represents storage that is handled by an external CSI driver (Beta feature)'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeSpec_csi_driver {doc 'driver is the name of the driver to use for this volume Required'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_csi_volumeHandle {doc 'volumeHandle is the unique volume name returned by the CSI volume plugins CreateVolume to refer to the volume on all subsequent calls Required'}
						optional
							io_k8s_api_core_v1_PersistentVolumeSpec_csi_controllerExpandSecretRef {doc 'controllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeSpec_csi_controllerExpandSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
									String io_k8s_api_core_v1_PersistentVolumeSpec_csi_controllerExpandSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
							io_k8s_api_core_v1_PersistentVolumeSpec_csi_controllerPublishSecretRef {doc 'controllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeSpec_csi_controllerPublishSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
									String io_k8s_api_core_v1_PersistentVolumeSpec_csi_controllerPublishSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
							io_k8s_api_core_v1_PersistentVolumeSpec_csi_fsType {doc 'fsType to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs'}
								alternative
									io_k8s_api_core_v1_PersistentVolumeSpec_csi_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_PersistentVolumeSpec_csi_fsType_ext4 {doc 'Specific value: ext4'}
									io_k8s_api_core_v1_PersistentVolumeSpec_csi_fsType_ntfs {doc 'Specific value: ntfs'}
							io_k8s_api_core_v1_PersistentVolumeSpec_csi_nodeExpandSecretRef {doc 'nodeExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeExpandVolume call This field is optional, may be omitted if no secret is required If the secret object contains more than one secret, all secrets are passed'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeSpec_csi_nodeExpandSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
									String io_k8s_api_core_v1_PersistentVolumeSpec_csi_nodeExpandSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
							io_k8s_api_core_v1_PersistentVolumeSpec_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeSpec_csi_nodePublishSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
									String io_k8s_api_core_v1_PersistentVolumeSpec_csi_nodePublishSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
							io_k8s_api_core_v1_PersistentVolumeSpec_csi_nodeStageSecretRef {doc 'nodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeSpec_csi_nodeStageSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
									String io_k8s_api_core_v1_PersistentVolumeSpec_csi_nodeStageSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
							io_k8s_api_core_v1_PersistentVolumeSpec_csi_readOnly {default false, doc 'readOnly value to pass to ControllerPublishVolumeRequest Defaults to false (read/write)'}
							io_k8s_api_core_v1_PersistentVolumeSpec_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes of the volume to publish'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeSpec_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_PersistentVolumeSpec_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
						optional
							io_k8s_api_core_v1_PersistentVolumeSpec_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
								alternative
									io_k8s_api_core_v1_PersistentVolumeSpec_fc_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_PersistentVolumeSpec_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
									io_k8s_api_core_v1_PersistentVolumeSpec_fc_fsType_ntfs {doc 'Specific value: ntfs'}
							Integer io_k8s_api_core_v1_PersistentVolumeSpec_fc_lun {doc 'lun is Optional: FC target lun number'}
							io_k8s_api_core_v1_PersistentVolumeSpec_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
							io_k8s_api_core_v1_PersistentVolumeSpec_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeSpec_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PersistentVolumeSpec_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeSpec_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_PersistentVolumeSpec_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeSpec_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
						optional
							io_k8s_api_core_v1_PersistentVolumeSpec_flexVolume_fsType {doc 'fsType is the Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
								alternative
									io_k8s_api_core_v1_PersistentVolumeSpec_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_PersistentVolumeSpec_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
									io_k8s_api_core_v1_PersistentVolumeSpec_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
							io_k8s_api_core_v1_PersistentVolumeSpec_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeSpec_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PersistentVolumeSpec_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
							io_k8s_api_core_v1_PersistentVolumeSpec_flexVolume_secretRef {doc 'secretRef is Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeSpec_flexVolume_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
									String io_k8s_api_core_v1_PersistentVolumeSpec_flexVolume_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
					io_k8s_api_core_v1_PersistentVolumeSpec_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine and exposed to the pod for its usage This depends on the Flocker control service being running'}
						optional
							io_k8s_api_core_v1_PersistentVolumeSpec_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeSpec_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							io_k8s_api_core_v1_PersistentVolumeSpec_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeSpec_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
					io_k8s_api_core_v1_PersistentVolumeSpec_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod Provisioned by an admin More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeSpec_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
						optional
							io_k8s_api_core_v1_PersistentVolumeSpec_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
								alternative
									io_k8s_api_core_v1_PersistentVolumeSpec_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_PersistentVolumeSpec_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
									io_k8s_api_core_v1_PersistentVolumeSpec_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
							Integer io_k8s_api_core_v1_PersistentVolumeSpec_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
							io_k8s_api_core_v1_PersistentVolumeSpec_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
					io_k8s_api_core_v1_PersistentVolumeSpec_glusterfs {doc 'glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod Provisioned by an admin More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeSpec_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
						optional
							String io_k8s_api_core_v1_PersistentVolumeSpec_glusterfs_endpointsNamespace {doc 'endpointsNamespace is the namespace that contains Glusterfs endpoint If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
							io_k8s_api_core_v1_PersistentVolumeSpec_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
					io_k8s_api_core_v1_PersistentVolumeSpec_hostPath {doc 'hostPath represents a directory on the host Provisioned by a developer or tester This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeSpec_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
						optional
							String io_k8s_api_core_v1_PersistentVolumeSpec_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
					io_k8s_api_core_v1_PersistentVolumeSpec_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod Provisioned by an admin'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeSpec_iscsi_iqn {doc 'iqn is Target iSCSI Qualified Name'}
							Integer io_k8s_api_core_v1_PersistentVolumeSpec_iscsi_lun {doc 'lun is iSCSI Target Lun number'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
						optional
							io_k8s_api_core_v1_PersistentVolumeSpec_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
							io_k8s_api_core_v1_PersistentVolumeSpec_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
							io_k8s_api_core_v1_PersistentVolumeSpec_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
								alternative
									io_k8s_api_core_v1_PersistentVolumeSpec_iscsi_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_PersistentVolumeSpec_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
									io_k8s_api_core_v1_PersistentVolumeSpec_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
							io_k8s_api_core_v1_PersistentVolumeSpec_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeSpec_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PersistentVolumeSpec_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
							io_k8s_api_core_v1_PersistentVolumeSpec_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeSpec_iscsi_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
									String io_k8s_api_core_v1_PersistentVolumeSpec_iscsi_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
					io_k8s_api_core_v1_PersistentVolumeSpec_local {doc 'local represents directly-attached storage with node affinity'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeSpec_local_path {doc 'path of the full path to the volume on the node It can be either a directory or block device (disk, partition, )'}
						optional
							io_k8s_api_core_v1_PersistentVolumeSpec_local_fsType {doc 'fsType is the filesystem type to mount It applies only when the Path is a block device Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default value is to auto-select a filesystem if unspecified'}
								alternative
									io_k8s_api_core_v1_PersistentVolumeSpec_local_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_PersistentVolumeSpec_local_fsType_ext4 {doc 'Specific value: ext4'}
									io_k8s_api_core_v1_PersistentVolumeSpec_local_fsType_ntfs {doc 'Specific value: ntfs'}
					io_k8s_api_core_v1_PersistentVolumeSpec_mountOptions cardinality [1..*] {doc 'mountOptions is the list of mount options, eg [ro, soft] Not validated - mount will simply fail if one is invalid More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes/#mount-options'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeSpec_mountOptions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_PersistentVolumeSpec_nfs {doc 'nfs represents an NFS mount on the host Provisioned by an admin More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeSpec_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
						optional
							io_k8s_api_core_v1_PersistentVolumeSpec_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
					io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity {doc 'nodeAffinity defines constraints that limit what nodes this volume can be accessed from This field influences the scheduling of pods that use this volume'}
						optional
							io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required {doc 'required specifies hard node constraints that must be met'}
								mandatory
									io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
										optional
											io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
												mandatory
													String io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
													io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
														alternative
															io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
															io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
															io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
												mandatory
													String io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
													io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
														alternative
															io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
															io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
															io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
															io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_PersistentVolumeSpec_persistentVolumeReclaimPolicy {doc 'persistentVolumeReclaimPolicy defines what happens to a persistent volume when released from its claim Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated) Recycle must be supported by the volume plugin underlying this PersistentVolume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#reclaiming'}
						alternative
							io_k8s_api_core_v1_PersistentVolumeSpec_persistentVolumeReclaimPolicy_Retain {doc 'Specific value: Retain'}
							io_k8s_api_core_v1_PersistentVolumeSpec_persistentVolumeReclaimPolicy_Recycle {doc 'Specific value: Recycle'}
							io_k8s_api_core_v1_PersistentVolumeSpec_persistentVolumeReclaimPolicy_Delete {doc 'Specific value: Delete'}
					io_k8s_api_core_v1_PersistentVolumeSpec_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeSpec_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
						optional
							io_k8s_api_core_v1_PersistentVolumeSpec_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
								alternative
									io_k8s_api_core_v1_PersistentVolumeSpec_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_PersistentVolumeSpec_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
									io_k8s_api_core_v1_PersistentVolumeSpec_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
					io_k8s_api_core_v1_PersistentVolumeSpec_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeSpec_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
						optional
							io_k8s_api_core_v1_PersistentVolumeSpec_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
								alternative
									io_k8s_api_core_v1_PersistentVolumeSpec_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_PersistentVolumeSpec_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
							io_k8s_api_core_v1_PersistentVolumeSpec_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
					io_k8s_api_core_v1_PersistentVolumeSpec_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeSpec_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
						optional
							String io_k8s_api_core_v1_PersistentVolumeSpec_quobyte_group {doc 'group to map volume access to Default is no group'}
							io_k8s_api_core_v1_PersistentVolumeSpec_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
					io_k8s_api_core_v1_PersistentVolumeSpec_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeSpec_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
							io_k8s_api_core_v1_PersistentVolumeSpec_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
								mandatory
									String io_k8s_api_core_v1_PersistentVolumeSpec_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							io_k8s_api_core_v1_PersistentVolumeSpec_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
								alternative
									io_k8s_api_core_v1_PersistentVolumeSpec_rbd_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_PersistentVolumeSpec_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
									io_k8s_api_core_v1_PersistentVolumeSpec_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
							io_k8s_api_core_v1_PersistentVolumeSpec_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
							io_k8s_api_core_v1_PersistentVolumeSpec_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeSpec_rbd_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
									String io_k8s_api_core_v1_PersistentVolumeSpec_rbd_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
					io_k8s_api_core_v1_PersistentVolumeSpec_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeSpec_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
							io_k8s_api_core_v1_PersistentVolumeSpec_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeSpec_scaleIO_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
									String io_k8s_api_core_v1_PersistentVolumeSpec_scaleIO_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
						optional
							io_k8s_api_core_v1_PersistentVolumeSpec_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
								alternative
									io_k8s_api_core_v1_PersistentVolumeSpec_scaleIO_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_PersistentVolumeSpec_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
									io_k8s_api_core_v1_PersistentVolumeSpec_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
							io_k8s_api_core_v1_PersistentVolumeSpec_scaleIO_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
							io_k8s_api_core_v1_PersistentVolumeSpec_scaleIO_sslEnabled {default false, doc 'sslEnabled is the flag to enable/disable SSL communication with Gateway, default false'}
							io_k8s_api_core_v1_PersistentVolumeSpec_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
								alternative
									io_k8s_api_core_v1_PersistentVolumeSpec_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
									io_k8s_api_core_v1_PersistentVolumeSpec_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
					String io_k8s_api_core_v1_PersistentVolumeSpec_storageClassName {doc 'storageClassName is the name of StorageClass to which this persistent volume belongs Empty value means that this volume does not belong to any StorageClass'}
					io_k8s_api_core_v1_PersistentVolumeSpec_storageos {doc 'storageOS represents a StorageOS volume that is attached to the kubelet_s host machine and mounted into the pod More info: https:_examplesk8sio/volumes/storageos/READMEmd'}
						optional
							io_k8s_api_core_v1_PersistentVolumeSpec_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
								alternative
									io_k8s_api_core_v1_PersistentVolumeSpec_storageos_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_PersistentVolumeSpec_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
									io_k8s_api_core_v1_PersistentVolumeSpec_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
							io_k8s_api_core_v1_PersistentVolumeSpec_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
							io_k8s_api_core_v1_PersistentVolumeSpec_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
								optional
									String io_k8s_api_core_v1_PersistentVolumeSpec_storageos_secretRef_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_PersistentVolumeSpec_storageos_secretRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
									String io_k8s_api_core_v1_PersistentVolumeSpec_storageos_secretRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_PersistentVolumeSpec_storageos_secretRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									String io_k8s_api_core_v1_PersistentVolumeSpec_storageos_secretRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
									String io_k8s_api_core_v1_PersistentVolumeSpec_storageos_secretRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_PersistentVolumeSpec_storageos_secretRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
					String io_k8s_api_core_v1_PersistentVolumeSpec_volumeAttributesClassName {doc 'Name of VolumeAttributesClass to which this persistent volume belongs Empty value is not allowed When this field is not set, it indicates that this volume does not belong to any VolumeAttributesClass This field is mutable and can be changed by the CSI driver after a volume has been updated successfully to a new class For an unbound PersistentVolume, the volumeAttributesClassName will be matched with unbound PersistentVolumeClaims during the binding process This is an alpha field and requires enabling VolumeAttributesClass feature'}
					String io_k8s_api_core_v1_PersistentVolumeSpec_volumeMode {doc 'volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state Value of Filesystem is implied when not included in spec'}
					io_k8s_api_core_v1_PersistentVolumeSpec_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
						mandatory
							String io_k8s_api_core_v1_PersistentVolumeSpec_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
						optional
							io_k8s_api_core_v1_PersistentVolumeSpec_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
								alternative
									io_k8s_api_core_v1_PersistentVolumeSpec_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_PersistentVolumeSpec_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
									io_k8s_api_core_v1_PersistentVolumeSpec_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
							String io_k8s_api_core_v1_PersistentVolumeSpec_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
			io_k8s_api_core_v1_PersistentVolumeStatus {doc 'PersistentVolumeStatus is the current status of a persistent volume'}
				optional
					io_k8s_api_core_v1_PersistentVolumeStatus_lastPhaseTransitionTime {doc 'lastPhaseTransitionTime is the time the phase transitioned from one to another and automatically resets to current time everytime a volume phase transitions This is a beta field and requires the PersistentVolumeLastPhaseTransitionTime feature to be enabled (enabled by default)'}
						optional
							String io_k8s_api_core_v1_PersistentVolumeStatus_lastPhaseTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_api_core_v1_PersistentVolumeStatus_message {doc 'message is a human-readable message indicating details about why the volume is in this state'}
					String io_k8s_api_core_v1_PersistentVolumeStatus_phase {doc 'phase indicates if a volume is available, bound to a claim, or released by a claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#phase'}
					String io_k8s_api_core_v1_PersistentVolumeStatus_reason {doc 'reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI'}
			io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource {doc 'Represents a Photon Controller persistent disk resource'}
				mandatory
					String io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
				optional
					io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
						alternative
							io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource_fsType_xfs {doc 'Specific value: xfs'}
							io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource_fsType_ext4 {default, doc 'Specific value: ext4'}
							io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource_fsType_ntfs {doc 'Specific value: ntfs'}
			io_k8s_api_core_v1_Pod {doc 'Pod is a collection of containers that can run on a host This resource is created by clients and scheduled onto hosts'}
				optional
					String io_k8s_api_core_v1_Pod_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_Pod_kind {default 'Pod', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_Pod_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_core_v1_Pod_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_core_v1_Pod_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_Pod_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_Pod_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_Pod_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_Pod_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_core_v1_Pod_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_core_v1_Pod_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_Pod_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_Pod_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_Pod_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_core_v1_Pod_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_core_v1_Pod_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_core_v1_Pod_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_core_v1_Pod_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_Pod_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_Pod_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_core_v1_Pod_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_core_v1_Pod_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_core_v1_Pod_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_core_v1_Pod_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_core_v1_Pod_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_core_v1_Pod_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_core_v1_Pod_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_core_v1_Pod_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_core_v1_Pod_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_core_v1_Pod_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_core_v1_Pod_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_core_v1_Pod_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_Pod_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_core_v1_Pod_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_core_v1_Pod_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_Pod_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_Pod_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_Pod_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_Pod_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_core_v1_Pod_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_core_v1_Pod_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_core_v1_Pod_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_Pod_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_core_v1_Pod_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_core_v1_Pod_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						mandatory
							io_k8s_api_core_v1_Pod_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
								mandatory
									String io_k8s_api_core_v1_Pod_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
								optional
									io_k8s_api_core_v1_Pod_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_Pod_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_Pod_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
										optional
											String io_k8s_api_core_v1_Pod_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
											io_k8s_api_core_v1_Pod_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
												optional
													io_k8s_api_core_v1_Pod_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
														optional
															String io_k8s_api_core_v1_Pod_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_Pod_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
													io_k8s_api_core_v1_Pod_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
														optional
															String io_k8s_api_core_v1_Pod_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
													io_k8s_api_core_v1_Pod_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
														optional
															String io_k8s_api_core_v1_Pod_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
															io_k8s_api_core_v1_Pod_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																alternative
																	String io_k8s_api_core_v1_Pod_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_Pod_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_Pod_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
														optional
															String io_k8s_api_core_v1_Pod_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_Pod_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
									io_k8s_api_core_v1_Pod_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
										optional
											io_k8s_api_core_v1_Pod_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
												optional
													String io_k8s_api_core_v1_Pod_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_Pod_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
											String io_k8s_api_core_v1_Pod_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
											io_k8s_api_core_v1_Pod_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
												optional
													String io_k8s_api_core_v1_Pod_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_Pod_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
									String io_k8s_api_core_v1_Pod_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
									io_k8s_api_core_v1_Pod_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
										alternative
											io_k8s_api_core_v1_Pod_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
											io_k8s_api_core_v1_Pod_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
											io_k8s_api_core_v1_Pod_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
									io_k8s_api_core_v1_Pod_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
										optional
											io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
												optional
													io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
														mandatory
															Integer io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
													io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
														mandatory
															io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
												optional
													io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
														mandatory
															Integer io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
													io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
														mandatory
															io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
									io_k8s_api_core_v1_Pod_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
										optional
											io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
											io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
												mandatory
													Integer io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
												optional
													String io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
											io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											Integer io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											Integer io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
											Integer io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
											io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											Integer io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
											Integer io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									io_k8s_api_core_v1_Pod_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
										mandatory
											Integer io_k8s_api_core_v1_Pod_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
										optional
											String io_k8s_api_core_v1_Pod_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
											Integer io_k8s_api_core_v1_Pod_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
											String io_k8s_api_core_v1_Pod_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
											io_k8s_api_core_v1_Pod_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
												alternative
													io_k8s_api_core_v1_Pod_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
													io_k8s_api_core_v1_Pod_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
													io_k8s_api_core_v1_Pod_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
									io_k8s_api_core_v1_Pod_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
										optional
											io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
											io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
												mandatory
													Integer io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
												optional
													String io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
											io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											Integer io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											Integer io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
											Integer io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
											io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											Integer io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
											Integer io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									io_k8s_api_core_v1_Pod_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
										mandatory
											io_k8s_api_core_v1_Pod_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
												alternative
													io_k8s_api_core_v1_Pod_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
													io_k8s_api_core_v1_Pod_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
											String io_k8s_api_core_v1_Pod_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
									io_k8s_api_core_v1_Pod_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
										optional
											io_k8s_api_core_v1_Pod_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
											io_k8s_api_core_v1_Pod_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_core_v1_Pod_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_Pod_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_Pod_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_core_v1_Pod_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_Pod_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
									String io_k8s_api_core_v1_Pod_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
									io_k8s_api_core_v1_Pod_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
										optional
											io_k8s_api_core_v1_Pod_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
											io_k8s_api_core_v1_Pod_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
														alternative
															io_k8s_api_core_v1_Pod_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_core_v1_Pod_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_core_v1_Pod_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_core_v1_Pod_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
														mandatory
															io_k8s_api_core_v1_Pod_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_Pod_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
												optional
													io_k8s_api_core_v1_Pod_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_Pod_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_Pod_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
											io_k8s_api_core_v1_Pod_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_Pod_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
											io_k8s_api_core_v1_Pod_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_Pod_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_core_v1_Pod_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_core_v1_Pod_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_Pod_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_core_v1_Pod_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
												optional
													String io_k8s_api_core_v1_Pod_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
													String io_k8s_api_core_v1_Pod_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
													String io_k8s_api_core_v1_Pod_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
													String io_k8s_api_core_v1_Pod_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
											io_k8s_api_core_v1_Pod_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
														alternative
															io_k8s_api_core_v1_Pod_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_core_v1_Pod_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_core_v1_Pod_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_core_v1_Pod_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
														mandatory
															io_k8s_api_core_v1_Pod_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_Pod_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
												optional
													String io_k8s_api_core_v1_Pod_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
													String io_k8s_api_core_v1_Pod_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
													io_k8s_api_core_v1_Pod_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
													String io_k8s_api_core_v1_Pod_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
									io_k8s_api_core_v1_Pod_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
										optional
											io_k8s_api_core_v1_Pod_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_Pod_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_Pod_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
											io_k8s_api_core_v1_Pod_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
												mandatory
													Integer io_k8s_api_core_v1_Pod_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
												optional
													String io_k8s_api_core_v1_Pod_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
											io_k8s_api_core_v1_Pod_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_Pod_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_Pod_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_Pod_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_Pod_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_Pod_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_Pod_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_Pod_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											Integer io_k8s_api_core_v1_Pod_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											Integer io_k8s_api_core_v1_Pod_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
											Integer io_k8s_api_core_v1_Pod_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
											io_k8s_api_core_v1_Pod_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_Pod_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_Pod_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_Pod_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											Integer io_k8s_api_core_v1_Pod_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
											Integer io_k8s_api_core_v1_Pod_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									io_k8s_api_core_v1_Pod_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
									io_k8s_api_core_v1_Pod_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
									String io_k8s_api_core_v1_Pod_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
									String io_k8s_api_core_v1_Pod_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
									io_k8s_api_core_v1_Pod_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
									io_k8s_api_core_v1_Pod_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
											String io_k8s_api_core_v1_Pod_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
									io_k8s_api_core_v1_Pod_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
											String io_k8s_api_core_v1_Pod_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
										optional
											String io_k8s_api_core_v1_Pod_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
											io_k8s_api_core_v1_Pod_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
											String io_k8s_api_core_v1_Pod_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
											String io_k8s_api_core_v1_Pod_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
											String io_k8s_api_core_v1_Pod_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
									String io_k8s_api_core_v1_Pod_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
						optional
							Integer io_k8s_api_core_v1_Pod_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
							io_k8s_api_core_v1_Pod_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
								optional
									io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
										optional
											io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
														optional
															io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																	io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																		alternative
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																	io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																		alternative
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
											io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
														optional
															io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																	io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																		alternative
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																	io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																		alternative
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_Pod_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
										optional
											io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
														optional
															io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																optional
																	io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																optional
																	io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
											io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
												optional
													io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
														optional
															io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
														optional
															io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
										optional
											io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
														optional
															io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																optional
																	io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																optional
																	io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
											io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
												optional
													io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
														optional
															io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
														optional
															io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_Pod_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
							io_k8s_api_core_v1_Pod_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
								optional
									io_k8s_api_core_v1_Pod_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_Pod_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_dnsConfig_options_name {doc 'Required'}
										optional
											String io_k8s_api_core_v1_Pod_spec_dnsConfig_options_value
									io_k8s_api_core_v1_Pod_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_Pod_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
								alternative
									io_k8s_api_core_v1_Pod_spec_dnsPolicy_None {doc 'Specific value: None'}
									io_k8s_api_core_v1_Pod_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
									io_k8s_api_core_v1_Pod_spec_dnsPolicy_Default {doc 'Specific value: Default'}
									io_k8s_api_core_v1_Pod_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
							io_k8s_api_core_v1_Pod_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
							io_k8s_api_core_v1_Pod_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
								mandatory
									String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
								optional
									io_k8s_api_core_v1_Pod_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_Pod_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_Pod_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
										optional
											String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
												optional
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
														optional
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_Pod_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
														optional
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
														optional
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
															io_k8s_api_core_v1_Pod_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																alternative
																	String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
														optional
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_Pod_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
									io_k8s_api_core_v1_Pod_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
										optional
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
												optional
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
											String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
												optional
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
									String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
									io_k8s_api_core_v1_Pod_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
										alternative
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
									io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
										optional
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
												optional
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
														mandatory
															Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
														mandatory
															io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
												optional
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
														mandatory
															Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
														mandatory
															io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
									io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
										optional
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
												mandatory
													Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
												optional
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
											Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
											Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									io_k8s_api_core_v1_Pod_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
										mandatory
											Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
										optional
											String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
											Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
											String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
												alternative
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
									io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
										optional
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
												mandatory
													Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
												optional
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
											Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
											Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									io_k8s_api_core_v1_Pod_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
										mandatory
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
												alternative
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
											String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
									io_k8s_api_core_v1_Pod_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
										optional
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
									String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
									io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
										optional
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
														alternative
															io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
														mandatory
															io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
												optional
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
												optional
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
														alternative
															io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
														mandatory
															io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
												optional
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
									io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
										optional
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
												mandatory
													Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
												optional
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
											Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
											Integer io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									io_k8s_api_core_v1_Pod_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
									io_k8s_api_core_v1_Pod_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
									String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
									String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
									String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
									io_k8s_api_core_v1_Pod_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
									io_k8s_api_core_v1_Pod_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
											String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
									io_k8s_api_core_v1_Pod_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
											String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
										optional
											String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
											io_k8s_api_core_v1_Pod_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
											String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
											String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
											String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
									String io_k8s_api_core_v1_Pod_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
							io_k8s_api_core_v1_Pod_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
								mandatory
									String io_k8s_api_core_v1_Pod_spec_hostAliases_ip {doc 'IP address of the host file entry'}
								optional
									io_k8s_api_core_v1_Pod_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_Pod_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
							io_k8s_api_core_v1_Pod_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
							io_k8s_api_core_v1_Pod_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
							io_k8s_api_core_v1_Pod_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
							String io_k8s_api_core_v1_Pod_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
							io_k8s_api_core_v1_Pod_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
								optional
									String io_k8s_api_core_v1_Pod_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							io_k8s_api_core_v1_Pod_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
								mandatory
									String io_k8s_api_core_v1_Pod_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
								optional
									io_k8s_api_core_v1_Pod_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_Pod_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_Pod_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
										optional
											String io_k8s_api_core_v1_Pod_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
											io_k8s_api_core_v1_Pod_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
												optional
													io_k8s_api_core_v1_Pod_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
														optional
															String io_k8s_api_core_v1_Pod_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_Pod_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
													io_k8s_api_core_v1_Pod_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
														optional
															String io_k8s_api_core_v1_Pod_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
													io_k8s_api_core_v1_Pod_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
														optional
															String io_k8s_api_core_v1_Pod_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
															io_k8s_api_core_v1_Pod_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																alternative
																	String io_k8s_api_core_v1_Pod_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_Pod_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_Pod_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
														optional
															String io_k8s_api_core_v1_Pod_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_Pod_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
									io_k8s_api_core_v1_Pod_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
										optional
											io_k8s_api_core_v1_Pod_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
												optional
													String io_k8s_api_core_v1_Pod_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_Pod_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
											String io_k8s_api_core_v1_Pod_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
											io_k8s_api_core_v1_Pod_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
												optional
													String io_k8s_api_core_v1_Pod_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_Pod_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
									String io_k8s_api_core_v1_Pod_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
									io_k8s_api_core_v1_Pod_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
										alternative
											io_k8s_api_core_v1_Pod_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
											io_k8s_api_core_v1_Pod_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
											io_k8s_api_core_v1_Pod_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
									io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
										optional
											io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
												optional
													io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
														mandatory
															Integer io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
													io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
														mandatory
															io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
												optional
													io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
														mandatory
															Integer io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
													io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
														mandatory
															io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
									io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
										optional
											io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
											io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
												mandatory
													Integer io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
												optional
													String io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
											io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											Integer io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											Integer io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
											Integer io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
											io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											Integer io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
											Integer io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									io_k8s_api_core_v1_Pod_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
										mandatory
											Integer io_k8s_api_core_v1_Pod_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
										optional
											String io_k8s_api_core_v1_Pod_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
											Integer io_k8s_api_core_v1_Pod_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
											String io_k8s_api_core_v1_Pod_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
											io_k8s_api_core_v1_Pod_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
												alternative
													io_k8s_api_core_v1_Pod_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
													io_k8s_api_core_v1_Pod_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
													io_k8s_api_core_v1_Pod_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
									io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
										optional
											io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
											io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
												mandatory
													Integer io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
												optional
													String io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
											io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											Integer io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											Integer io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
											Integer io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
											io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											Integer io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
											Integer io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									io_k8s_api_core_v1_Pod_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
										mandatory
											io_k8s_api_core_v1_Pod_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
												alternative
													io_k8s_api_core_v1_Pod_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
													io_k8s_api_core_v1_Pod_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
											String io_k8s_api_core_v1_Pod_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
									io_k8s_api_core_v1_Pod_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
										optional
											io_k8s_api_core_v1_Pod_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
											io_k8s_api_core_v1_Pod_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_core_v1_Pod_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_Pod_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_Pod_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_core_v1_Pod_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_Pod_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
									String io_k8s_api_core_v1_Pod_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
									io_k8s_api_core_v1_Pod_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
										optional
											io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
											io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
														alternative
															io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
														mandatory
															io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
												optional
													io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
											io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
											io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
												optional
													String io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
													String io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
													String io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
													String io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
											io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
														alternative
															io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
														mandatory
															io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
												optional
													String io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
													String io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
													io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
													String io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
									io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
										optional
											io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
											io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
												mandatory
													Integer io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
												optional
													String io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
											io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											Integer io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											Integer io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
											Integer io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
											io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											Integer io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
											Integer io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									io_k8s_api_core_v1_Pod_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
									io_k8s_api_core_v1_Pod_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
									String io_k8s_api_core_v1_Pod_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
									String io_k8s_api_core_v1_Pod_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
									io_k8s_api_core_v1_Pod_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
									io_k8s_api_core_v1_Pod_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
											String io_k8s_api_core_v1_Pod_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
									io_k8s_api_core_v1_Pod_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
											String io_k8s_api_core_v1_Pod_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
										optional
											String io_k8s_api_core_v1_Pod_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
											io_k8s_api_core_v1_Pod_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
											String io_k8s_api_core_v1_Pod_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
											String io_k8s_api_core_v1_Pod_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
											String io_k8s_api_core_v1_Pod_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
									String io_k8s_api_core_v1_Pod_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
							String io_k8s_api_core_v1_Pod_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
							io_k8s_api_core_v1_Pod_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
								mandatory
									String io_k8s_api_core_v1_Pod_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_Pod_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
								mandatory
									io_k8s_api_core_v1_Pod_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
										alternative
											io_k8s_api_core_v1_Pod_spec_os_name_windows {doc 'Specific value: windows'}
											io_k8s_api_core_v1_Pod_spec_os_name_linux {doc 'Specific value: linux'}
							io_k8s_api_core_v1_Pod_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
								alternative
									String io_k8s_api_core_v1_Pod_spec_overhead_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_Pod_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_Pod_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
								alternative
									io_k8s_api_core_v1_Pod_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
									io_k8s_api_core_v1_Pod_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
							Integer io_k8s_api_core_v1_Pod_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
							String io_k8s_api_core_v1_Pod_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
							io_k8s_api_core_v1_Pod_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
								mandatory
									String io_k8s_api_core_v1_Pod_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
							io_k8s_api_core_v1_Pod_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
								mandatory
									String io_k8s_api_core_v1_Pod_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
								optional
									io_k8s_api_core_v1_Pod_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
										optional
											io_k8s_api_core_v1_Pod_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_Pod_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							io_k8s_api_core_v1_Pod_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
								alternative
									io_k8s_api_core_v1_Pod_spec_restartPolicy_Never {doc 'Specific value: Never'}
									io_k8s_api_core_v1_Pod_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
									io_k8s_api_core_v1_Pod_spec_restartPolicy_Always {doc 'Specific value: Always'}
							String io_k8s_api_core_v1_Pod_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
							String io_k8s_api_core_v1_Pod_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
							io_k8s_api_core_v1_Pod_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
								mandatory
									String io_k8s_api_core_v1_Pod_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
							io_k8s_api_core_v1_Pod_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
								optional
									io_k8s_api_core_v1_Pod_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
										mandatory
											io_k8s_api_core_v1_Pod_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
												alternative
													io_k8s_api_core_v1_Pod_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
													io_k8s_api_core_v1_Pod_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
													io_k8s_api_core_v1_Pod_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
										optional
											io_k8s_api_core_v1_Pod_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_Pod_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
										mandatory
											Integer io_k8s_api_core_v1_Pod_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
									io_k8s_api_core_v1_Pod_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
										alternative
											io_k8s_api_core_v1_Pod_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
											io_k8s_api_core_v1_Pod_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
									io_k8s_api_core_v1_Pod_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
										mandatory
											Integer io_k8s_api_core_v1_Pod_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
									io_k8s_api_core_v1_Pod_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
									io_k8s_api_core_v1_Pod_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
										mandatory
											Integer io_k8s_api_core_v1_Pod_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
									io_k8s_api_core_v1_Pod_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
										optional
											String io_k8s_api_core_v1_Pod_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
											String io_k8s_api_core_v1_Pod_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
											String io_k8s_api_core_v1_Pod_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
											String io_k8s_api_core_v1_Pod_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
									io_k8s_api_core_v1_Pod_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
										mandatory
											io_k8s_api_core_v1_Pod_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
												alternative
													io_k8s_api_core_v1_Pod_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
													io_k8s_api_core_v1_Pod_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
													io_k8s_api_core_v1_Pod_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
										optional
											io_k8s_api_core_v1_Pod_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_Pod_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
										mandatory
											Integer io_k8s_api_core_v1_Pod_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
									io_k8s_api_core_v1_Pod_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
											String io_k8s_api_core_v1_Pod_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
									io_k8s_api_core_v1_Pod_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
										optional
											String io_k8s_api_core_v1_Pod_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
											String io_k8s_api_core_v1_Pod_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
											io_k8s_api_core_v1_Pod_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
											String io_k8s_api_core_v1_Pod_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
							String io_k8s_api_core_v1_Pod_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
							String io_k8s_api_core_v1_Pod_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
							io_k8s_api_core_v1_Pod_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
							io_k8s_api_core_v1_Pod_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
							String io_k8s_api_core_v1_Pod_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
							Integer io_k8s_api_core_v1_Pod_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
							io_k8s_api_core_v1_Pod_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
								optional
									io_k8s_api_core_v1_Pod_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
										alternative
											io_k8s_api_core_v1_Pod_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
											io_k8s_api_core_v1_Pod_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
											io_k8s_api_core_v1_Pod_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
									String io_k8s_api_core_v1_Pod_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
									io_k8s_api_core_v1_Pod_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
										alternative
											io_k8s_api_core_v1_Pod_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_core_v1_Pod_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
									Integer io_k8s_api_core_v1_Pod_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
									io_k8s_api_core_v1_Pod_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
								mandatory
									Integer io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
									String io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
									String io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
								optional
									io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
										optional
											io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									Integer io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
									String io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
									String io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
							io_k8s_api_core_v1_Pod_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
								mandatory
									String io_k8s_api_core_v1_Pod_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
								optional
									io_k8s_api_core_v1_Pod_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
										optional
											io_k8s_api_core_v1_Pod_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
												alternative
													io_k8s_api_core_v1_Pod_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_Pod_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_Pod_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
											Integer io_k8s_api_core_v1_Pod_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
											io_k8s_api_core_v1_Pod_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
									io_k8s_api_core_v1_Pod_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
											String io_k8s_api_core_v1_Pod_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
										optional
											io_k8s_api_core_v1_Pod_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
												alternative
													io_k8s_api_core_v1_Pod_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
													io_k8s_api_core_v1_Pod_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
													io_k8s_api_core_v1_Pod_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
											io_k8s_api_core_v1_Pod_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_core_v1_Pod_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_Pod_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_Pod_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_core_v1_Pod_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
												alternative
													io_k8s_api_core_v1_Pod_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
													io_k8s_api_core_v1_Pod_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
													io_k8s_api_core_v1_Pod_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
											io_k8s_api_core_v1_Pod_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									io_k8s_api_core_v1_Pod_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
											String io_k8s_api_core_v1_Pod_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
										optional
											io_k8s_api_core_v1_Pod_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									io_k8s_api_core_v1_Pod_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
										mandatory
											io_k8s_api_core_v1_Pod_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											String io_k8s_api_core_v1_Pod_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
											io_k8s_api_core_v1_Pod_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
											String io_k8s_api_core_v1_Pod_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
											io_k8s_api_core_v1_Pod_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
												optional
													String io_k8s_api_core_v1_Pod_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											String io_k8s_api_core_v1_Pod_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
									io_k8s_api_core_v1_Pod_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
										optional
											io_k8s_api_core_v1_Pod_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
												alternative
													io_k8s_api_core_v1_Pod_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_Pod_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_Pod_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_core_v1_Pod_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
											io_k8s_api_core_v1_Pod_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
												optional
													String io_k8s_api_core_v1_Pod_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_core_v1_Pod_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
										optional
											Integer io_k8s_api_core_v1_Pod_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
											io_k8s_api_core_v1_Pod_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_volumes_configMap_items_key {doc 'key is the key to project'}
													String io_k8s_api_core_v1_Pod_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
												optional
													Integer io_k8s_api_core_v1_Pod_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
											String io_k8s_api_core_v1_Pod_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_Pod_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
									io_k8s_api_core_v1_Pod_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
										optional
											String io_k8s_api_core_v1_Pod_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
											io_k8s_api_core_v1_Pod_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
												optional
													String io_k8s_api_core_v1_Pod_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_Pod_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
											io_k8s_api_core_v1_Pod_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_Pod_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
										optional
											Integer io_k8s_api_core_v1_Pod_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
											io_k8s_api_core_v1_Pod_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
												optional
													io_k8s_api_core_v1_Pod_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
														optional
															String io_k8s_api_core_v1_Pod_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
													Integer io_k8s_api_core_v1_Pod_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_core_v1_Pod_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
														optional
															String io_k8s_api_core_v1_Pod_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
															io_k8s_api_core_v1_Pod_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																alternative
																	String io_k8s_api_core_v1_Pod_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_Pod_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_Pod_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
										optional
											String io_k8s_api_core_v1_Pod_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
											io_k8s_api_core_v1_Pod_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
												alternative
													String io_k8s_api_core_v1_Pod_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_Pod_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_Pod_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
									io_k8s_api_core_v1_Pod_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
										optional
											io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
												mandatory
													io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
														optional
															io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																	String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																optional
																	String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
															io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																	String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																optional
																	String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																	String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
															io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																optional
																	io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																optional
																	io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
															String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
															String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
															String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
												optional
													io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
														optional
															io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																optional
																	String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																optional
																	String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																	io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
															Integer io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
															io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																optional
																	String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
															Integer io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
															io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																optional
																	String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																	String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																	io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																		optional
																			io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																			io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																	String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																	io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																		alternative
																			io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																			io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																	String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																	io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																		optional
																			String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
															String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
															io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																	String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																	String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																	String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																optional
																	io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																	io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
															String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
															String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
															String io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
									io_k8s_api_core_v1_Pod_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
										optional
											io_k8s_api_core_v1_Pod_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_core_v1_Pod_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_Pod_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_Pod_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
											Integer io_k8s_api_core_v1_Pod_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
											io_k8s_api_core_v1_Pod_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_core_v1_Pod_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_Pod_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_Pod_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
										optional
											io_k8s_api_core_v1_Pod_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
												alternative
													io_k8s_api_core_v1_Pod_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_Pod_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
													io_k8s_api_core_v1_Pod_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_core_v1_Pod_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_Pod_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_core_v1_Pod_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
												optional
													String io_k8s_api_core_v1_Pod_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_core_v1_Pod_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
										optional
											io_k8s_api_core_v1_Pod_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_Pod_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_Pod_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
										optional
											io_k8s_api_core_v1_Pod_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
												alternative
													io_k8s_api_core_v1_Pod_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_Pod_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_Pod_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
											Integer io_k8s_api_core_v1_Pod_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
											io_k8s_api_core_v1_Pod_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
									io_k8s_api_core_v1_Pod_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
										optional
											String io_k8s_api_core_v1_Pod_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
											String io_k8s_api_core_v1_Pod_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
									io_k8s_api_core_v1_Pod_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
											String io_k8s_api_core_v1_Pod_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
										optional
											io_k8s_api_core_v1_Pod_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
									io_k8s_api_core_v1_Pod_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
										optional
											String io_k8s_api_core_v1_Pod_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
									io_k8s_api_core_v1_Pod_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
											Integer io_k8s_api_core_v1_Pod_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
											String io_k8s_api_core_v1_Pod_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
										optional
											io_k8s_api_core_v1_Pod_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
											io_k8s_api_core_v1_Pod_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
											io_k8s_api_core_v1_Pod_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
												alternative
													io_k8s_api_core_v1_Pod_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_Pod_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_Pod_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
											String io_k8s_api_core_v1_Pod_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
											String io_k8s_api_core_v1_Pod_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
											io_k8s_api_core_v1_Pod_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_Pod_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
											io_k8s_api_core_v1_Pod_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
												optional
													String io_k8s_api_core_v1_Pod_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_core_v1_Pod_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
											String io_k8s_api_core_v1_Pod_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
										optional
											io_k8s_api_core_v1_Pod_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
									io_k8s_api_core_v1_Pod_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
										optional
											io_k8s_api_core_v1_Pod_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
									io_k8s_api_core_v1_Pod_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
										optional
											io_k8s_api_core_v1_Pod_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_core_v1_Pod_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_Pod_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_Pod_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
									io_k8s_api_core_v1_Pod_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
										optional
											io_k8s_api_core_v1_Pod_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_core_v1_Pod_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_Pod_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_core_v1_Pod_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									io_k8s_api_core_v1_Pod_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
										optional
											Integer io_k8s_api_core_v1_Pod_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
											io_k8s_api_core_v1_Pod_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
												optional
													io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
														optional
															io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																optional
																	io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
															io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
															String io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
													io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
														optional
															io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																	String io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																optional
																	Integer io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															String io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
													io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
														optional
															io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																optional
																	io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																		mandatory
																			String io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	Integer io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																		mandatory
																			String io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
														optional
															io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																mandatory
																	String io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																	String io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																optional
																	Integer io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															String io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
													io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
														mandatory
															String io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
														optional
															String io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
															Integer io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
									io_k8s_api_core_v1_Pod_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
											String io_k8s_api_core_v1_Pod_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
										optional
											String io_k8s_api_core_v1_Pod_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
											io_k8s_api_core_v1_Pod_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
											String io_k8s_api_core_v1_Pod_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
											String io_k8s_api_core_v1_Pod_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
									io_k8s_api_core_v1_Pod_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											io_k8s_api_core_v1_Pod_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											io_k8s_api_core_v1_Pod_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
												alternative
													io_k8s_api_core_v1_Pod_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_Pod_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_Pod_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
											String io_k8s_api_core_v1_Pod_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											String io_k8s_api_core_v1_Pod_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											io_k8s_api_core_v1_Pod_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											io_k8s_api_core_v1_Pod_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
												optional
													String io_k8s_api_core_v1_Pod_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											String io_k8s_api_core_v1_Pod_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
									io_k8s_api_core_v1_Pod_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
											io_k8s_api_core_v1_Pod_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
												optional
													String io_k8s_api_core_v1_Pod_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											String io_k8s_api_core_v1_Pod_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
										optional
											io_k8s_api_core_v1_Pod_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
												alternative
													io_k8s_api_core_v1_Pod_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
													io_k8s_api_core_v1_Pod_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
													io_k8s_api_core_v1_Pod_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
											String io_k8s_api_core_v1_Pod_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
											io_k8s_api_core_v1_Pod_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_core_v1_Pod_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
											io_k8s_api_core_v1_Pod_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
												alternative
													io_k8s_api_core_v1_Pod_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
													io_k8s_api_core_v1_Pod_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
											String io_k8s_api_core_v1_Pod_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
											String io_k8s_api_core_v1_Pod_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
									io_k8s_api_core_v1_Pod_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
										optional
											Integer io_k8s_api_core_v1_Pod_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
											io_k8s_api_core_v1_Pod_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
												mandatory
													String io_k8s_api_core_v1_Pod_spec_volumes_secret_items_key {doc 'key is the key to project'}
													String io_k8s_api_core_v1_Pod_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
												optional
													Integer io_k8s_api_core_v1_Pod_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
											io_k8s_api_core_v1_Pod_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
											String io_k8s_api_core_v1_Pod_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
									io_k8s_api_core_v1_Pod_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
										optional
											io_k8s_api_core_v1_Pod_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_core_v1_Pod_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_Pod_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_Pod_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_core_v1_Pod_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_core_v1_Pod_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
												optional
													String io_k8s_api_core_v1_Pod_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											String io_k8s_api_core_v1_Pod_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
											String io_k8s_api_core_v1_Pod_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
									io_k8s_api_core_v1_Pod_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
										mandatory
											String io_k8s_api_core_v1_Pod_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
										optional
											io_k8s_api_core_v1_Pod_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_core_v1_Pod_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_Pod_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_Pod_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
											String io_k8s_api_core_v1_Pod_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
											String io_k8s_api_core_v1_Pod_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
					io_k8s_api_core_v1_Pod_status {doc 'Most recently observed status of the pod This data may not be up to date Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							io_k8s_api_core_v1_Pod_status_conditions cardinality [1..*] {doc 'Current service state of pod More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions'}
								mandatory
									io_k8s_api_core_v1_Pod_status_conditions_status {doc 'Status is the status of the condition Can be True, False, Unknown More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions'}
										alternative
											io_k8s_api_core_v1_Pod_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_core_v1_Pod_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_core_v1_Pod_status_conditions_status_True {doc 'Specific value: True'}
									String io_k8s_api_core_v1_Pod_status_conditions_type {doc 'Type is the type of the condition More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions'}
								optional
									io_k8s_api_core_v1_Pod_status_conditions_lastProbeTime {doc 'Last time we probed the condition'}
										optional
											String io_k8s_api_core_v1_Pod_status_conditions_lastProbeTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_Pod_status_conditions_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
										optional
											String io_k8s_api_core_v1_Pod_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_Pod_status_conditions_message {doc 'Human-readable message indicating details about last transition'}
									String io_k8s_api_core_v1_Pod_status_conditions_reason {doc 'Unique, one-word, CamelCase reason for the condition_s last transition'}
							io_k8s_api_core_v1_Pod_status_containerStatuses cardinality [1..*] {doc 'The list has one entry per container in the manifest More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status'}
								mandatory
									String io_k8s_api_core_v1_Pod_status_containerStatuses_image {doc 'Image is the name of container image that the container is running The container image may not match the image used in the PodSpec, as it may have been resolved by the runtime More info: https:_kubernetesio/docs/concepts/containers/images'}
									String io_k8s_api_core_v1_Pod_status_containerStatuses_imageID {doc 'ImageID is the image ID of the container_s image The image ID may not match the image ID of the image used in the PodSpec, as it may have been resolved by the runtime'}
									String io_k8s_api_core_v1_Pod_status_containerStatuses_name {doc 'Name is a DNS_LABEL representing the unique name of the container Each container in a pod must have a unique name across all container types Cannot be updated'}
									io_k8s_api_core_v1_Pod_status_containerStatuses_ready {default true, doc 'Ready specifies whether the container is currently passing its readiness check The value will change as readiness probes keep executing If no readiness probes are specified, this field defaults to true once the container is fully started (see Started field)The value is typically used to determine whether a container is ready to accept traffic'}
									Integer io_k8s_api_core_v1_Pod_status_containerStatuses_restartCount {doc 'RestartCount holds the number of times the container has been restarted Kubelet makes an effort to always increment the value, but there are cases when the state may be lost due to node restarts and then the value may be reset to 0 The value is never negative'}
								optional
									io_k8s_api_core_v1_Pod_status_containerStatuses_allocatedResources cardinality [1..*] {doc 'AllocatedResources represents the compute resources allocated for this container by the node Kubelet sets this value to ContainerResourcesRequests upon successful pod admission and after successfully admitting desired pod resize'}
										alternative
											String io_k8s_api_core_v1_Pod_status_containerStatuses_allocatedResources_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_Pod_status_containerStatuses_allocatedResources_asNumber {doc 'Sub-feature added of type Number'}
									String io_k8s_api_core_v1_Pod_status_containerStatuses_containerID {doc 'ContainerID is the ID of the container in the format _<type>:_<container_id>_ Where type is a container runtime identifier, returned from Version call of CRI API (for example containerd)'}
									io_k8s_api_core_v1_Pod_status_containerStatuses_lastState {doc 'LastTerminationState holds the last termination state of the container to help debug container crashes and restarts This field is not populated if the container is still running and RestartCount is 0'}
										optional
											io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_running {doc 'Details about a running container'}
												optional
													io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_running_startedAt {doc 'Time at which the container was last (re-)started'}
														optional
															String io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_running_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_terminated {doc 'Details about a terminated container'}
												mandatory
													Integer io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_terminated_exitCode {doc 'Exit status from the last termination of the container'}
												optional
													String io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_terminated_containerID {doc 'Container_s ID in the format _<type>:_<container_id>_'}
													io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_terminated_finishedAt {doc 'Time at which the container last terminated'}
														optional
															String io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_terminated_finishedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													String io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_terminated_message {doc 'Message regarding the last termination of the container'}
													String io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_terminated_reason {doc '(brief) reason from the last termination of the container'}
													Integer io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_terminated_signal {doc 'Signal from the last termination of the container'}
													io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_terminated_startedAt {doc 'Time at which previous execution of the container started'}
														optional
															String io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_terminated_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_waiting {doc 'Details about a waiting container'}
												optional
													String io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_waiting_message {doc 'Message regarding why the container is not yet running'}
													String io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_waiting_reason {doc '(brief) reason the container is not yet running'}
									io_k8s_api_core_v1_Pod_status_containerStatuses_resources {doc 'Resources represents the compute resource requests and limits that have been successfully enacted on the running container after it has been started or has been successfully resized'}
										optional
											io_k8s_api_core_v1_Pod_status_containerStatuses_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
												mandatory
													String io_k8s_api_core_v1_Pod_status_containerStatuses_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
											io_k8s_api_core_v1_Pod_status_containerStatuses_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_core_v1_Pod_status_containerStatuses_resources_limits_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_Pod_status_containerStatuses_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_Pod_status_containerStatuses_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_core_v1_Pod_status_containerStatuses_resources_requests_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_Pod_status_containerStatuses_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_Pod_status_containerStatuses_started {doc 'Started indicates whether the container has finished its postStart lifecycle hook and passed its startup probe Initialized as false, becomes true after startupProbe is considered successful Resets to false when the container is restarted, or if kubelet loses state temporarily In both cases, startup probes will run again Is always true when no startupProbe is defined and container is running and has passed the postStart lifecycle hook The null value must be treated the same as false'}
									io_k8s_api_core_v1_Pod_status_containerStatuses_state {doc 'State holds details about the container_s current condition'}
										optional
											io_k8s_api_core_v1_Pod_status_containerStatuses_state_running {doc 'Details about a running container'}
												optional
													io_k8s_api_core_v1_Pod_status_containerStatuses_state_running_startedAt {doc 'Time at which the container was last (re-)started'}
														optional
															String io_k8s_api_core_v1_Pod_status_containerStatuses_state_running_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_Pod_status_containerStatuses_state_terminated {doc 'Details about a terminated container'}
												mandatory
													Integer io_k8s_api_core_v1_Pod_status_containerStatuses_state_terminated_exitCode {doc 'Exit status from the last termination of the container'}
												optional
													String io_k8s_api_core_v1_Pod_status_containerStatuses_state_terminated_containerID {doc 'Container_s ID in the format _<type>:_<container_id>_'}
													io_k8s_api_core_v1_Pod_status_containerStatuses_state_terminated_finishedAt {doc 'Time at which the container last terminated'}
														optional
															String io_k8s_api_core_v1_Pod_status_containerStatuses_state_terminated_finishedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													String io_k8s_api_core_v1_Pod_status_containerStatuses_state_terminated_message {doc 'Message regarding the last termination of the container'}
													String io_k8s_api_core_v1_Pod_status_containerStatuses_state_terminated_reason {doc '(brief) reason from the last termination of the container'}
													Integer io_k8s_api_core_v1_Pod_status_containerStatuses_state_terminated_signal {doc 'Signal from the last termination of the container'}
													io_k8s_api_core_v1_Pod_status_containerStatuses_state_terminated_startedAt {doc 'Time at which previous execution of the container started'}
														optional
															String io_k8s_api_core_v1_Pod_status_containerStatuses_state_terminated_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_Pod_status_containerStatuses_state_waiting {doc 'Details about a waiting container'}
												optional
													String io_k8s_api_core_v1_Pod_status_containerStatuses_state_waiting_message {doc 'Message regarding why the container is not yet running'}
													String io_k8s_api_core_v1_Pod_status_containerStatuses_state_waiting_reason {doc '(brief) reason the container is not yet running'}
									io_k8s_api_core_v1_Pod_status_containerStatuses_volumeMounts cardinality [1..*] {doc 'Status of volume mounts'}
										mandatory
											String io_k8s_api_core_v1_Pod_status_containerStatuses_volumeMounts_mountPath {doc 'MountPath corresponds to the original VolumeMount'}
											String io_k8s_api_core_v1_Pod_status_containerStatuses_volumeMounts_name {doc 'Name corresponds to the name of the original VolumeMount'}
										optional
											io_k8s_api_core_v1_Pod_status_containerStatuses_volumeMounts_readOnly {doc 'ReadOnly corresponds to the original VolumeMount'}
											String io_k8s_api_core_v1_Pod_status_containerStatuses_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts) An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result'}
							io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses cardinality [1..*] {doc 'Status for any ephemeral containers that have run in this pod'}
								mandatory
									String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_image {doc 'Image is the name of container image that the container is running The container image may not match the image used in the PodSpec, as it may have been resolved by the runtime More info: https:_kubernetesio/docs/concepts/containers/images'}
									String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_imageID {doc 'ImageID is the image ID of the container_s image The image ID may not match the image ID of the image used in the PodSpec, as it may have been resolved by the runtime'}
									String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_name {doc 'Name is a DNS_LABEL representing the unique name of the container Each container in a pod must have a unique name across all container types Cannot be updated'}
									io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_ready {default true, doc 'Ready specifies whether the container is currently passing its readiness check The value will change as readiness probes keep executing If no readiness probes are specified, this field defaults to true once the container is fully started (see Started field)The value is typically used to determine whether a container is ready to accept traffic'}
									Integer io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_restartCount {doc 'RestartCount holds the number of times the container has been restarted Kubelet makes an effort to always increment the value, but there are cases when the state may be lost due to node restarts and then the value may be reset to 0 The value is never negative'}
								optional
									io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_allocatedResources cardinality [1..*] {doc 'AllocatedResources represents the compute resources allocated for this container by the node Kubelet sets this value to ContainerResourcesRequests upon successful pod admission and after successfully admitting desired pod resize'}
										alternative
											String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_allocatedResources_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_allocatedResources_asNumber {doc 'Sub-feature added of type Number'}
									String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_containerID {doc 'ContainerID is the ID of the container in the format _<type>:_<container_id>_ Where type is a container runtime identifier, returned from Version call of CRI API (for example containerd)'}
									io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState {doc 'LastTerminationState holds the last termination state of the container to help debug container crashes and restarts This field is not populated if the container is still running and RestartCount is 0'}
										optional
											io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_running {doc 'Details about a running container'}
												optional
													io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_running_startedAt {doc 'Time at which the container was last (re-)started'}
														optional
															String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_running_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_terminated {doc 'Details about a terminated container'}
												mandatory
													Integer io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_terminated_exitCode {doc 'Exit status from the last termination of the container'}
												optional
													String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_terminated_containerID {doc 'Container_s ID in the format _<type>:_<container_id>_'}
													io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_terminated_finishedAt {doc 'Time at which the container last terminated'}
														optional
															String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_terminated_finishedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_terminated_message {doc 'Message regarding the last termination of the container'}
													String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_terminated_reason {doc '(brief) reason from the last termination of the container'}
													Integer io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_terminated_signal {doc 'Signal from the last termination of the container'}
													io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_terminated_startedAt {doc 'Time at which previous execution of the container started'}
														optional
															String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_terminated_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_waiting {doc 'Details about a waiting container'}
												optional
													String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_waiting_message {doc 'Message regarding why the container is not yet running'}
													String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_waiting_reason {doc '(brief) reason the container is not yet running'}
									io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_resources {doc 'Resources represents the compute resource requests and limits that have been successfully enacted on the running container after it has been started or has been successfully resized'}
										optional
											io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
												mandatory
													String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
											io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_resources_limits_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_resources_requests_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_started {doc 'Started indicates whether the container has finished its postStart lifecycle hook and passed its startup probe Initialized as false, becomes true after startupProbe is considered successful Resets to false when the container is restarted, or if kubelet loses state temporarily In both cases, startup probes will run again Is always true when no startupProbe is defined and container is running and has passed the postStart lifecycle hook The null value must be treated the same as false'}
									io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state {doc 'State holds details about the container_s current condition'}
										optional
											io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_running {doc 'Details about a running container'}
												optional
													io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_running_startedAt {doc 'Time at which the container was last (re-)started'}
														optional
															String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_running_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_terminated {doc 'Details about a terminated container'}
												mandatory
													Integer io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_terminated_exitCode {doc 'Exit status from the last termination of the container'}
												optional
													String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_terminated_containerID {doc 'Container_s ID in the format _<type>:_<container_id>_'}
													io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_terminated_finishedAt {doc 'Time at which the container last terminated'}
														optional
															String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_terminated_finishedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_terminated_message {doc 'Message regarding the last termination of the container'}
													String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_terminated_reason {doc '(brief) reason from the last termination of the container'}
													Integer io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_terminated_signal {doc 'Signal from the last termination of the container'}
													io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_terminated_startedAt {doc 'Time at which previous execution of the container started'}
														optional
															String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_terminated_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_waiting {doc 'Details about a waiting container'}
												optional
													String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_waiting_message {doc 'Message regarding why the container is not yet running'}
													String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_waiting_reason {doc '(brief) reason the container is not yet running'}
									io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_volumeMounts cardinality [1..*] {doc 'Status of volume mounts'}
										mandatory
											String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_volumeMounts_mountPath {doc 'MountPath corresponds to the original VolumeMount'}
											String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_volumeMounts_name {doc 'Name corresponds to the name of the original VolumeMount'}
										optional
											io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_volumeMounts_readOnly {doc 'ReadOnly corresponds to the original VolumeMount'}
											String io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts) An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result'}
							String io_k8s_api_core_v1_Pod_status_hostIP {doc 'hostIP holds the IP address of the host to which the pod is assigned Empty if the pod has not started yet A pod can be assigned to a node that has a problem in kubelet which in turns mean that HostIP will not be updated even if there is a node is assigned to pod'}
							io_k8s_api_core_v1_Pod_status_hostIPs cardinality [1..*] {doc 'hostIPs holds the IP addresses allocated to the host If this field is specified, the first entry must match the hostIP field This list is empty if the pod has not started yet A pod can be assigned to a node that has a problem in kubelet which in turns means that HostIPs will not be updated even if there is a node is assigned to this pod'}
								optional
									String io_k8s_api_core_v1_Pod_status_hostIPs_ip {doc 'IP is the IP address assigned to the host'}
							io_k8s_api_core_v1_Pod_status_initContainerStatuses cardinality [1..*] {doc 'The list has one entry per init container in the manifest The most recent successful init container will have ready = true, the most recently started container will have startTime set More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status'}
								mandatory
									String io_k8s_api_core_v1_Pod_status_initContainerStatuses_image {doc 'Image is the name of container image that the container is running The container image may not match the image used in the PodSpec, as it may have been resolved by the runtime More info: https:_kubernetesio/docs/concepts/containers/images'}
									String io_k8s_api_core_v1_Pod_status_initContainerStatuses_imageID {doc 'ImageID is the image ID of the container_s image The image ID may not match the image ID of the image used in the PodSpec, as it may have been resolved by the runtime'}
									String io_k8s_api_core_v1_Pod_status_initContainerStatuses_name {doc 'Name is a DNS_LABEL representing the unique name of the container Each container in a pod must have a unique name across all container types Cannot be updated'}
									io_k8s_api_core_v1_Pod_status_initContainerStatuses_ready {default true, doc 'Ready specifies whether the container is currently passing its readiness check The value will change as readiness probes keep executing If no readiness probes are specified, this field defaults to true once the container is fully started (see Started field)The value is typically used to determine whether a container is ready to accept traffic'}
									Integer io_k8s_api_core_v1_Pod_status_initContainerStatuses_restartCount {doc 'RestartCount holds the number of times the container has been restarted Kubelet makes an effort to always increment the value, but there are cases when the state may be lost due to node restarts and then the value may be reset to 0 The value is never negative'}
								optional
									io_k8s_api_core_v1_Pod_status_initContainerStatuses_allocatedResources cardinality [1..*] {doc 'AllocatedResources represents the compute resources allocated for this container by the node Kubelet sets this value to ContainerResourcesRequests upon successful pod admission and after successfully admitting desired pod resize'}
										alternative
											String io_k8s_api_core_v1_Pod_status_initContainerStatuses_allocatedResources_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_Pod_status_initContainerStatuses_allocatedResources_asNumber {doc 'Sub-feature added of type Number'}
									String io_k8s_api_core_v1_Pod_status_initContainerStatuses_containerID {doc 'ContainerID is the ID of the container in the format _<type>:_<container_id>_ Where type is a container runtime identifier, returned from Version call of CRI API (for example containerd)'}
									io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState {doc 'LastTerminationState holds the last termination state of the container to help debug container crashes and restarts This field is not populated if the container is still running and RestartCount is 0'}
										optional
											io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_running {doc 'Details about a running container'}
												optional
													io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_running_startedAt {doc 'Time at which the container was last (re-)started'}
														optional
															String io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_running_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_terminated {doc 'Details about a terminated container'}
												mandatory
													Integer io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_terminated_exitCode {doc 'Exit status from the last termination of the container'}
												optional
													String io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_terminated_containerID {doc 'Container_s ID in the format _<type>:_<container_id>_'}
													io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_terminated_finishedAt {doc 'Time at which the container last terminated'}
														optional
															String io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_terminated_finishedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													String io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_terminated_message {doc 'Message regarding the last termination of the container'}
													String io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_terminated_reason {doc '(brief) reason from the last termination of the container'}
													Integer io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_terminated_signal {doc 'Signal from the last termination of the container'}
													io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_terminated_startedAt {doc 'Time at which previous execution of the container started'}
														optional
															String io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_terminated_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_waiting {doc 'Details about a waiting container'}
												optional
													String io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_waiting_message {doc 'Message regarding why the container is not yet running'}
													String io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_waiting_reason {doc '(brief) reason the container is not yet running'}
									io_k8s_api_core_v1_Pod_status_initContainerStatuses_resources {doc 'Resources represents the compute resource requests and limits that have been successfully enacted on the running container after it has been started or has been successfully resized'}
										optional
											io_k8s_api_core_v1_Pod_status_initContainerStatuses_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
												mandatory
													String io_k8s_api_core_v1_Pod_status_initContainerStatuses_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
											io_k8s_api_core_v1_Pod_status_initContainerStatuses_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_core_v1_Pod_status_initContainerStatuses_resources_limits_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_Pod_status_initContainerStatuses_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_Pod_status_initContainerStatuses_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_core_v1_Pod_status_initContainerStatuses_resources_requests_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_Pod_status_initContainerStatuses_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_Pod_status_initContainerStatuses_started {doc 'Started indicates whether the container has finished its postStart lifecycle hook and passed its startup probe Initialized as false, becomes true after startupProbe is considered successful Resets to false when the container is restarted, or if kubelet loses state temporarily In both cases, startup probes will run again Is always true when no startupProbe is defined and container is running and has passed the postStart lifecycle hook The null value must be treated the same as false'}
									io_k8s_api_core_v1_Pod_status_initContainerStatuses_state {doc 'State holds details about the container_s current condition'}
										optional
											io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_running {doc 'Details about a running container'}
												optional
													io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_running_startedAt {doc 'Time at which the container was last (re-)started'}
														optional
															String io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_running_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_terminated {doc 'Details about a terminated container'}
												mandatory
													Integer io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_terminated_exitCode {doc 'Exit status from the last termination of the container'}
												optional
													String io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_terminated_containerID {doc 'Container_s ID in the format _<type>:_<container_id>_'}
													io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_terminated_finishedAt {doc 'Time at which the container last terminated'}
														optional
															String io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_terminated_finishedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													String io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_terminated_message {doc 'Message regarding the last termination of the container'}
													String io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_terminated_reason {doc '(brief) reason from the last termination of the container'}
													Integer io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_terminated_signal {doc 'Signal from the last termination of the container'}
													io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_terminated_startedAt {doc 'Time at which previous execution of the container started'}
														optional
															String io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_terminated_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_waiting {doc 'Details about a waiting container'}
												optional
													String io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_waiting_message {doc 'Message regarding why the container is not yet running'}
													String io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_waiting_reason {doc '(brief) reason the container is not yet running'}
									io_k8s_api_core_v1_Pod_status_initContainerStatuses_volumeMounts cardinality [1..*] {doc 'Status of volume mounts'}
										mandatory
											String io_k8s_api_core_v1_Pod_status_initContainerStatuses_volumeMounts_mountPath {doc 'MountPath corresponds to the original VolumeMount'}
											String io_k8s_api_core_v1_Pod_status_initContainerStatuses_volumeMounts_name {doc 'Name corresponds to the name of the original VolumeMount'}
										optional
											io_k8s_api_core_v1_Pod_status_initContainerStatuses_volumeMounts_readOnly {doc 'ReadOnly corresponds to the original VolumeMount'}
											String io_k8s_api_core_v1_Pod_status_initContainerStatuses_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts) An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result'}
							String io_k8s_api_core_v1_Pod_status_message {doc 'A human readable message indicating details about why the pod is in this condition'}
							String io_k8s_api_core_v1_Pod_status_nominatedNodeName {doc 'nominatedNodeName is set only when this pod preempts other pods on the node, but it cannot be scheduled right away as preemption victims receive their graceful termination periods This field does not guarantee that the pod will be scheduled on this node Scheduler may decide to place the pod elsewhere if other nodes become available sooner Scheduler may also decide to give the resources on this node to a higher priority pod that is created after preemption As a result, this field may be different than PodSpecnodeName when the pod is scheduled'}
							String io_k8s_api_core_v1_Pod_status_phase {doc 'The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle The conditions array, the reason and message fields, and the individual container status arrays contain more detail about the pod_s status There are five possible phase values:Pending: The pod has been accepted by the Kubernetes system, but one or more of the container images has not been created This includes time before being scheduled as well as time spent downloading images over the network, which could take a while Running: The pod has been bound to a node, and all of the containers have been created At least one container is still running, or is in the process of starting or restarting Succeeded: All containers in the pod have terminated in success, and will not be restarted Failed: All containers in the pod have terminated, and at least one container has terminated in failure The container either exited with non-zero status or was terminated by the system Unknown: For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the podMore info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#pod-phase'}
							String io_k8s_api_core_v1_Pod_status_podIP {doc 'podIP address allocated to the pod Routable at least within the cluster Empty if not yet allocated'}
							io_k8s_api_core_v1_Pod_status_podIPs cardinality [1..*] {doc 'podIPs holds the IP addresses allocated to the pod If this field is specified, the 0th entry must match the podIP field Pods may be allocated at most 1 value for each of IPv4 and IPv6 This list is empty if no IPs have been allocated yet'}
								optional
									String io_k8s_api_core_v1_Pod_status_podIPs_ip {doc 'IP is the IP address assigned to the pod'}
							String io_k8s_api_core_v1_Pod_status_qosClass {doc 'The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-qos/#quality-of-service-classes'}
							String io_k8s_api_core_v1_Pod_status_reason {doc 'A brief CamelCase message indicating details about why the pod is in this state eg _Evicted_'}
							String io_k8s_api_core_v1_Pod_status_resize {doc 'Status of resources resize desired for pod_s containers It is empty if no resources resize is pending Any changes to container resources will automatically set this to Proposed'}
							io_k8s_api_core_v1_Pod_status_resourceClaimStatuses cardinality [1..*] {doc 'Status of resource claims'}
								mandatory
									String io_k8s_api_core_v1_Pod_status_resourceClaimStatuses_name {doc 'Name uniquely identifies this resource claim inside the pod This must match the name of an entry in podspecresourceClaims, which implies that the string must be a DNS_LABEL'}
								optional
									String io_k8s_api_core_v1_Pod_status_resourceClaimStatuses_resourceClaimName {doc 'ResourceClaimName is the name of the ResourceClaim that was generated for the Pod in the namespace of the Pod It this is unset, then generating a ResourceClaim was not necessary The podspecresourceClaims entry can be ignored in this case'}
							io_k8s_api_core_v1_Pod_status_startTime {doc 'RFC 3339 date and time at which the object was acknowledged by the Kubelet This is before the Kubelet pulled the container image(s) for the pod'}
								optional
									String io_k8s_api_core_v1_Pod_status_startTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
			io_k8s_api_core_v1_PodAffinity {doc 'Pod affinity is a group of inter pod affinity scheduling rules'}
				optional
					io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
						mandatory
							io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
								mandatory
									String io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
								optional
									io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
										optional
											io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
										mandatory
											String io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
										mandatory
											String io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
										optional
											io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
										mandatory
											String io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							Integer io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
					io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
						mandatory
							String io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
						optional
							io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
								optional
									io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
								mandatory
									String io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
								mandatory
									String io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
								optional
									io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
								mandatory
									String io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_PodAffinityTerm {doc 'Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> matches that of any node on which a pod of the set of pods is running'}
				mandatory
					String io_k8s_api_core_v1_PodAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
				optional
					io_k8s_api_core_v1_PodAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
						optional
							io_k8s_api_core_v1_PodAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_core_v1_PodAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_core_v1_PodAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_core_v1_PodAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_core_v1_PodAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_core_v1_PodAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_core_v1_PodAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_core_v1_PodAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_core_v1_PodAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PodAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_core_v1_PodAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_PodAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_core_v1_PodAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
						mandatory
							String io_k8s_api_core_v1_PodAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_PodAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
						mandatory
							String io_k8s_api_core_v1_PodAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_PodAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
						optional
							io_k8s_api_core_v1_PodAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_core_v1_PodAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_core_v1_PodAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_core_v1_PodAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_core_v1_PodAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_core_v1_PodAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_core_v1_PodAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_core_v1_PodAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_core_v1_PodAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PodAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_core_v1_PodAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_PodAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_core_v1_PodAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
						mandatory
							String io_k8s_api_core_v1_PodAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_PodAntiAffinity {doc 'Pod anti affinity is a group of inter pod anti affinity scheduling rules'}
				optional
					io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
						mandatory
							io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
								mandatory
									String io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
								optional
									io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
										optional
											io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
										mandatory
											String io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
										mandatory
											String io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
										optional
											io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
										mandatory
											String io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							Integer io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
					io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
						mandatory
							String io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
						optional
							io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
								optional
									io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
								mandatory
									String io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
								mandatory
									String io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
								optional
									io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
								mandatory
									String io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_PodCondition {doc 'PodCondition contains details for the current condition of this pod'}
				mandatory
					io_k8s_api_core_v1_PodCondition_status {doc 'Status is the status of the condition Can be True, False, Unknown More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions'}
						alternative
							io_k8s_api_core_v1_PodCondition_status_Unknown {doc 'Specific value: Unknown'}
							io_k8s_api_core_v1_PodCondition_status_False {doc 'Specific value: False'}
							io_k8s_api_core_v1_PodCondition_status_True {doc 'Specific value: True'}
					String io_k8s_api_core_v1_PodCondition_type {doc 'Type is the type of the condition More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions'}
				optional
					io_k8s_api_core_v1_PodCondition_lastProbeTime {doc 'Last time we probed the condition'}
						optional
							String io_k8s_api_core_v1_PodCondition_lastProbeTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					io_k8s_api_core_v1_PodCondition_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
						optional
							String io_k8s_api_core_v1_PodCondition_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_api_core_v1_PodCondition_message {doc 'Human-readable message indicating details about last transition'}
					String io_k8s_api_core_v1_PodCondition_reason {doc 'Unique, one-word, CamelCase reason for the condition_s last transition'}
			io_k8s_api_core_v1_PodDNSConfig {doc 'PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy'}
				optional
					io_k8s_api_core_v1_PodDNSConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
						mandatory
							String io_k8s_api_core_v1_PodDNSConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_PodDNSConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
						mandatory
							String io_k8s_api_core_v1_PodDNSConfig_options_name {doc 'Required'}
						optional
							String io_k8s_api_core_v1_PodDNSConfig_options_value
					io_k8s_api_core_v1_PodDNSConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
						mandatory
							String io_k8s_api_core_v1_PodDNSConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_PodDNSConfigOption {doc 'PodDNSConfigOption defines DNS resolver options of a pod'}
				mandatory
					String io_k8s_api_core_v1_PodDNSConfigOption_name {doc 'Required'}
				optional
					String io_k8s_api_core_v1_PodDNSConfigOption_value
			io_k8s_api_core_v1_PodIP {doc 'PodIP represents a single IP address allocated to the pod'}
				optional
					String io_k8s_api_core_v1_PodIP_ip {doc 'IP is the IP address assigned to the pod'}
			io_k8s_api_core_v1_PodList {doc 'PodList is a list of Pods'}
				mandatory
					io_k8s_api_core_v1_PodList_items cardinality [1..*] {doc 'List of pods More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd'}
						optional
							String io_k8s_api_core_v1_PodList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_core_v1_PodList_items_kind {default 'Pod', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_core_v1_PodList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_core_v1_PodList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_core_v1_PodList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_PodList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_PodList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_PodList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_PodList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_core_v1_PodList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_core_v1_PodList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_PodList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_PodList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_PodList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_core_v1_PodList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_core_v1_PodList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_core_v1_PodList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_core_v1_PodList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_PodList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_PodList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_core_v1_PodList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_core_v1_PodList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_core_v1_PodList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_core_v1_PodList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_core_v1_PodList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_core_v1_PodList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_core_v1_PodList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_core_v1_PodList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_core_v1_PodList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_core_v1_PodList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_core_v1_PodList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_core_v1_PodList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_PodList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_PodList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_core_v1_PodList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_PodList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_core_v1_PodList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_core_v1_PodList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_core_v1_PodList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_core_v1_PodList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_core_v1_PodList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_core_v1_PodList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_PodList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_core_v1_PodList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_core_v1_PodList_items_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									io_k8s_api_core_v1_PodList_items_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
										mandatory
											String io_k8s_api_core_v1_PodList_items_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
										optional
											io_k8s_api_core_v1_PodList_items_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodList_items_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodList_items_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_core_v1_PodList_items_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_core_v1_PodList_items_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_PodList_items_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_core_v1_PodList_items_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_core_v1_PodList_items_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_core_v1_PodList_items_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_core_v1_PodList_items_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodList_items_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_PodList_items_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_PodList_items_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_core_v1_PodList_items_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_PodList_items_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_core_v1_PodList_items_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_core_v1_PodList_items_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_PodList_items_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_core_v1_PodList_items_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
											io_k8s_api_core_v1_PodList_items_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_core_v1_PodList_items_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_core_v1_PodList_items_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_core_v1_PodList_items_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_PodList_items_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
												mandatory
													Integer io_k8s_api_core_v1_PodList_items_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_core_v1_PodList_items_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_core_v1_PodList_items_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_core_v1_PodList_items_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_core_v1_PodList_items_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_core_v1_PodList_items_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_core_v1_PodList_items_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_PodList_items_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_core_v1_PodList_items_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_core_v1_PodList_items_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_core_v1_PodList_items_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_core_v1_PodList_items_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_core_v1_PodList_items_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_PodList_items_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodList_items_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_PodList_items_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_PodList_items_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodList_items_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_core_v1_PodList_items_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
											io_k8s_api_core_v1_PodList_items_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_PodList_items_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_core_v1_PodList_items_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_core_v1_PodList_items_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_core_v1_PodList_items_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_core_v1_PodList_items_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_core_v1_PodList_items_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_core_v1_PodList_items_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_core_v1_PodList_items_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_core_v1_PodList_items_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_core_v1_PodList_items_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_core_v1_PodList_items_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_core_v1_PodList_items_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_core_v1_PodList_items_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_core_v1_PodList_items_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_core_v1_PodList_items_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
								optional
									Integer io_k8s_api_core_v1_PodList_items_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
									io_k8s_api_core_v1_PodList_items_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
										optional
											io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																optional
																	io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
													io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																optional
																	io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
													io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																optional
																	io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																optional
																	io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
													io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																optional
																	io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																optional
																	io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodList_items_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
									io_k8s_api_core_v1_PodList_items_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
										optional
											io_k8s_api_core_v1_PodList_items_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodList_items_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_dnsConfig_options_name {doc 'Required'}
												optional
													String io_k8s_api_core_v1_PodList_items_spec_dnsConfig_options_value
											io_k8s_api_core_v1_PodList_items_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodList_items_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
										alternative
											io_k8s_api_core_v1_PodList_items_spec_dnsPolicy_None {doc 'Specific value: None'}
											io_k8s_api_core_v1_PodList_items_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
											io_k8s_api_core_v1_PodList_items_spec_dnsPolicy_Default {doc 'Specific value: Default'}
											io_k8s_api_core_v1_PodList_items_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
									io_k8s_api_core_v1_PodList_items_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
									io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
										mandatory
											String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
										optional
											io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
											io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
												mandatory
													Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
											io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
											String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
									io_k8s_api_core_v1_PodList_items_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
										mandatory
											String io_k8s_api_core_v1_PodList_items_spec_hostAliases_ip {doc 'IP address of the host file entry'}
										optional
											io_k8s_api_core_v1_PodList_items_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodList_items_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
									io_k8s_api_core_v1_PodList_items_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
									io_k8s_api_core_v1_PodList_items_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
									io_k8s_api_core_v1_PodList_items_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
									String io_k8s_api_core_v1_PodList_items_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
									io_k8s_api_core_v1_PodList_items_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
										optional
											String io_k8s_api_core_v1_PodList_items_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_core_v1_PodList_items_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
										mandatory
											String io_k8s_api_core_v1_PodList_items_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
										optional
											io_k8s_api_core_v1_PodList_items_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodList_items_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodList_items_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_core_v1_PodList_items_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_PodList_items_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_core_v1_PodList_items_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_core_v1_PodList_items_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_core_v1_PodList_items_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_core_v1_PodList_items_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_PodList_items_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_PodList_items_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_core_v1_PodList_items_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_PodList_items_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_core_v1_PodList_items_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_PodList_items_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_core_v1_PodList_items_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
											io_k8s_api_core_v1_PodList_items_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_core_v1_PodList_items_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_PodList_items_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
												mandatory
													Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_core_v1_PodList_items_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_core_v1_PodList_items_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_core_v1_PodList_items_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_core_v1_PodList_items_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_PodList_items_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_core_v1_PodList_items_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_core_v1_PodList_items_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_core_v1_PodList_items_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_core_v1_PodList_items_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_core_v1_PodList_items_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
											io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_PodList_items_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_core_v1_PodList_items_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_core_v1_PodList_items_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_core_v1_PodList_items_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_core_v1_PodList_items_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_core_v1_PodList_items_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_core_v1_PodList_items_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_core_v1_PodList_items_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_core_v1_PodList_items_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_core_v1_PodList_items_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_core_v1_PodList_items_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_core_v1_PodList_items_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_core_v1_PodList_items_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_core_v1_PodList_items_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_core_v1_PodList_items_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
									String io_k8s_api_core_v1_PodList_items_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
									io_k8s_api_core_v1_PodList_items_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
										mandatory
											String io_k8s_api_core_v1_PodList_items_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodList_items_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
										mandatory
											io_k8s_api_core_v1_PodList_items_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
												alternative
													io_k8s_api_core_v1_PodList_items_spec_os_name_windows {doc 'Specific value: windows'}
													io_k8s_api_core_v1_PodList_items_spec_os_name_linux {doc 'Specific value: linux'}
									io_k8s_api_core_v1_PodList_items_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
										alternative
											String io_k8s_api_core_v1_PodList_items_spec_overhead_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_PodList_items_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_PodList_items_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
										alternative
											io_k8s_api_core_v1_PodList_items_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
											io_k8s_api_core_v1_PodList_items_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
									Integer io_k8s_api_core_v1_PodList_items_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
									String io_k8s_api_core_v1_PodList_items_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
									io_k8s_api_core_v1_PodList_items_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
										mandatory
											String io_k8s_api_core_v1_PodList_items_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
									io_k8s_api_core_v1_PodList_items_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
										mandatory
											String io_k8s_api_core_v1_PodList_items_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
										optional
											io_k8s_api_core_v1_PodList_items_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodList_items_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_PodList_items_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
										alternative
											io_k8s_api_core_v1_PodList_items_spec_restartPolicy_Never {doc 'Specific value: Never'}
											io_k8s_api_core_v1_PodList_items_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
											io_k8s_api_core_v1_PodList_items_spec_restartPolicy_Always {doc 'Specific value: Always'}
									String io_k8s_api_core_v1_PodList_items_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
									String io_k8s_api_core_v1_PodList_items_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
									io_k8s_api_core_v1_PodList_items_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
										mandatory
											String io_k8s_api_core_v1_PodList_items_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
									io_k8s_api_core_v1_PodList_items_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
										optional
											io_k8s_api_core_v1_PodList_items_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_core_v1_PodList_items_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_core_v1_PodList_items_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_core_v1_PodList_items_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_PodList_items_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_PodList_items_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_core_v1_PodList_items_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
												alternative
													io_k8s_api_core_v1_PodList_items_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
													io_k8s_api_core_v1_PodList_items_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_core_v1_PodList_items_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_PodList_items_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_core_v1_PodList_items_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_core_v1_PodList_items_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_PodList_items_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_core_v1_PodList_items_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												optional
													String io_k8s_api_core_v1_PodList_items_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
													String io_k8s_api_core_v1_PodList_items_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
													String io_k8s_api_core_v1_PodList_items_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
													String io_k8s_api_core_v1_PodList_items_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
											io_k8s_api_core_v1_PodList_items_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_core_v1_PodList_items_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_core_v1_PodList_items_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_core_v1_PodList_items_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_PodList_items_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_PodList_items_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
											io_k8s_api_core_v1_PodList_items_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
													String io_k8s_api_core_v1_PodList_items_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
											io_k8s_api_core_v1_PodList_items_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
												optional
													String io_k8s_api_core_v1_PodList_items_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
													String io_k8s_api_core_v1_PodList_items_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
													io_k8s_api_core_v1_PodList_items_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
													String io_k8s_api_core_v1_PodList_items_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
									String io_k8s_api_core_v1_PodList_items_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
									String io_k8s_api_core_v1_PodList_items_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
									io_k8s_api_core_v1_PodList_items_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
									io_k8s_api_core_v1_PodList_items_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
									String io_k8s_api_core_v1_PodList_items_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
									Integer io_k8s_api_core_v1_PodList_items_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
									io_k8s_api_core_v1_PodList_items_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
										optional
											io_k8s_api_core_v1_PodList_items_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
												alternative
													io_k8s_api_core_v1_PodList_items_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
													io_k8s_api_core_v1_PodList_items_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
													io_k8s_api_core_v1_PodList_items_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
											String io_k8s_api_core_v1_PodList_items_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
											io_k8s_api_core_v1_PodList_items_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
												alternative
													io_k8s_api_core_v1_PodList_items_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_core_v1_PodList_items_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
											Integer io_k8s_api_core_v1_PodList_items_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
											io_k8s_api_core_v1_PodList_items_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
										mandatory
											Integer io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
											String io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
											String io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
										optional
											io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
											String io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
											String io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
									io_k8s_api_core_v1_PodList_items_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
										mandatory
											String io_k8s_api_core_v1_PodList_items_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
										optional
											io_k8s_api_core_v1_PodList_items_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_core_v1_PodList_items_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
												mandatory
													io_k8s_api_core_v1_PodList_items_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													String io_k8s_api_core_v1_PodList_items_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
												optional
													Integer io_k8s_api_core_v1_PodList_items_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_volumes_configMap_items_key {doc 'key is the key to project'}
															String io_k8s_api_core_v1_PodList_items_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
														optional
															Integer io_k8s_api_core_v1_PodList_items_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
												optional
													String io_k8s_api_core_v1_PodList_items_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
												optional
													Integer io_k8s_api_core_v1_PodList_items_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															Integer io_k8s_api_core_v1_PodList_items_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_core_v1_PodList_items_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodList_items_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
												optional
													String io_k8s_api_core_v1_PodList_items_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
														alternative
															String io_k8s_api_core_v1_PodList_items_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodList_items_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
											io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
														mandatory
															io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																optional
																	io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																		optional
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																	io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																		optional
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																	io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																		optional
																			io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				alternative
																					String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				alternative
																					String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																		optional
																			io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																	String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																	String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																	String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																optional
																	io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																		optional
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																		optional
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																	Integer io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																	io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																		optional
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																	io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																	Integer io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																	io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																		optional
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																			io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																				optional
																					io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																					io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																			io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																				alternative
																					io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																					io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																			io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																				optional
																					String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																	String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																	String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																	io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																		optional
																			io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																			io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																	String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																	String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																	String io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_core_v1_PodList_items_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_core_v1_PodList_items_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
												optional
													String io_k8s_api_core_v1_PodList_items_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
												optional
													String io_k8s_api_core_v1_PodList_items_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
													Integer io_k8s_api_core_v1_PodList_items_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
												optional
													Integer io_k8s_api_core_v1_PodList_items_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
														optional
															io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																optional
																	io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																		optional
																			io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																	io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																	String io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																optional
																	io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	String io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																optional
																	io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																		optional
																			io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																				mandatory
																					String io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			Integer io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																				mandatory
																					String io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																optional
																	io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																			String io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	String io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																mandatory
																	String io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																optional
																	String io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																	Integer io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
												optional
													String io_k8s_api_core_v1_PodList_items_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
												optional
													Integer io_k8s_api_core_v1_PodList_items_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_spec_volumes_secret_items_key {doc 'key is the key to project'}
															String io_k8s_api_core_v1_PodList_items_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
														optional
															Integer io_k8s_api_core_v1_PodList_items_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_core_v1_PodList_items_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
														optional
															String io_k8s_api_core_v1_PodList_items_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
											io_k8s_api_core_v1_PodList_items_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
												optional
													io_k8s_api_core_v1_PodList_items_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_core_v1_PodList_items_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodList_items_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
													String io_k8s_api_core_v1_PodList_items_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
							io_k8s_api_core_v1_PodList_items_status {doc 'Most recently observed status of the pod This data may not be up to date Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								optional
									io_k8s_api_core_v1_PodList_items_status_conditions cardinality [1..*] {doc 'Current service state of pod More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions'}
										mandatory
											io_k8s_api_core_v1_PodList_items_status_conditions_status {doc 'Status is the status of the condition Can be True, False, Unknown More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions'}
												alternative
													io_k8s_api_core_v1_PodList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_api_core_v1_PodList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_api_core_v1_PodList_items_status_conditions_status_True {doc 'Specific value: True'}
											String io_k8s_api_core_v1_PodList_items_status_conditions_type {doc 'Type is the type of the condition More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions'}
										optional
											io_k8s_api_core_v1_PodList_items_status_conditions_lastProbeTime {doc 'Last time we probed the condition'}
												optional
													String io_k8s_api_core_v1_PodList_items_status_conditions_lastProbeTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_PodList_items_status_conditions_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
												optional
													String io_k8s_api_core_v1_PodList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_core_v1_PodList_items_status_conditions_message {doc 'Human-readable message indicating details about last transition'}
											String io_k8s_api_core_v1_PodList_items_status_conditions_reason {doc 'Unique, one-word, CamelCase reason for the condition_s last transition'}
									io_k8s_api_core_v1_PodList_items_status_containerStatuses cardinality [1..*] {doc 'The list has one entry per container in the manifest More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status'}
										mandatory
											String io_k8s_api_core_v1_PodList_items_status_containerStatuses_image {doc 'Image is the name of container image that the container is running The container image may not match the image used in the PodSpec, as it may have been resolved by the runtime More info: https:_kubernetesio/docs/concepts/containers/images'}
											String io_k8s_api_core_v1_PodList_items_status_containerStatuses_imageID {doc 'ImageID is the image ID of the container_s image The image ID may not match the image ID of the image used in the PodSpec, as it may have been resolved by the runtime'}
											String io_k8s_api_core_v1_PodList_items_status_containerStatuses_name {doc 'Name is a DNS_LABEL representing the unique name of the container Each container in a pod must have a unique name across all container types Cannot be updated'}
											io_k8s_api_core_v1_PodList_items_status_containerStatuses_ready {default true, doc 'Ready specifies whether the container is currently passing its readiness check The value will change as readiness probes keep executing If no readiness probes are specified, this field defaults to true once the container is fully started (see Started field)The value is typically used to determine whether a container is ready to accept traffic'}
											Integer io_k8s_api_core_v1_PodList_items_status_containerStatuses_restartCount {doc 'RestartCount holds the number of times the container has been restarted Kubelet makes an effort to always increment the value, but there are cases when the state may be lost due to node restarts and then the value may be reset to 0 The value is never negative'}
										optional
											io_k8s_api_core_v1_PodList_items_status_containerStatuses_allocatedResources cardinality [1..*] {doc 'AllocatedResources represents the compute resources allocated for this container by the node Kubelet sets this value to ContainerResourcesRequests upon successful pod admission and after successfully admitting desired pod resize'}
												alternative
													String io_k8s_api_core_v1_PodList_items_status_containerStatuses_allocatedResources_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodList_items_status_containerStatuses_allocatedResources_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_core_v1_PodList_items_status_containerStatuses_containerID {doc 'ContainerID is the ID of the container in the format _<type>:_<container_id>_ Where type is a container runtime identifier, returned from Version call of CRI API (for example containerd)'}
											io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState {doc 'LastTerminationState holds the last termination state of the container to help debug container crashes and restarts This field is not populated if the container is still running and RestartCount is 0'}
												optional
													io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_running {doc 'Details about a running container'}
														optional
															io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_running_startedAt {doc 'Time at which the container was last (re-)started'}
																optional
																	String io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_running_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_terminated {doc 'Details about a terminated container'}
														mandatory
															Integer io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_terminated_exitCode {doc 'Exit status from the last termination of the container'}
														optional
															String io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_terminated_containerID {doc 'Container_s ID in the format _<type>:_<container_id>_'}
															io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_terminated_finishedAt {doc 'Time at which the container last terminated'}
																optional
																	String io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_terminated_finishedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															String io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_terminated_message {doc 'Message regarding the last termination of the container'}
															String io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_terminated_reason {doc '(brief) reason from the last termination of the container'}
															Integer io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_terminated_signal {doc 'Signal from the last termination of the container'}
															io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_terminated_startedAt {doc 'Time at which previous execution of the container started'}
																optional
																	String io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_terminated_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_waiting {doc 'Details about a waiting container'}
														optional
															String io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_waiting_message {doc 'Message regarding why the container is not yet running'}
															String io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_waiting_reason {doc '(brief) reason the container is not yet running'}
											io_k8s_api_core_v1_PodList_items_status_containerStatuses_resources {doc 'Resources represents the compute resource requests and limits that have been successfully enacted on the running container after it has been started or has been successfully resized'}
												optional
													io_k8s_api_core_v1_PodList_items_status_containerStatuses_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_status_containerStatuses_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_core_v1_PodList_items_status_containerStatuses_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_PodList_items_status_containerStatuses_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodList_items_status_containerStatuses_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_PodList_items_status_containerStatuses_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_PodList_items_status_containerStatuses_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodList_items_status_containerStatuses_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_PodList_items_status_containerStatuses_started {doc 'Started indicates whether the container has finished its postStart lifecycle hook and passed its startup probe Initialized as false, becomes true after startupProbe is considered successful Resets to false when the container is restarted, or if kubelet loses state temporarily In both cases, startup probes will run again Is always true when no startupProbe is defined and container is running and has passed the postStart lifecycle hook The null value must be treated the same as false'}
											io_k8s_api_core_v1_PodList_items_status_containerStatuses_state {doc 'State holds details about the container_s current condition'}
												optional
													io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_running {doc 'Details about a running container'}
														optional
															io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_running_startedAt {doc 'Time at which the container was last (re-)started'}
																optional
																	String io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_running_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_terminated {doc 'Details about a terminated container'}
														mandatory
															Integer io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_terminated_exitCode {doc 'Exit status from the last termination of the container'}
														optional
															String io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_terminated_containerID {doc 'Container_s ID in the format _<type>:_<container_id>_'}
															io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_terminated_finishedAt {doc 'Time at which the container last terminated'}
																optional
																	String io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_terminated_finishedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															String io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_terminated_message {doc 'Message regarding the last termination of the container'}
															String io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_terminated_reason {doc '(brief) reason from the last termination of the container'}
															Integer io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_terminated_signal {doc 'Signal from the last termination of the container'}
															io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_terminated_startedAt {doc 'Time at which previous execution of the container started'}
																optional
																	String io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_terminated_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_waiting {doc 'Details about a waiting container'}
														optional
															String io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_waiting_message {doc 'Message regarding why the container is not yet running'}
															String io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_waiting_reason {doc '(brief) reason the container is not yet running'}
											io_k8s_api_core_v1_PodList_items_status_containerStatuses_volumeMounts cardinality [1..*] {doc 'Status of volume mounts'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_status_containerStatuses_volumeMounts_mountPath {doc 'MountPath corresponds to the original VolumeMount'}
													String io_k8s_api_core_v1_PodList_items_status_containerStatuses_volumeMounts_name {doc 'Name corresponds to the name of the original VolumeMount'}
												optional
													io_k8s_api_core_v1_PodList_items_status_containerStatuses_volumeMounts_readOnly {doc 'ReadOnly corresponds to the original VolumeMount'}
													String io_k8s_api_core_v1_PodList_items_status_containerStatuses_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts) An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result'}
									io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses cardinality [1..*] {doc 'Status for any ephemeral containers that have run in this pod'}
										mandatory
											String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_image {doc 'Image is the name of container image that the container is running The container image may not match the image used in the PodSpec, as it may have been resolved by the runtime More info: https:_kubernetesio/docs/concepts/containers/images'}
											String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_imageID {doc 'ImageID is the image ID of the container_s image The image ID may not match the image ID of the image used in the PodSpec, as it may have been resolved by the runtime'}
											String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_name {doc 'Name is a DNS_LABEL representing the unique name of the container Each container in a pod must have a unique name across all container types Cannot be updated'}
											io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_ready {default true, doc 'Ready specifies whether the container is currently passing its readiness check The value will change as readiness probes keep executing If no readiness probes are specified, this field defaults to true once the container is fully started (see Started field)The value is typically used to determine whether a container is ready to accept traffic'}
											Integer io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_restartCount {doc 'RestartCount holds the number of times the container has been restarted Kubelet makes an effort to always increment the value, but there are cases when the state may be lost due to node restarts and then the value may be reset to 0 The value is never negative'}
										optional
											io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_allocatedResources cardinality [1..*] {doc 'AllocatedResources represents the compute resources allocated for this container by the node Kubelet sets this value to ContainerResourcesRequests upon successful pod admission and after successfully admitting desired pod resize'}
												alternative
													String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_allocatedResources_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_allocatedResources_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_containerID {doc 'ContainerID is the ID of the container in the format _<type>:_<container_id>_ Where type is a container runtime identifier, returned from Version call of CRI API (for example containerd)'}
											io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState {doc 'LastTerminationState holds the last termination state of the container to help debug container crashes and restarts This field is not populated if the container is still running and RestartCount is 0'}
												optional
													io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_running {doc 'Details about a running container'}
														optional
															io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_running_startedAt {doc 'Time at which the container was last (re-)started'}
																optional
																	String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_running_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_terminated {doc 'Details about a terminated container'}
														mandatory
															Integer io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_terminated_exitCode {doc 'Exit status from the last termination of the container'}
														optional
															String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_terminated_containerID {doc 'Container_s ID in the format _<type>:_<container_id>_'}
															io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_terminated_finishedAt {doc 'Time at which the container last terminated'}
																optional
																	String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_terminated_finishedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_terminated_message {doc 'Message regarding the last termination of the container'}
															String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_terminated_reason {doc '(brief) reason from the last termination of the container'}
															Integer io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_terminated_signal {doc 'Signal from the last termination of the container'}
															io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_terminated_startedAt {doc 'Time at which previous execution of the container started'}
																optional
																	String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_terminated_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_waiting {doc 'Details about a waiting container'}
														optional
															String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_waiting_message {doc 'Message regarding why the container is not yet running'}
															String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_waiting_reason {doc '(brief) reason the container is not yet running'}
											io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_resources {doc 'Resources represents the compute resource requests and limits that have been successfully enacted on the running container after it has been started or has been successfully resized'}
												optional
													io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_started {doc 'Started indicates whether the container has finished its postStart lifecycle hook and passed its startup probe Initialized as false, becomes true after startupProbe is considered successful Resets to false when the container is restarted, or if kubelet loses state temporarily In both cases, startup probes will run again Is always true when no startupProbe is defined and container is running and has passed the postStart lifecycle hook The null value must be treated the same as false'}
											io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state {doc 'State holds details about the container_s current condition'}
												optional
													io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_running {doc 'Details about a running container'}
														optional
															io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_running_startedAt {doc 'Time at which the container was last (re-)started'}
																optional
																	String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_running_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_terminated {doc 'Details about a terminated container'}
														mandatory
															Integer io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_terminated_exitCode {doc 'Exit status from the last termination of the container'}
														optional
															String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_terminated_containerID {doc 'Container_s ID in the format _<type>:_<container_id>_'}
															io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_terminated_finishedAt {doc 'Time at which the container last terminated'}
																optional
																	String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_terminated_finishedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_terminated_message {doc 'Message regarding the last termination of the container'}
															String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_terminated_reason {doc '(brief) reason from the last termination of the container'}
															Integer io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_terminated_signal {doc 'Signal from the last termination of the container'}
															io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_terminated_startedAt {doc 'Time at which previous execution of the container started'}
																optional
																	String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_terminated_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_waiting {doc 'Details about a waiting container'}
														optional
															String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_waiting_message {doc 'Message regarding why the container is not yet running'}
															String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_waiting_reason {doc '(brief) reason the container is not yet running'}
											io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_volumeMounts cardinality [1..*] {doc 'Status of volume mounts'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_volumeMounts_mountPath {doc 'MountPath corresponds to the original VolumeMount'}
													String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_volumeMounts_name {doc 'Name corresponds to the name of the original VolumeMount'}
												optional
													io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_volumeMounts_readOnly {doc 'ReadOnly corresponds to the original VolumeMount'}
													String io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts) An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result'}
									String io_k8s_api_core_v1_PodList_items_status_hostIP {doc 'hostIP holds the IP address of the host to which the pod is assigned Empty if the pod has not started yet A pod can be assigned to a node that has a problem in kubelet which in turns mean that HostIP will not be updated even if there is a node is assigned to pod'}
									io_k8s_api_core_v1_PodList_items_status_hostIPs cardinality [1..*] {doc 'hostIPs holds the IP addresses allocated to the host If this field is specified, the first entry must match the hostIP field This list is empty if the pod has not started yet A pod can be assigned to a node that has a problem in kubelet which in turns means that HostIPs will not be updated even if there is a node is assigned to this pod'}
										optional
											String io_k8s_api_core_v1_PodList_items_status_hostIPs_ip {doc 'IP is the IP address assigned to the host'}
									io_k8s_api_core_v1_PodList_items_status_initContainerStatuses cardinality [1..*] {doc 'The list has one entry per init container in the manifest The most recent successful init container will have ready = true, the most recently started container will have startTime set More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status'}
										mandatory
											String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_image {doc 'Image is the name of container image that the container is running The container image may not match the image used in the PodSpec, as it may have been resolved by the runtime More info: https:_kubernetesio/docs/concepts/containers/images'}
											String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_imageID {doc 'ImageID is the image ID of the container_s image The image ID may not match the image ID of the image used in the PodSpec, as it may have been resolved by the runtime'}
											String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_name {doc 'Name is a DNS_LABEL representing the unique name of the container Each container in a pod must have a unique name across all container types Cannot be updated'}
											io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_ready {default true, doc 'Ready specifies whether the container is currently passing its readiness check The value will change as readiness probes keep executing If no readiness probes are specified, this field defaults to true once the container is fully started (see Started field)The value is typically used to determine whether a container is ready to accept traffic'}
											Integer io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_restartCount {doc 'RestartCount holds the number of times the container has been restarted Kubelet makes an effort to always increment the value, but there are cases when the state may be lost due to node restarts and then the value may be reset to 0 The value is never negative'}
										optional
											io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_allocatedResources cardinality [1..*] {doc 'AllocatedResources represents the compute resources allocated for this container by the node Kubelet sets this value to ContainerResourcesRequests upon successful pod admission and after successfully admitting desired pod resize'}
												alternative
													String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_allocatedResources_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_allocatedResources_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_containerID {doc 'ContainerID is the ID of the container in the format _<type>:_<container_id>_ Where type is a container runtime identifier, returned from Version call of CRI API (for example containerd)'}
											io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState {doc 'LastTerminationState holds the last termination state of the container to help debug container crashes and restarts This field is not populated if the container is still running and RestartCount is 0'}
												optional
													io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_running {doc 'Details about a running container'}
														optional
															io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_running_startedAt {doc 'Time at which the container was last (re-)started'}
																optional
																	String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_running_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_terminated {doc 'Details about a terminated container'}
														mandatory
															Integer io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_terminated_exitCode {doc 'Exit status from the last termination of the container'}
														optional
															String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_terminated_containerID {doc 'Container_s ID in the format _<type>:_<container_id>_'}
															io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_terminated_finishedAt {doc 'Time at which the container last terminated'}
																optional
																	String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_terminated_finishedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_terminated_message {doc 'Message regarding the last termination of the container'}
															String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_terminated_reason {doc '(brief) reason from the last termination of the container'}
															Integer io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_terminated_signal {doc 'Signal from the last termination of the container'}
															io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_terminated_startedAt {doc 'Time at which previous execution of the container started'}
																optional
																	String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_terminated_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_waiting {doc 'Details about a waiting container'}
														optional
															String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_waiting_message {doc 'Message regarding why the container is not yet running'}
															String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_waiting_reason {doc '(brief) reason the container is not yet running'}
											io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_resources {doc 'Resources represents the compute resource requests and limits that have been successfully enacted on the running container after it has been started or has been successfully resized'}
												optional
													io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_started {doc 'Started indicates whether the container has finished its postStart lifecycle hook and passed its startup probe Initialized as false, becomes true after startupProbe is considered successful Resets to false when the container is restarted, or if kubelet loses state temporarily In both cases, startup probes will run again Is always true when no startupProbe is defined and container is running and has passed the postStart lifecycle hook The null value must be treated the same as false'}
											io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state {doc 'State holds details about the container_s current condition'}
												optional
													io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_running {doc 'Details about a running container'}
														optional
															io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_running_startedAt {doc 'Time at which the container was last (re-)started'}
																optional
																	String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_running_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_terminated {doc 'Details about a terminated container'}
														mandatory
															Integer io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_terminated_exitCode {doc 'Exit status from the last termination of the container'}
														optional
															String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_terminated_containerID {doc 'Container_s ID in the format _<type>:_<container_id>_'}
															io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_terminated_finishedAt {doc 'Time at which the container last terminated'}
																optional
																	String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_terminated_finishedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_terminated_message {doc 'Message regarding the last termination of the container'}
															String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_terminated_reason {doc '(brief) reason from the last termination of the container'}
															Integer io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_terminated_signal {doc 'Signal from the last termination of the container'}
															io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_terminated_startedAt {doc 'Time at which previous execution of the container started'}
																optional
																	String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_terminated_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_waiting {doc 'Details about a waiting container'}
														optional
															String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_waiting_message {doc 'Message regarding why the container is not yet running'}
															String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_waiting_reason {doc '(brief) reason the container is not yet running'}
											io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_volumeMounts cardinality [1..*] {doc 'Status of volume mounts'}
												mandatory
													String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_volumeMounts_mountPath {doc 'MountPath corresponds to the original VolumeMount'}
													String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_volumeMounts_name {doc 'Name corresponds to the name of the original VolumeMount'}
												optional
													io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_volumeMounts_readOnly {doc 'ReadOnly corresponds to the original VolumeMount'}
													String io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts) An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result'}
									String io_k8s_api_core_v1_PodList_items_status_message {doc 'A human readable message indicating details about why the pod is in this condition'}
									String io_k8s_api_core_v1_PodList_items_status_nominatedNodeName {doc 'nominatedNodeName is set only when this pod preempts other pods on the node, but it cannot be scheduled right away as preemption victims receive their graceful termination periods This field does not guarantee that the pod will be scheduled on this node Scheduler may decide to place the pod elsewhere if other nodes become available sooner Scheduler may also decide to give the resources on this node to a higher priority pod that is created after preemption As a result, this field may be different than PodSpecnodeName when the pod is scheduled'}
									String io_k8s_api_core_v1_PodList_items_status_phase {doc 'The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle The conditions array, the reason and message fields, and the individual container status arrays contain more detail about the pod_s status There are five possible phase values:Pending: The pod has been accepted by the Kubernetes system, but one or more of the container images has not been created This includes time before being scheduled as well as time spent downloading images over the network, which could take a while Running: The pod has been bound to a node, and all of the containers have been created At least one container is still running, or is in the process of starting or restarting Succeeded: All containers in the pod have terminated in success, and will not be restarted Failed: All containers in the pod have terminated, and at least one container has terminated in failure The container either exited with non-zero status or was terminated by the system Unknown: For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the podMore info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#pod-phase'}
									String io_k8s_api_core_v1_PodList_items_status_podIP {doc 'podIP address allocated to the pod Routable at least within the cluster Empty if not yet allocated'}
									io_k8s_api_core_v1_PodList_items_status_podIPs cardinality [1..*] {doc 'podIPs holds the IP addresses allocated to the pod If this field is specified, the 0th entry must match the podIP field Pods may be allocated at most 1 value for each of IPv4 and IPv6 This list is empty if no IPs have been allocated yet'}
										optional
											String io_k8s_api_core_v1_PodList_items_status_podIPs_ip {doc 'IP is the IP address assigned to the pod'}
									String io_k8s_api_core_v1_PodList_items_status_qosClass {doc 'The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-qos/#quality-of-service-classes'}
									String io_k8s_api_core_v1_PodList_items_status_reason {doc 'A brief CamelCase message indicating details about why the pod is in this state eg _Evicted_'}
									String io_k8s_api_core_v1_PodList_items_status_resize {doc 'Status of resources resize desired for pod_s containers It is empty if no resources resize is pending Any changes to container resources will automatically set this to Proposed'}
									io_k8s_api_core_v1_PodList_items_status_resourceClaimStatuses cardinality [1..*] {doc 'Status of resource claims'}
										mandatory
											String io_k8s_api_core_v1_PodList_items_status_resourceClaimStatuses_name {doc 'Name uniquely identifies this resource claim inside the pod This must match the name of an entry in podspecresourceClaims, which implies that the string must be a DNS_LABEL'}
										optional
											String io_k8s_api_core_v1_PodList_items_status_resourceClaimStatuses_resourceClaimName {doc 'ResourceClaimName is the name of the ResourceClaim that was generated for the Pod in the namespace of the Pod It this is unset, then generating a ResourceClaim was not necessary The podspecresourceClaims entry can be ignored in this case'}
									io_k8s_api_core_v1_PodList_items_status_startTime {doc 'RFC 3339 date and time at which the object was acknowledged by the Kubelet This is before the Kubelet pulled the container image(s) for the pod'}
										optional
											String io_k8s_api_core_v1_PodList_items_status_startTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
				optional
					String io_k8s_api_core_v1_PodList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_PodList_kind {default 'PodList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_PodList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_core_v1_PodList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_core_v1_PodList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_core_v1_PodList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_PodList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_core_v1_PodOS {doc 'PodOS defines the OS parameters of a pod'}
				mandatory
					io_k8s_api_core_v1_PodOS_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
						alternative
							io_k8s_api_core_v1_PodOS_name_windows {doc 'Specific value: windows'}
							io_k8s_api_core_v1_PodOS_name_linux {doc 'Specific value: linux'}
			io_k8s_api_core_v1_PodReadinessGate {doc 'PodReadinessGate contains the reference to a pod condition'}
				mandatory
					String io_k8s_api_core_v1_PodReadinessGate_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
			io_k8s_api_core_v1_PodResourceClaim {doc 'PodResourceClaim references exactly one ResourceClaim through a ClaimSource It adds a name to it that uniquely identifies the ResourceClaim inside the Pod Containers that need access to the ResourceClaim reference it with this name'}
				mandatory
					String io_k8s_api_core_v1_PodResourceClaim_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
				optional
					io_k8s_api_core_v1_PodResourceClaim_source {doc 'Source describes where to find the ResourceClaim'}
						optional
							io_k8s_api_core_v1_PodResourceClaim_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
								mandatory
									String io_k8s_api_core_v1_PodResourceClaim_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							io_k8s_api_core_v1_PodResourceClaim_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
								mandatory
									String io_k8s_api_core_v1_PodResourceClaim_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
			io_k8s_api_core_v1_PodResourceClaimStatus {doc 'PodResourceClaimStatus is stored in the PodStatus for each PodResourceClaim which references a ResourceClaimTemplate It stores the generated name for the corresponding ResourceClaim'}
				mandatory
					String io_k8s_api_core_v1_PodResourceClaimStatus_name {doc 'Name uniquely identifies this resource claim inside the pod This must match the name of an entry in podspecresourceClaims, which implies that the string must be a DNS_LABEL'}
				optional
					String io_k8s_api_core_v1_PodResourceClaimStatus_resourceClaimName {doc 'ResourceClaimName is the name of the ResourceClaim that was generated for the Pod in the namespace of the Pod It this is unset, then generating a ResourceClaim was not necessary The podspecresourceClaims entry can be ignored in this case'}
			io_k8s_api_core_v1_PodSchedulingGate {doc 'PodSchedulingGate is associated to a Pod to guard its scheduling'}
				mandatory
					String io_k8s_api_core_v1_PodSchedulingGate_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
			io_k8s_api_core_v1_PodSecurityContext {doc 'PodSecurityContext holds pod-level security attributes and common container settings Some fields are also present in containersecurityContext  Field values of containersecurityContext take precedence over field values of PodSecurityContext'}
				optional
					io_k8s_api_core_v1_PodSecurityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
						mandatory
							io_k8s_api_core_v1_PodSecurityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
								alternative
									io_k8s_api_core_v1_PodSecurityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
									io_k8s_api_core_v1_PodSecurityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
									io_k8s_api_core_v1_PodSecurityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
						optional
							io_k8s_api_core_v1_PodSecurityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
								mandatory
									io_k8s_api_core_v1_PodSecurityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
					io_k8s_api_core_v1_PodSecurityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
						mandatory
							Integer io_k8s_api_core_v1_PodSecurityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
					io_k8s_api_core_v1_PodSecurityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
						alternative
							io_k8s_api_core_v1_PodSecurityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
							io_k8s_api_core_v1_PodSecurityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
					io_k8s_api_core_v1_PodSecurityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
						mandatory
							Integer io_k8s_api_core_v1_PodSecurityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
					io_k8s_api_core_v1_PodSecurityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
					io_k8s_api_core_v1_PodSecurityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
						mandatory
							Integer io_k8s_api_core_v1_PodSecurityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
					io_k8s_api_core_v1_PodSecurityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
						optional
							String io_k8s_api_core_v1_PodSecurityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
							String io_k8s_api_core_v1_PodSecurityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
							String io_k8s_api_core_v1_PodSecurityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
							String io_k8s_api_core_v1_PodSecurityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
					io_k8s_api_core_v1_PodSecurityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
						mandatory
							io_k8s_api_core_v1_PodSecurityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
								alternative
									io_k8s_api_core_v1_PodSecurityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
									io_k8s_api_core_v1_PodSecurityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
									io_k8s_api_core_v1_PodSecurityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
						optional
							io_k8s_api_core_v1_PodSecurityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
								mandatory
									io_k8s_api_core_v1_PodSecurityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
					io_k8s_api_core_v1_PodSecurityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
						mandatory
							Integer io_k8s_api_core_v1_PodSecurityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
					io_k8s_api_core_v1_PodSecurityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
						mandatory
							String io_k8s_api_core_v1_PodSecurityContext_sysctls_name {doc 'Name of a property to set'}
							String io_k8s_api_core_v1_PodSecurityContext_sysctls_value {doc 'Value of a property to set'}
					io_k8s_api_core_v1_PodSecurityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
						optional
							String io_k8s_api_core_v1_PodSecurityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
							String io_k8s_api_core_v1_PodSecurityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
							io_k8s_api_core_v1_PodSecurityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
							String io_k8s_api_core_v1_PodSecurityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
			io_k8s_api_core_v1_PodSpec {doc 'PodSpec is a description of a pod'}
				mandatory
					io_k8s_api_core_v1_PodSpec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
						mandatory
							String io_k8s_api_core_v1_PodSpec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
						optional
							io_k8s_api_core_v1_PodSpec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PodSpec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PodSpec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
								optional
									String io_k8s_api_core_v1_PodSpec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
									io_k8s_api_core_v1_PodSpec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
										optional
											io_k8s_api_core_v1_PodSpec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
												optional
													String io_k8s_api_core_v1_PodSpec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_PodSpec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
											io_k8s_api_core_v1_PodSpec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
												optional
													String io_k8s_api_core_v1_PodSpec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
											io_k8s_api_core_v1_PodSpec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
												optional
													String io_k8s_api_core_v1_PodSpec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
													io_k8s_api_core_v1_PodSpec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
														alternative
															String io_k8s_api_core_v1_PodSpec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodSpec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_PodSpec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
												optional
													String io_k8s_api_core_v1_PodSpec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_PodSpec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
							io_k8s_api_core_v1_PodSpec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
								optional
									io_k8s_api_core_v1_PodSpec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
										optional
											String io_k8s_api_core_v1_PodSpec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_PodSpec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
									String io_k8s_api_core_v1_PodSpec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
									io_k8s_api_core_v1_PodSpec_containers_envFrom_secretRef {doc 'The Secret to select from'}
										optional
											String io_k8s_api_core_v1_PodSpec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_PodSpec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
							String io_k8s_api_core_v1_PodSpec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
							io_k8s_api_core_v1_PodSpec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
								alternative
									io_k8s_api_core_v1_PodSpec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
									io_k8s_api_core_v1_PodSpec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
									io_k8s_api_core_v1_PodSpec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
							io_k8s_api_core_v1_PodSpec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
								optional
									io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
										optional
											io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
												mandatory
													Integer io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
											io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
												mandatory
													io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
									io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
										optional
											io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
												mandatory
													Integer io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
											io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
												mandatory
													io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
							io_k8s_api_core_v1_PodSpec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
								optional
									io_k8s_api_core_v1_PodSpec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
										optional
											io_k8s_api_core_v1_PodSpec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									Integer io_k8s_api_core_v1_PodSpec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
									io_k8s_api_core_v1_PodSpec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
										mandatory
											Integer io_k8s_api_core_v1_PodSpec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
										optional
											String io_k8s_api_core_v1_PodSpec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
									io_k8s_api_core_v1_PodSpec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
										mandatory
											io_k8s_api_core_v1_PodSpec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_PodSpec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodSpec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_PodSpec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
											io_k8s_api_core_v1_PodSpec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
													String io_k8s_api_core_v1_PodSpec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
											String io_k8s_api_core_v1_PodSpec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
											String io_k8s_api_core_v1_PodSpec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
									Integer io_k8s_api_core_v1_PodSpec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									Integer io_k8s_api_core_v1_PodSpec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
									Integer io_k8s_api_core_v1_PodSpec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
									io_k8s_api_core_v1_PodSpec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
										mandatory
											io_k8s_api_core_v1_PodSpec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_PodSpec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodSpec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_PodSpec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
									Integer io_k8s_api_core_v1_PodSpec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
									Integer io_k8s_api_core_v1_PodSpec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
							io_k8s_api_core_v1_PodSpec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
								mandatory
									Integer io_k8s_api_core_v1_PodSpec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
								optional
									String io_k8s_api_core_v1_PodSpec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
									Integer io_k8s_api_core_v1_PodSpec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
									String io_k8s_api_core_v1_PodSpec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
									io_k8s_api_core_v1_PodSpec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
										alternative
											io_k8s_api_core_v1_PodSpec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
											io_k8s_api_core_v1_PodSpec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
											io_k8s_api_core_v1_PodSpec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
							io_k8s_api_core_v1_PodSpec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
								optional
									io_k8s_api_core_v1_PodSpec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
										optional
											io_k8s_api_core_v1_PodSpec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									Integer io_k8s_api_core_v1_PodSpec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
									io_k8s_api_core_v1_PodSpec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
										mandatory
											Integer io_k8s_api_core_v1_PodSpec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
										optional
											String io_k8s_api_core_v1_PodSpec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
									io_k8s_api_core_v1_PodSpec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
										mandatory
											io_k8s_api_core_v1_PodSpec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_PodSpec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodSpec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_PodSpec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
											io_k8s_api_core_v1_PodSpec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
													String io_k8s_api_core_v1_PodSpec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
											String io_k8s_api_core_v1_PodSpec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
											String io_k8s_api_core_v1_PodSpec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
									Integer io_k8s_api_core_v1_PodSpec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									Integer io_k8s_api_core_v1_PodSpec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
									Integer io_k8s_api_core_v1_PodSpec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
									io_k8s_api_core_v1_PodSpec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
										mandatory
											io_k8s_api_core_v1_PodSpec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_PodSpec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodSpec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_PodSpec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
									Integer io_k8s_api_core_v1_PodSpec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
									Integer io_k8s_api_core_v1_PodSpec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
							io_k8s_api_core_v1_PodSpec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
								mandatory
									io_k8s_api_core_v1_PodSpec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
										alternative
											io_k8s_api_core_v1_PodSpec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
											io_k8s_api_core_v1_PodSpec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
									String io_k8s_api_core_v1_PodSpec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
							io_k8s_api_core_v1_PodSpec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
								optional
									io_k8s_api_core_v1_PodSpec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
									io_k8s_api_core_v1_PodSpec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
										alternative
											String io_k8s_api_core_v1_PodSpec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_PodSpec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_PodSpec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
										alternative
											String io_k8s_api_core_v1_PodSpec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_PodSpec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
							String io_k8s_api_core_v1_PodSpec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
							io_k8s_api_core_v1_PodSpec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
								optional
									io_k8s_api_core_v1_PodSpec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
									io_k8s_api_core_v1_PodSpec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
										mandatory
											io_k8s_api_core_v1_PodSpec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
												alternative
													io_k8s_api_core_v1_PodSpec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
													io_k8s_api_core_v1_PodSpec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
													io_k8s_api_core_v1_PodSpec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
										optional
											io_k8s_api_core_v1_PodSpec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
												mandatory
													io_k8s_api_core_v1_PodSpec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_PodSpec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
										optional
											io_k8s_api_core_v1_PodSpec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodSpec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodSpec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
									io_k8s_api_core_v1_PodSpec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_PodSpec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
									io_k8s_api_core_v1_PodSpec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
										mandatory
											Integer io_k8s_api_core_v1_PodSpec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
									io_k8s_api_core_v1_PodSpec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
									io_k8s_api_core_v1_PodSpec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
										mandatory
											Integer io_k8s_api_core_v1_PodSpec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
									io_k8s_api_core_v1_PodSpec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
										optional
											String io_k8s_api_core_v1_PodSpec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
											String io_k8s_api_core_v1_PodSpec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
											String io_k8s_api_core_v1_PodSpec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
											String io_k8s_api_core_v1_PodSpec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
									io_k8s_api_core_v1_PodSpec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
										mandatory
											io_k8s_api_core_v1_PodSpec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
												alternative
													io_k8s_api_core_v1_PodSpec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
													io_k8s_api_core_v1_PodSpec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
													io_k8s_api_core_v1_PodSpec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
										optional
											io_k8s_api_core_v1_PodSpec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
												mandatory
													io_k8s_api_core_v1_PodSpec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_PodSpec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
										optional
											String io_k8s_api_core_v1_PodSpec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
											String io_k8s_api_core_v1_PodSpec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
											io_k8s_api_core_v1_PodSpec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
											String io_k8s_api_core_v1_PodSpec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
							io_k8s_api_core_v1_PodSpec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
								optional
									io_k8s_api_core_v1_PodSpec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
										optional
											io_k8s_api_core_v1_PodSpec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									Integer io_k8s_api_core_v1_PodSpec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
									io_k8s_api_core_v1_PodSpec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
										mandatory
											Integer io_k8s_api_core_v1_PodSpec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
										optional
											String io_k8s_api_core_v1_PodSpec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
									io_k8s_api_core_v1_PodSpec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
										mandatory
											io_k8s_api_core_v1_PodSpec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_PodSpec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodSpec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_PodSpec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
											io_k8s_api_core_v1_PodSpec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
													String io_k8s_api_core_v1_PodSpec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
											String io_k8s_api_core_v1_PodSpec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
											String io_k8s_api_core_v1_PodSpec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
									Integer io_k8s_api_core_v1_PodSpec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									Integer io_k8s_api_core_v1_PodSpec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
									Integer io_k8s_api_core_v1_PodSpec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
									io_k8s_api_core_v1_PodSpec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
										mandatory
											io_k8s_api_core_v1_PodSpec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_PodSpec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodSpec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_PodSpec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
									Integer io_k8s_api_core_v1_PodSpec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
									Integer io_k8s_api_core_v1_PodSpec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
							io_k8s_api_core_v1_PodSpec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
							io_k8s_api_core_v1_PodSpec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
							String io_k8s_api_core_v1_PodSpec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
							String io_k8s_api_core_v1_PodSpec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
							io_k8s_api_core_v1_PodSpec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
							io_k8s_api_core_v1_PodSpec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
									String io_k8s_api_core_v1_PodSpec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
							io_k8s_api_core_v1_PodSpec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
									String io_k8s_api_core_v1_PodSpec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
								optional
									String io_k8s_api_core_v1_PodSpec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
									io_k8s_api_core_v1_PodSpec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
									String io_k8s_api_core_v1_PodSpec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
									String io_k8s_api_core_v1_PodSpec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
									String io_k8s_api_core_v1_PodSpec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
							String io_k8s_api_core_v1_PodSpec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
				optional
					Integer io_k8s_api_core_v1_PodSpec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
					io_k8s_api_core_v1_PodSpec_affinity {doc 'If specified, the pod_s scheduling constraints'}
						optional
							io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
								optional
									io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
										mandatory
											io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
												optional
													io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
															io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																alternative
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
															io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																alternative
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
									io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
										mandatory
											io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
												optional
													io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
															io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																alternative
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
															io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																alternative
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PodSpec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
								optional
									io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
										mandatory
											io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
												optional
													io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
														optional
															io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
														optional
															io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
									io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
										optional
											io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
												optional
													io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
												optional
													io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
								optional
									io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
										mandatory
											io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
												optional
													io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
														optional
															io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
														optional
															io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
									io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
										optional
											io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
												optional
													io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
												optional
													io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_PodSpec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
					io_k8s_api_core_v1_PodSpec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
						optional
							io_k8s_api_core_v1_PodSpec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PodSpec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_dnsConfig_options_name {doc 'Required'}
								optional
									String io_k8s_api_core_v1_PodSpec_dnsConfig_options_value
							io_k8s_api_core_v1_PodSpec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_PodSpec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
						alternative
							io_k8s_api_core_v1_PodSpec_dnsPolicy_None {doc 'Specific value: None'}
							io_k8s_api_core_v1_PodSpec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
							io_k8s_api_core_v1_PodSpec_dnsPolicy_Default {doc 'Specific value: Default'}
							io_k8s_api_core_v1_PodSpec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
					io_k8s_api_core_v1_PodSpec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
					io_k8s_api_core_v1_PodSpec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
						mandatory
							String io_k8s_api_core_v1_PodSpec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
						optional
							io_k8s_api_core_v1_PodSpec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PodSpec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PodSpec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
								optional
									String io_k8s_api_core_v1_PodSpec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
										optional
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
												optional
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_PodSpec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
												optional
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
												optional
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
													io_k8s_api_core_v1_PodSpec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
														alternative
															String io_k8s_api_core_v1_PodSpec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
												optional
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_PodSpec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
							io_k8s_api_core_v1_PodSpec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
								optional
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
										optional
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
									String io_k8s_api_core_v1_PodSpec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
										optional
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
							String io_k8s_api_core_v1_PodSpec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
							io_k8s_api_core_v1_PodSpec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
								alternative
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
							io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
								optional
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
										optional
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
												mandatory
													Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
												mandatory
													io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
										optional
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
												mandatory
													Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
												mandatory
													io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
							io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
								optional
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
										optional
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
										mandatory
											Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
										optional
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
										mandatory
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
									Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
									Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
										mandatory
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
									Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
									Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
							io_k8s_api_core_v1_PodSpec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
								mandatory
									Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
								optional
									String io_k8s_api_core_v1_PodSpec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
									Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
									String io_k8s_api_core_v1_PodSpec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
										alternative
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
							io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
								optional
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
										optional
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
										mandatory
											Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
										optional
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
										mandatory
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
									Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
									Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
										mandatory
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
									Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
									Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
							io_k8s_api_core_v1_PodSpec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
								mandatory
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
										alternative
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
									String io_k8s_api_core_v1_PodSpec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
							io_k8s_api_core_v1_PodSpec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
								optional
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
										alternative
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
										alternative
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
							String io_k8s_api_core_v1_PodSpec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
							io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
								optional
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
										mandatory
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
												alternative
													io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
													io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
													io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
										optional
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
												mandatory
													io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
										optional
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
										mandatory
											Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
										mandatory
											Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
										optional
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
										mandatory
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
												alternative
													io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
													io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
													io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
										optional
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
												mandatory
													io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
										optional
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
							io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
								optional
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
										optional
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
										mandatory
											Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
										optional
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
										mandatory
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
									Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
									Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
										mandatory
											io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
									Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
									Integer io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
							io_k8s_api_core_v1_PodSpec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
							io_k8s_api_core_v1_PodSpec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
							String io_k8s_api_core_v1_PodSpec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
							String io_k8s_api_core_v1_PodSpec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
							String io_k8s_api_core_v1_PodSpec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
							io_k8s_api_core_v1_PodSpec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
							io_k8s_api_core_v1_PodSpec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
									String io_k8s_api_core_v1_PodSpec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
							io_k8s_api_core_v1_PodSpec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
									String io_k8s_api_core_v1_PodSpec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
								optional
									String io_k8s_api_core_v1_PodSpec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
									io_k8s_api_core_v1_PodSpec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
									String io_k8s_api_core_v1_PodSpec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
									String io_k8s_api_core_v1_PodSpec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
									String io_k8s_api_core_v1_PodSpec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
							String io_k8s_api_core_v1_PodSpec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
					io_k8s_api_core_v1_PodSpec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
						mandatory
							String io_k8s_api_core_v1_PodSpec_hostAliases_ip {doc 'IP address of the host file entry'}
						optional
							io_k8s_api_core_v1_PodSpec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_PodSpec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
					io_k8s_api_core_v1_PodSpec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
					io_k8s_api_core_v1_PodSpec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
					io_k8s_api_core_v1_PodSpec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
					String io_k8s_api_core_v1_PodSpec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
					io_k8s_api_core_v1_PodSpec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
						optional
							String io_k8s_api_core_v1_PodSpec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
					io_k8s_api_core_v1_PodSpec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
						mandatory
							String io_k8s_api_core_v1_PodSpec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
						optional
							io_k8s_api_core_v1_PodSpec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PodSpec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PodSpec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
								optional
									String io_k8s_api_core_v1_PodSpec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
									io_k8s_api_core_v1_PodSpec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
										optional
											io_k8s_api_core_v1_PodSpec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
												optional
													String io_k8s_api_core_v1_PodSpec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_PodSpec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
											io_k8s_api_core_v1_PodSpec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
												optional
													String io_k8s_api_core_v1_PodSpec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
											io_k8s_api_core_v1_PodSpec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
												optional
													String io_k8s_api_core_v1_PodSpec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
													io_k8s_api_core_v1_PodSpec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
														alternative
															String io_k8s_api_core_v1_PodSpec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodSpec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_PodSpec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
												optional
													String io_k8s_api_core_v1_PodSpec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_PodSpec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
							io_k8s_api_core_v1_PodSpec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
								optional
									io_k8s_api_core_v1_PodSpec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
										optional
											String io_k8s_api_core_v1_PodSpec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_PodSpec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
									String io_k8s_api_core_v1_PodSpec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
									io_k8s_api_core_v1_PodSpec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
										optional
											String io_k8s_api_core_v1_PodSpec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_PodSpec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
							String io_k8s_api_core_v1_PodSpec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
							io_k8s_api_core_v1_PodSpec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
								alternative
									io_k8s_api_core_v1_PodSpec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
									io_k8s_api_core_v1_PodSpec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
									io_k8s_api_core_v1_PodSpec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
							io_k8s_api_core_v1_PodSpec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
								optional
									io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
										optional
											io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
												mandatory
													Integer io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
											io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
												mandatory
													io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
									io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
										optional
											io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
												mandatory
													Integer io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
											io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
												mandatory
													io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
							io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
								optional
									io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
										optional
											io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									Integer io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
									io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
										mandatory
											Integer io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
										optional
											String io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
									io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
										mandatory
											io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
											io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
													String io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
											String io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
											String io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
									Integer io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									Integer io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
									Integer io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
									io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
										mandatory
											io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
									Integer io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
									Integer io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
							io_k8s_api_core_v1_PodSpec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
								mandatory
									Integer io_k8s_api_core_v1_PodSpec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
								optional
									String io_k8s_api_core_v1_PodSpec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
									Integer io_k8s_api_core_v1_PodSpec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
									String io_k8s_api_core_v1_PodSpec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
									io_k8s_api_core_v1_PodSpec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
										alternative
											io_k8s_api_core_v1_PodSpec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
											io_k8s_api_core_v1_PodSpec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
											io_k8s_api_core_v1_PodSpec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
							io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
								optional
									io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
										optional
											io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									Integer io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
									io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
										mandatory
											Integer io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
										optional
											String io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
									io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
										mandatory
											io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
											io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
													String io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
											String io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
											String io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
									Integer io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									Integer io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
									Integer io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
									io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
										mandatory
											io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
									Integer io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
									Integer io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
							io_k8s_api_core_v1_PodSpec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
								mandatory
									io_k8s_api_core_v1_PodSpec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
										alternative
											io_k8s_api_core_v1_PodSpec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
											io_k8s_api_core_v1_PodSpec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
									String io_k8s_api_core_v1_PodSpec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
							io_k8s_api_core_v1_PodSpec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
								optional
									io_k8s_api_core_v1_PodSpec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
									io_k8s_api_core_v1_PodSpec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
										alternative
											String io_k8s_api_core_v1_PodSpec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_PodSpec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_PodSpec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
										alternative
											String io_k8s_api_core_v1_PodSpec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_PodSpec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
							String io_k8s_api_core_v1_PodSpec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
							io_k8s_api_core_v1_PodSpec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
								optional
									io_k8s_api_core_v1_PodSpec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
									io_k8s_api_core_v1_PodSpec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
										mandatory
											io_k8s_api_core_v1_PodSpec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
												alternative
													io_k8s_api_core_v1_PodSpec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
													io_k8s_api_core_v1_PodSpec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
													io_k8s_api_core_v1_PodSpec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
										optional
											io_k8s_api_core_v1_PodSpec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
												mandatory
													io_k8s_api_core_v1_PodSpec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_PodSpec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
										optional
											io_k8s_api_core_v1_PodSpec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodSpec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodSpec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
									io_k8s_api_core_v1_PodSpec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_PodSpec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
									io_k8s_api_core_v1_PodSpec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
										mandatory
											Integer io_k8s_api_core_v1_PodSpec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
									io_k8s_api_core_v1_PodSpec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
									io_k8s_api_core_v1_PodSpec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
										mandatory
											Integer io_k8s_api_core_v1_PodSpec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
									io_k8s_api_core_v1_PodSpec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
										optional
											String io_k8s_api_core_v1_PodSpec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
											String io_k8s_api_core_v1_PodSpec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
											String io_k8s_api_core_v1_PodSpec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
											String io_k8s_api_core_v1_PodSpec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
									io_k8s_api_core_v1_PodSpec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
										mandatory
											io_k8s_api_core_v1_PodSpec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
												alternative
													io_k8s_api_core_v1_PodSpec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
													io_k8s_api_core_v1_PodSpec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
													io_k8s_api_core_v1_PodSpec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
										optional
											io_k8s_api_core_v1_PodSpec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
												mandatory
													io_k8s_api_core_v1_PodSpec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_PodSpec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
										optional
											String io_k8s_api_core_v1_PodSpec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
											String io_k8s_api_core_v1_PodSpec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
											io_k8s_api_core_v1_PodSpec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
											String io_k8s_api_core_v1_PodSpec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
							io_k8s_api_core_v1_PodSpec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
								optional
									io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
										optional
											io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									Integer io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
									io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
										mandatory
											Integer io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
										optional
											String io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
									io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
										mandatory
											io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
											io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
													String io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
											String io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
											String io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
									Integer io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									Integer io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
									Integer io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
									io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
										mandatory
											io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
												alternative
													String io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
										optional
											String io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
									Integer io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
									Integer io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
							io_k8s_api_core_v1_PodSpec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
							io_k8s_api_core_v1_PodSpec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
							String io_k8s_api_core_v1_PodSpec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
							String io_k8s_api_core_v1_PodSpec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
							io_k8s_api_core_v1_PodSpec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
							io_k8s_api_core_v1_PodSpec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
									String io_k8s_api_core_v1_PodSpec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
							io_k8s_api_core_v1_PodSpec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
									String io_k8s_api_core_v1_PodSpec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
								optional
									String io_k8s_api_core_v1_PodSpec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
									io_k8s_api_core_v1_PodSpec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
									String io_k8s_api_core_v1_PodSpec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
									String io_k8s_api_core_v1_PodSpec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
									String io_k8s_api_core_v1_PodSpec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
							String io_k8s_api_core_v1_PodSpec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
					String io_k8s_api_core_v1_PodSpec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
					io_k8s_api_core_v1_PodSpec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
						mandatory
							String io_k8s_api_core_v1_PodSpec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_PodSpec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
						mandatory
							io_k8s_api_core_v1_PodSpec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
								alternative
									io_k8s_api_core_v1_PodSpec_os_name_windows {doc 'Specific value: windows'}
									io_k8s_api_core_v1_PodSpec_os_name_linux {doc 'Specific value: linux'}
					io_k8s_api_core_v1_PodSpec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
						alternative
							String io_k8s_api_core_v1_PodSpec_overhead_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_PodSpec_overhead_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_core_v1_PodSpec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
						alternative
							io_k8s_api_core_v1_PodSpec_preemptionPolicy_Never {doc 'Specific value: Never'}
							io_k8s_api_core_v1_PodSpec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
					Integer io_k8s_api_core_v1_PodSpec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
					String io_k8s_api_core_v1_PodSpec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
					io_k8s_api_core_v1_PodSpec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
						mandatory
							String io_k8s_api_core_v1_PodSpec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
					io_k8s_api_core_v1_PodSpec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
						mandatory
							String io_k8s_api_core_v1_PodSpec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
						optional
							io_k8s_api_core_v1_PodSpec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
								optional
									io_k8s_api_core_v1_PodSpec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_PodSpec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
					io_k8s_api_core_v1_PodSpec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
						alternative
							io_k8s_api_core_v1_PodSpec_restartPolicy_Never {doc 'Specific value: Never'}
							io_k8s_api_core_v1_PodSpec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
							io_k8s_api_core_v1_PodSpec_restartPolicy_Always {doc 'Specific value: Always'}
					String io_k8s_api_core_v1_PodSpec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
					String io_k8s_api_core_v1_PodSpec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
					io_k8s_api_core_v1_PodSpec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
						mandatory
							String io_k8s_api_core_v1_PodSpec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
					io_k8s_api_core_v1_PodSpec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
						optional
							io_k8s_api_core_v1_PodSpec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
								mandatory
									io_k8s_api_core_v1_PodSpec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
										alternative
											io_k8s_api_core_v1_PodSpec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
											io_k8s_api_core_v1_PodSpec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
											io_k8s_api_core_v1_PodSpec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
								optional
									io_k8s_api_core_v1_PodSpec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
										mandatory
											io_k8s_api_core_v1_PodSpec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							io_k8s_api_core_v1_PodSpec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
								mandatory
									Integer io_k8s_api_core_v1_PodSpec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
							io_k8s_api_core_v1_PodSpec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
								alternative
									io_k8s_api_core_v1_PodSpec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
									io_k8s_api_core_v1_PodSpec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
							io_k8s_api_core_v1_PodSpec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
								mandatory
									Integer io_k8s_api_core_v1_PodSpec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
							io_k8s_api_core_v1_PodSpec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
							io_k8s_api_core_v1_PodSpec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
								mandatory
									Integer io_k8s_api_core_v1_PodSpec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
							io_k8s_api_core_v1_PodSpec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
								optional
									String io_k8s_api_core_v1_PodSpec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
									String io_k8s_api_core_v1_PodSpec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
									String io_k8s_api_core_v1_PodSpec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
									String io_k8s_api_core_v1_PodSpec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
							io_k8s_api_core_v1_PodSpec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
								mandatory
									io_k8s_api_core_v1_PodSpec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
										alternative
											io_k8s_api_core_v1_PodSpec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
											io_k8s_api_core_v1_PodSpec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
											io_k8s_api_core_v1_PodSpec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
								optional
									io_k8s_api_core_v1_PodSpec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
										mandatory
											io_k8s_api_core_v1_PodSpec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							io_k8s_api_core_v1_PodSpec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
								mandatory
									Integer io_k8s_api_core_v1_PodSpec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
							io_k8s_api_core_v1_PodSpec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_securityContext_sysctls_name {doc 'Name of a property to set'}
									String io_k8s_api_core_v1_PodSpec_securityContext_sysctls_value {doc 'Value of a property to set'}
							io_k8s_api_core_v1_PodSpec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
								optional
									String io_k8s_api_core_v1_PodSpec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
									String io_k8s_api_core_v1_PodSpec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
									io_k8s_api_core_v1_PodSpec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
									String io_k8s_api_core_v1_PodSpec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
					String io_k8s_api_core_v1_PodSpec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
					String io_k8s_api_core_v1_PodSpec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
					io_k8s_api_core_v1_PodSpec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
					io_k8s_api_core_v1_PodSpec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
					String io_k8s_api_core_v1_PodSpec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
					Integer io_k8s_api_core_v1_PodSpec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
					io_k8s_api_core_v1_PodSpec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
						optional
							io_k8s_api_core_v1_PodSpec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
								alternative
									io_k8s_api_core_v1_PodSpec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
									io_k8s_api_core_v1_PodSpec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
									io_k8s_api_core_v1_PodSpec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
							String io_k8s_api_core_v1_PodSpec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
							io_k8s_api_core_v1_PodSpec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
								alternative
									io_k8s_api_core_v1_PodSpec_tolerations_operator_Exists {doc 'Specific value: Exists'}
									io_k8s_api_core_v1_PodSpec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
							Integer io_k8s_api_core_v1_PodSpec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
							io_k8s_api_core_v1_PodSpec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
					io_k8s_api_core_v1_PodSpec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
						mandatory
							Integer io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
							String io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
							String io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
						optional
							io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
								optional
									io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							Integer io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
							String io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
							String io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
					io_k8s_api_core_v1_PodSpec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
						mandatory
							String io_k8s_api_core_v1_PodSpec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
						optional
							io_k8s_api_core_v1_PodSpec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
								optional
									io_k8s_api_core_v1_PodSpec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
										alternative
											io_k8s_api_core_v1_PodSpec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PodSpec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PodSpec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
									Integer io_k8s_api_core_v1_PodSpec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
									io_k8s_api_core_v1_PodSpec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
							io_k8s_api_core_v1_PodSpec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
									String io_k8s_api_core_v1_PodSpec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
								optional
									io_k8s_api_core_v1_PodSpec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
										alternative
											io_k8s_api_core_v1_PodSpec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
											io_k8s_api_core_v1_PodSpec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
											io_k8s_api_core_v1_PodSpec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
									io_k8s_api_core_v1_PodSpec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
										alternative
											io_k8s_api_core_v1_PodSpec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PodSpec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PodSpec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
									io_k8s_api_core_v1_PodSpec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
										alternative
											io_k8s_api_core_v1_PodSpec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
											io_k8s_api_core_v1_PodSpec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
											io_k8s_api_core_v1_PodSpec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
									io_k8s_api_core_v1_PodSpec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
							io_k8s_api_core_v1_PodSpec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
									String io_k8s_api_core_v1_PodSpec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
								optional
									io_k8s_api_core_v1_PodSpec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
							io_k8s_api_core_v1_PodSpec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
								mandatory
									io_k8s_api_core_v1_PodSpec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									String io_k8s_api_core_v1_PodSpec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
									io_k8s_api_core_v1_PodSpec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
									String io_k8s_api_core_v1_PodSpec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
									io_k8s_api_core_v1_PodSpec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
										optional
											String io_k8s_api_core_v1_PodSpec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									String io_k8s_api_core_v1_PodSpec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
							io_k8s_api_core_v1_PodSpec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
								optional
									io_k8s_api_core_v1_PodSpec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
										alternative
											io_k8s_api_core_v1_PodSpec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PodSpec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PodSpec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
									io_k8s_api_core_v1_PodSpec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
									io_k8s_api_core_v1_PodSpec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
										optional
											String io_k8s_api_core_v1_PodSpec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							io_k8s_api_core_v1_PodSpec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
								optional
									Integer io_k8s_api_core_v1_PodSpec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
									io_k8s_api_core_v1_PodSpec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_volumes_configMap_items_key {doc 'key is the key to project'}
											String io_k8s_api_core_v1_PodSpec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
										optional
											Integer io_k8s_api_core_v1_PodSpec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
									String io_k8s_api_core_v1_PodSpec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_core_v1_PodSpec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
							io_k8s_api_core_v1_PodSpec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
								optional
									String io_k8s_api_core_v1_PodSpec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
									io_k8s_api_core_v1_PodSpec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
										optional
											String io_k8s_api_core_v1_PodSpec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_core_v1_PodSpec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
									io_k8s_api_core_v1_PodSpec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PodSpec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
								optional
									Integer io_k8s_api_core_v1_PodSpec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
									io_k8s_api_core_v1_PodSpec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
										optional
											io_k8s_api_core_v1_PodSpec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
												optional
													String io_k8s_api_core_v1_PodSpec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
											Integer io_k8s_api_core_v1_PodSpec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
											io_k8s_api_core_v1_PodSpec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
												optional
													String io_k8s_api_core_v1_PodSpec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
													io_k8s_api_core_v1_PodSpec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
														alternative
															String io_k8s_api_core_v1_PodSpec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodSpec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_PodSpec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
								optional
									String io_k8s_api_core_v1_PodSpec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
									io_k8s_api_core_v1_PodSpec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
										alternative
											String io_k8s_api_core_v1_PodSpec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_PodSpec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_PodSpec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
							io_k8s_api_core_v1_PodSpec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
								optional
									io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
										mandatory
											io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
												optional
													io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
															String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
														optional
															String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
													io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
															String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
														optional
															String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
															String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
													io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
														optional
															io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
														optional
															io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
													String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
													String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
													String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
										optional
											io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
												optional
													io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
														optional
															String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
														optional
															String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
													Integer io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
													io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
														optional
															String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
													Integer io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
													io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
														optional
															String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
															String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
															io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																optional
																	io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																	io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
															String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
															io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																alternative
																	io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																	io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
															String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
															io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																optional
																	String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
													String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
													io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
															String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
															String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
															String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
														optional
															io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
															io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
													String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
													String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
													String io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_core_v1_PodSpec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
								optional
									io_k8s_api_core_v1_PodSpec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
										alternative
											io_k8s_api_core_v1_PodSpec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PodSpec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PodSpec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
									Integer io_k8s_api_core_v1_PodSpec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
									io_k8s_api_core_v1_PodSpec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									io_k8s_api_core_v1_PodSpec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodSpec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PodSpec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
								optional
									io_k8s_api_core_v1_PodSpec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
										alternative
											io_k8s_api_core_v1_PodSpec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PodSpec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PodSpec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
									io_k8s_api_core_v1_PodSpec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodSpec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									io_k8s_api_core_v1_PodSpec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
										optional
											String io_k8s_api_core_v1_PodSpec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							io_k8s_api_core_v1_PodSpec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
								optional
									io_k8s_api_core_v1_PodSpec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_PodSpec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							io_k8s_api_core_v1_PodSpec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
								optional
									io_k8s_api_core_v1_PodSpec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
										alternative
											io_k8s_api_core_v1_PodSpec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PodSpec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PodSpec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
									Integer io_k8s_api_core_v1_PodSpec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
									io_k8s_api_core_v1_PodSpec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
							io_k8s_api_core_v1_PodSpec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_volumes_gitRepo_repository {doc 'repository is the URL'}
								optional
									String io_k8s_api_core_v1_PodSpec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
									String io_k8s_api_core_v1_PodSpec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
							io_k8s_api_core_v1_PodSpec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
									String io_k8s_api_core_v1_PodSpec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
								optional
									io_k8s_api_core_v1_PodSpec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
							io_k8s_api_core_v1_PodSpec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
								optional
									String io_k8s_api_core_v1_PodSpec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
							io_k8s_api_core_v1_PodSpec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
									Integer io_k8s_api_core_v1_PodSpec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
									String io_k8s_api_core_v1_PodSpec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
								optional
									io_k8s_api_core_v1_PodSpec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
									io_k8s_api_core_v1_PodSpec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
									io_k8s_api_core_v1_PodSpec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
										alternative
											io_k8s_api_core_v1_PodSpec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PodSpec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PodSpec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
									String io_k8s_api_core_v1_PodSpec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
									String io_k8s_api_core_v1_PodSpec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
									io_k8s_api_core_v1_PodSpec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodSpec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
									io_k8s_api_core_v1_PodSpec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
										optional
											String io_k8s_api_core_v1_PodSpec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							io_k8s_api_core_v1_PodSpec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
									String io_k8s_api_core_v1_PodSpec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
								optional
									io_k8s_api_core_v1_PodSpec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
							io_k8s_api_core_v1_PodSpec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
								optional
									io_k8s_api_core_v1_PodSpec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
							io_k8s_api_core_v1_PodSpec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
								optional
									io_k8s_api_core_v1_PodSpec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
										alternative
											io_k8s_api_core_v1_PodSpec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PodSpec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PodSpec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
							io_k8s_api_core_v1_PodSpec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
								optional
									io_k8s_api_core_v1_PodSpec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
										alternative
											io_k8s_api_core_v1_PodSpec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PodSpec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
									io_k8s_api_core_v1_PodSpec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
							io_k8s_api_core_v1_PodSpec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
								optional
									Integer io_k8s_api_core_v1_PodSpec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
									io_k8s_api_core_v1_PodSpec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
										optional
											io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
												optional
													io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
														optional
															io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
													io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
													String io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
											io_k8s_api_core_v1_PodSpec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
												optional
													io_k8s_api_core_v1_PodSpec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
															String io_k8s_api_core_v1_PodSpec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
														optional
															Integer io_k8s_api_core_v1_PodSpec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													String io_k8s_api_core_v1_PodSpec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_PodSpec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
											io_k8s_api_core_v1_PodSpec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
												optional
													io_k8s_api_core_v1_PodSpec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
														optional
															io_k8s_api_core_v1_PodSpec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																mandatory
																	String io_k8s_api_core_v1_PodSpec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_core_v1_PodSpec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															Integer io_k8s_api_core_v1_PodSpec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_core_v1_PodSpec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																mandatory
																	String io_k8s_api_core_v1_PodSpec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_core_v1_PodSpec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_core_v1_PodSpec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_core_v1_PodSpec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodSpec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_PodSpec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
												optional
													io_k8s_api_core_v1_PodSpec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
														mandatory
															String io_k8s_api_core_v1_PodSpec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
															String io_k8s_api_core_v1_PodSpec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
														optional
															Integer io_k8s_api_core_v1_PodSpec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													String io_k8s_api_core_v1_PodSpec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_PodSpec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
											io_k8s_api_core_v1_PodSpec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
												mandatory
													String io_k8s_api_core_v1_PodSpec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
												optional
													String io_k8s_api_core_v1_PodSpec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
													Integer io_k8s_api_core_v1_PodSpec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
							io_k8s_api_core_v1_PodSpec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
									String io_k8s_api_core_v1_PodSpec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
								optional
									String io_k8s_api_core_v1_PodSpec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
									io_k8s_api_core_v1_PodSpec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
									String io_k8s_api_core_v1_PodSpec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
									String io_k8s_api_core_v1_PodSpec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
							io_k8s_api_core_v1_PodSpec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
									io_k8s_api_core_v1_PodSpec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_core_v1_PodSpec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
										alternative
											io_k8s_api_core_v1_PodSpec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PodSpec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PodSpec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
									String io_k8s_api_core_v1_PodSpec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
									String io_k8s_api_core_v1_PodSpec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
									io_k8s_api_core_v1_PodSpec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
									io_k8s_api_core_v1_PodSpec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
										optional
											String io_k8s_api_core_v1_PodSpec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									String io_k8s_api_core_v1_PodSpec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
							io_k8s_api_core_v1_PodSpec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
									io_k8s_api_core_v1_PodSpec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
										optional
											String io_k8s_api_core_v1_PodSpec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									String io_k8s_api_core_v1_PodSpec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
								optional
									io_k8s_api_core_v1_PodSpec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
										alternative
											io_k8s_api_core_v1_PodSpec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PodSpec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PodSpec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
									String io_k8s_api_core_v1_PodSpec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
									io_k8s_api_core_v1_PodSpec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									io_k8s_api_core_v1_PodSpec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
									io_k8s_api_core_v1_PodSpec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
										alternative
											io_k8s_api_core_v1_PodSpec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
											io_k8s_api_core_v1_PodSpec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
									String io_k8s_api_core_v1_PodSpec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
									String io_k8s_api_core_v1_PodSpec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
							io_k8s_api_core_v1_PodSpec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
								optional
									Integer io_k8s_api_core_v1_PodSpec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
									io_k8s_api_core_v1_PodSpec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
										mandatory
											String io_k8s_api_core_v1_PodSpec_volumes_secret_items_key {doc 'key is the key to project'}
											String io_k8s_api_core_v1_PodSpec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
										optional
											Integer io_k8s_api_core_v1_PodSpec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
									io_k8s_api_core_v1_PodSpec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
									String io_k8s_api_core_v1_PodSpec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
							io_k8s_api_core_v1_PodSpec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
								optional
									io_k8s_api_core_v1_PodSpec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
										alternative
											io_k8s_api_core_v1_PodSpec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PodSpec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PodSpec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
									io_k8s_api_core_v1_PodSpec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									io_k8s_api_core_v1_PodSpec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
										optional
											String io_k8s_api_core_v1_PodSpec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									String io_k8s_api_core_v1_PodSpec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
									String io_k8s_api_core_v1_PodSpec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
							io_k8s_api_core_v1_PodSpec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
								mandatory
									String io_k8s_api_core_v1_PodSpec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
								optional
									io_k8s_api_core_v1_PodSpec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
										alternative
											io_k8s_api_core_v1_PodSpec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_core_v1_PodSpec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PodSpec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
									String io_k8s_api_core_v1_PodSpec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
									String io_k8s_api_core_v1_PodSpec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
			io_k8s_api_core_v1_PodStatus {doc 'PodStatus represents information about the status of a pod Status may trail the actual state of a system, especially if the node that hosts the pod cannot contact the control plane'}
				optional
					io_k8s_api_core_v1_PodStatus_conditions cardinality [1..*] {doc 'Current service state of pod More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions'}
						mandatory
							io_k8s_api_core_v1_PodStatus_conditions_status {doc 'Status is the status of the condition Can be True, False, Unknown More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions'}
								alternative
									io_k8s_api_core_v1_PodStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_core_v1_PodStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_core_v1_PodStatus_conditions_status_True {doc 'Specific value: True'}
							String io_k8s_api_core_v1_PodStatus_conditions_type {doc 'Type is the type of the condition More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions'}
						optional
							io_k8s_api_core_v1_PodStatus_conditions_lastProbeTime {doc 'Last time we probed the condition'}
								optional
									String io_k8s_api_core_v1_PodStatus_conditions_lastProbeTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_PodStatus_conditions_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
								optional
									String io_k8s_api_core_v1_PodStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_PodStatus_conditions_message {doc 'Human-readable message indicating details about last transition'}
							String io_k8s_api_core_v1_PodStatus_conditions_reason {doc 'Unique, one-word, CamelCase reason for the condition_s last transition'}
					io_k8s_api_core_v1_PodStatus_containerStatuses cardinality [1..*] {doc 'The list has one entry per container in the manifest More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status'}
						mandatory
							String io_k8s_api_core_v1_PodStatus_containerStatuses_image {doc 'Image is the name of container image that the container is running The container image may not match the image used in the PodSpec, as it may have been resolved by the runtime More info: https:_kubernetesio/docs/concepts/containers/images'}
							String io_k8s_api_core_v1_PodStatus_containerStatuses_imageID {doc 'ImageID is the image ID of the container_s image The image ID may not match the image ID of the image used in the PodSpec, as it may have been resolved by the runtime'}
							String io_k8s_api_core_v1_PodStatus_containerStatuses_name {doc 'Name is a DNS_LABEL representing the unique name of the container Each container in a pod must have a unique name across all container types Cannot be updated'}
							io_k8s_api_core_v1_PodStatus_containerStatuses_ready {default true, doc 'Ready specifies whether the container is currently passing its readiness check The value will change as readiness probes keep executing If no readiness probes are specified, this field defaults to true once the container is fully started (see Started field)The value is typically used to determine whether a container is ready to accept traffic'}
							Integer io_k8s_api_core_v1_PodStatus_containerStatuses_restartCount {doc 'RestartCount holds the number of times the container has been restarted Kubelet makes an effort to always increment the value, but there are cases when the state may be lost due to node restarts and then the value may be reset to 0 The value is never negative'}
						optional
							io_k8s_api_core_v1_PodStatus_containerStatuses_allocatedResources cardinality [1..*] {doc 'AllocatedResources represents the compute resources allocated for this container by the node Kubelet sets this value to ContainerResourcesRequests upon successful pod admission and after successfully admitting desired pod resize'}
								alternative
									String io_k8s_api_core_v1_PodStatus_containerStatuses_allocatedResources_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_PodStatus_containerStatuses_allocatedResources_asNumber {doc 'Sub-feature added of type Number'}
							String io_k8s_api_core_v1_PodStatus_containerStatuses_containerID {doc 'ContainerID is the ID of the container in the format _<type>:_<container_id>_ Where type is a container runtime identifier, returned from Version call of CRI API (for example containerd)'}
							io_k8s_api_core_v1_PodStatus_containerStatuses_lastState {doc 'LastTerminationState holds the last termination state of the container to help debug container crashes and restarts This field is not populated if the container is still running and RestartCount is 0'}
								optional
									io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_running {doc 'Details about a running container'}
										optional
											io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_running_startedAt {doc 'Time at which the container was last (re-)started'}
												optional
													String io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_running_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_terminated {doc 'Details about a terminated container'}
										mandatory
											Integer io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_terminated_exitCode {doc 'Exit status from the last termination of the container'}
										optional
											String io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_terminated_containerID {doc 'Container_s ID in the format _<type>:_<container_id>_'}
											io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_terminated_finishedAt {doc 'Time at which the container last terminated'}
												optional
													String io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_terminated_finishedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_terminated_message {doc 'Message regarding the last termination of the container'}
											String io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_terminated_reason {doc '(brief) reason from the last termination of the container'}
											Integer io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_terminated_signal {doc 'Signal from the last termination of the container'}
											io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_terminated_startedAt {doc 'Time at which previous execution of the container started'}
												optional
													String io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_terminated_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_waiting {doc 'Details about a waiting container'}
										optional
											String io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_waiting_message {doc 'Message regarding why the container is not yet running'}
											String io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_waiting_reason {doc '(brief) reason the container is not yet running'}
							io_k8s_api_core_v1_PodStatus_containerStatuses_resources {doc 'Resources represents the compute resource requests and limits that have been successfully enacted on the running container after it has been started or has been successfully resized'}
								optional
									io_k8s_api_core_v1_PodStatus_containerStatuses_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
										mandatory
											String io_k8s_api_core_v1_PodStatus_containerStatuses_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
									io_k8s_api_core_v1_PodStatus_containerStatuses_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
										alternative
											String io_k8s_api_core_v1_PodStatus_containerStatuses_resources_limits_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_PodStatus_containerStatuses_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_PodStatus_containerStatuses_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
										alternative
											String io_k8s_api_core_v1_PodStatus_containerStatuses_resources_requests_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_PodStatus_containerStatuses_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_PodStatus_containerStatuses_started {doc 'Started indicates whether the container has finished its postStart lifecycle hook and passed its startup probe Initialized as false, becomes true after startupProbe is considered successful Resets to false when the container is restarted, or if kubelet loses state temporarily In both cases, startup probes will run again Is always true when no startupProbe is defined and container is running and has passed the postStart lifecycle hook The null value must be treated the same as false'}
							io_k8s_api_core_v1_PodStatus_containerStatuses_state {doc 'State holds details about the container_s current condition'}
								optional
									io_k8s_api_core_v1_PodStatus_containerStatuses_state_running {doc 'Details about a running container'}
										optional
											io_k8s_api_core_v1_PodStatus_containerStatuses_state_running_startedAt {doc 'Time at which the container was last (re-)started'}
												optional
													String io_k8s_api_core_v1_PodStatus_containerStatuses_state_running_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_PodStatus_containerStatuses_state_terminated {doc 'Details about a terminated container'}
										mandatory
											Integer io_k8s_api_core_v1_PodStatus_containerStatuses_state_terminated_exitCode {doc 'Exit status from the last termination of the container'}
										optional
											String io_k8s_api_core_v1_PodStatus_containerStatuses_state_terminated_containerID {doc 'Container_s ID in the format _<type>:_<container_id>_'}
											io_k8s_api_core_v1_PodStatus_containerStatuses_state_terminated_finishedAt {doc 'Time at which the container last terminated'}
												optional
													String io_k8s_api_core_v1_PodStatus_containerStatuses_state_terminated_finishedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_core_v1_PodStatus_containerStatuses_state_terminated_message {doc 'Message regarding the last termination of the container'}
											String io_k8s_api_core_v1_PodStatus_containerStatuses_state_terminated_reason {doc '(brief) reason from the last termination of the container'}
											Integer io_k8s_api_core_v1_PodStatus_containerStatuses_state_terminated_signal {doc 'Signal from the last termination of the container'}
											io_k8s_api_core_v1_PodStatus_containerStatuses_state_terminated_startedAt {doc 'Time at which previous execution of the container started'}
												optional
													String io_k8s_api_core_v1_PodStatus_containerStatuses_state_terminated_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_PodStatus_containerStatuses_state_waiting {doc 'Details about a waiting container'}
										optional
											String io_k8s_api_core_v1_PodStatus_containerStatuses_state_waiting_message {doc 'Message regarding why the container is not yet running'}
											String io_k8s_api_core_v1_PodStatus_containerStatuses_state_waiting_reason {doc '(brief) reason the container is not yet running'}
							io_k8s_api_core_v1_PodStatus_containerStatuses_volumeMounts cardinality [1..*] {doc 'Status of volume mounts'}
								mandatory
									String io_k8s_api_core_v1_PodStatus_containerStatuses_volumeMounts_mountPath {doc 'MountPath corresponds to the original VolumeMount'}
									String io_k8s_api_core_v1_PodStatus_containerStatuses_volumeMounts_name {doc 'Name corresponds to the name of the original VolumeMount'}
								optional
									io_k8s_api_core_v1_PodStatus_containerStatuses_volumeMounts_readOnly {doc 'ReadOnly corresponds to the original VolumeMount'}
									String io_k8s_api_core_v1_PodStatus_containerStatuses_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts) An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result'}
					io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses cardinality [1..*] {doc 'Status for any ephemeral containers that have run in this pod'}
						mandatory
							String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_image {doc 'Image is the name of container image that the container is running The container image may not match the image used in the PodSpec, as it may have been resolved by the runtime More info: https:_kubernetesio/docs/concepts/containers/images'}
							String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_imageID {doc 'ImageID is the image ID of the container_s image The image ID may not match the image ID of the image used in the PodSpec, as it may have been resolved by the runtime'}
							String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_name {doc 'Name is a DNS_LABEL representing the unique name of the container Each container in a pod must have a unique name across all container types Cannot be updated'}
							io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_ready {default true, doc 'Ready specifies whether the container is currently passing its readiness check The value will change as readiness probes keep executing If no readiness probes are specified, this field defaults to true once the container is fully started (see Started field)The value is typically used to determine whether a container is ready to accept traffic'}
							Integer io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_restartCount {doc 'RestartCount holds the number of times the container has been restarted Kubelet makes an effort to always increment the value, but there are cases when the state may be lost due to node restarts and then the value may be reset to 0 The value is never negative'}
						optional
							io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_allocatedResources cardinality [1..*] {doc 'AllocatedResources represents the compute resources allocated for this container by the node Kubelet sets this value to ContainerResourcesRequests upon successful pod admission and after successfully admitting desired pod resize'}
								alternative
									String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_allocatedResources_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_allocatedResources_asNumber {doc 'Sub-feature added of type Number'}
							String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_containerID {doc 'ContainerID is the ID of the container in the format _<type>:_<container_id>_ Where type is a container runtime identifier, returned from Version call of CRI API (for example containerd)'}
							io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState {doc 'LastTerminationState holds the last termination state of the container to help debug container crashes and restarts This field is not populated if the container is still running and RestartCount is 0'}
								optional
									io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_running {doc 'Details about a running container'}
										optional
											io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_running_startedAt {doc 'Time at which the container was last (re-)started'}
												optional
													String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_running_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_terminated {doc 'Details about a terminated container'}
										mandatory
											Integer io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_terminated_exitCode {doc 'Exit status from the last termination of the container'}
										optional
											String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_terminated_containerID {doc 'Container_s ID in the format _<type>:_<container_id>_'}
											io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_terminated_finishedAt {doc 'Time at which the container last terminated'}
												optional
													String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_terminated_finishedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_terminated_message {doc 'Message regarding the last termination of the container'}
											String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_terminated_reason {doc '(brief) reason from the last termination of the container'}
											Integer io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_terminated_signal {doc 'Signal from the last termination of the container'}
											io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_terminated_startedAt {doc 'Time at which previous execution of the container started'}
												optional
													String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_terminated_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_waiting {doc 'Details about a waiting container'}
										optional
											String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_waiting_message {doc 'Message regarding why the container is not yet running'}
											String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_waiting_reason {doc '(brief) reason the container is not yet running'}
							io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_resources {doc 'Resources represents the compute resource requests and limits that have been successfully enacted on the running container after it has been started or has been successfully resized'}
								optional
									io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
										mandatory
											String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
									io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
										alternative
											String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_resources_limits_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
										alternative
											String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_resources_requests_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_started {doc 'Started indicates whether the container has finished its postStart lifecycle hook and passed its startup probe Initialized as false, becomes true after startupProbe is considered successful Resets to false when the container is restarted, or if kubelet loses state temporarily In both cases, startup probes will run again Is always true when no startupProbe is defined and container is running and has passed the postStart lifecycle hook The null value must be treated the same as false'}
							io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state {doc 'State holds details about the container_s current condition'}
								optional
									io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_running {doc 'Details about a running container'}
										optional
											io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_running_startedAt {doc 'Time at which the container was last (re-)started'}
												optional
													String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_running_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_terminated {doc 'Details about a terminated container'}
										mandatory
											Integer io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_terminated_exitCode {doc 'Exit status from the last termination of the container'}
										optional
											String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_terminated_containerID {doc 'Container_s ID in the format _<type>:_<container_id>_'}
											io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_terminated_finishedAt {doc 'Time at which the container last terminated'}
												optional
													String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_terminated_finishedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_terminated_message {doc 'Message regarding the last termination of the container'}
											String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_terminated_reason {doc '(brief) reason from the last termination of the container'}
											Integer io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_terminated_signal {doc 'Signal from the last termination of the container'}
											io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_terminated_startedAt {doc 'Time at which previous execution of the container started'}
												optional
													String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_terminated_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_waiting {doc 'Details about a waiting container'}
										optional
											String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_waiting_message {doc 'Message regarding why the container is not yet running'}
											String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_waiting_reason {doc '(brief) reason the container is not yet running'}
							io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_volumeMounts cardinality [1..*] {doc 'Status of volume mounts'}
								mandatory
									String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_volumeMounts_mountPath {doc 'MountPath corresponds to the original VolumeMount'}
									String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_volumeMounts_name {doc 'Name corresponds to the name of the original VolumeMount'}
								optional
									io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_volumeMounts_readOnly {doc 'ReadOnly corresponds to the original VolumeMount'}
									String io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts) An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result'}
					String io_k8s_api_core_v1_PodStatus_hostIP {doc 'hostIP holds the IP address of the host to which the pod is assigned Empty if the pod has not started yet A pod can be assigned to a node that has a problem in kubelet which in turns mean that HostIP will not be updated even if there is a node is assigned to pod'}
					io_k8s_api_core_v1_PodStatus_hostIPs cardinality [1..*] {doc 'hostIPs holds the IP addresses allocated to the host If this field is specified, the first entry must match the hostIP field This list is empty if the pod has not started yet A pod can be assigned to a node that has a problem in kubelet which in turns means that HostIPs will not be updated even if there is a node is assigned to this pod'}
						optional
							String io_k8s_api_core_v1_PodStatus_hostIPs_ip {doc 'IP is the IP address assigned to the host'}
					io_k8s_api_core_v1_PodStatus_initContainerStatuses cardinality [1..*] {doc 'The list has one entry per init container in the manifest The most recent successful init container will have ready = true, the most recently started container will have startTime set More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status'}
						mandatory
							String io_k8s_api_core_v1_PodStatus_initContainerStatuses_image {doc 'Image is the name of container image that the container is running The container image may not match the image used in the PodSpec, as it may have been resolved by the runtime More info: https:_kubernetesio/docs/concepts/containers/images'}
							String io_k8s_api_core_v1_PodStatus_initContainerStatuses_imageID {doc 'ImageID is the image ID of the container_s image The image ID may not match the image ID of the image used in the PodSpec, as it may have been resolved by the runtime'}
							String io_k8s_api_core_v1_PodStatus_initContainerStatuses_name {doc 'Name is a DNS_LABEL representing the unique name of the container Each container in a pod must have a unique name across all container types Cannot be updated'}
							io_k8s_api_core_v1_PodStatus_initContainerStatuses_ready {default true, doc 'Ready specifies whether the container is currently passing its readiness check The value will change as readiness probes keep executing If no readiness probes are specified, this field defaults to true once the container is fully started (see Started field)The value is typically used to determine whether a container is ready to accept traffic'}
							Integer io_k8s_api_core_v1_PodStatus_initContainerStatuses_restartCount {doc 'RestartCount holds the number of times the container has been restarted Kubelet makes an effort to always increment the value, but there are cases when the state may be lost due to node restarts and then the value may be reset to 0 The value is never negative'}
						optional
							io_k8s_api_core_v1_PodStatus_initContainerStatuses_allocatedResources cardinality [1..*] {doc 'AllocatedResources represents the compute resources allocated for this container by the node Kubelet sets this value to ContainerResourcesRequests upon successful pod admission and after successfully admitting desired pod resize'}
								alternative
									String io_k8s_api_core_v1_PodStatus_initContainerStatuses_allocatedResources_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_PodStatus_initContainerStatuses_allocatedResources_asNumber {doc 'Sub-feature added of type Number'}
							String io_k8s_api_core_v1_PodStatus_initContainerStatuses_containerID {doc 'ContainerID is the ID of the container in the format _<type>:_<container_id>_ Where type is a container runtime identifier, returned from Version call of CRI API (for example containerd)'}
							io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState {doc 'LastTerminationState holds the last termination state of the container to help debug container crashes and restarts This field is not populated if the container is still running and RestartCount is 0'}
								optional
									io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_running {doc 'Details about a running container'}
										optional
											io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_running_startedAt {doc 'Time at which the container was last (re-)started'}
												optional
													String io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_running_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_terminated {doc 'Details about a terminated container'}
										mandatory
											Integer io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_terminated_exitCode {doc 'Exit status from the last termination of the container'}
										optional
											String io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_terminated_containerID {doc 'Container_s ID in the format _<type>:_<container_id>_'}
											io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_terminated_finishedAt {doc 'Time at which the container last terminated'}
												optional
													String io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_terminated_finishedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_terminated_message {doc 'Message regarding the last termination of the container'}
											String io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_terminated_reason {doc '(brief) reason from the last termination of the container'}
											Integer io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_terminated_signal {doc 'Signal from the last termination of the container'}
											io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_terminated_startedAt {doc 'Time at which previous execution of the container started'}
												optional
													String io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_terminated_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_waiting {doc 'Details about a waiting container'}
										optional
											String io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_waiting_message {doc 'Message regarding why the container is not yet running'}
											String io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_waiting_reason {doc '(brief) reason the container is not yet running'}
							io_k8s_api_core_v1_PodStatus_initContainerStatuses_resources {doc 'Resources represents the compute resource requests and limits that have been successfully enacted on the running container after it has been started or has been successfully resized'}
								optional
									io_k8s_api_core_v1_PodStatus_initContainerStatuses_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
										mandatory
											String io_k8s_api_core_v1_PodStatus_initContainerStatuses_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
									io_k8s_api_core_v1_PodStatus_initContainerStatuses_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
										alternative
											String io_k8s_api_core_v1_PodStatus_initContainerStatuses_resources_limits_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_PodStatus_initContainerStatuses_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_PodStatus_initContainerStatuses_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
										alternative
											String io_k8s_api_core_v1_PodStatus_initContainerStatuses_resources_requests_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_PodStatus_initContainerStatuses_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_PodStatus_initContainerStatuses_started {doc 'Started indicates whether the container has finished its postStart lifecycle hook and passed its startup probe Initialized as false, becomes true after startupProbe is considered successful Resets to false when the container is restarted, or if kubelet loses state temporarily In both cases, startup probes will run again Is always true when no startupProbe is defined and container is running and has passed the postStart lifecycle hook The null value must be treated the same as false'}
							io_k8s_api_core_v1_PodStatus_initContainerStatuses_state {doc 'State holds details about the container_s current condition'}
								optional
									io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_running {doc 'Details about a running container'}
										optional
											io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_running_startedAt {doc 'Time at which the container was last (re-)started'}
												optional
													String io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_running_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_terminated {doc 'Details about a terminated container'}
										mandatory
											Integer io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_terminated_exitCode {doc 'Exit status from the last termination of the container'}
										optional
											String io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_terminated_containerID {doc 'Container_s ID in the format _<type>:_<container_id>_'}
											io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_terminated_finishedAt {doc 'Time at which the container last terminated'}
												optional
													String io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_terminated_finishedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_terminated_message {doc 'Message regarding the last termination of the container'}
											String io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_terminated_reason {doc '(brief) reason from the last termination of the container'}
											Integer io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_terminated_signal {doc 'Signal from the last termination of the container'}
											io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_terminated_startedAt {doc 'Time at which previous execution of the container started'}
												optional
													String io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_terminated_startedAt_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_waiting {doc 'Details about a waiting container'}
										optional
											String io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_waiting_message {doc 'Message regarding why the container is not yet running'}
											String io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_waiting_reason {doc '(brief) reason the container is not yet running'}
							io_k8s_api_core_v1_PodStatus_initContainerStatuses_volumeMounts cardinality [1..*] {doc 'Status of volume mounts'}
								mandatory
									String io_k8s_api_core_v1_PodStatus_initContainerStatuses_volumeMounts_mountPath {doc 'MountPath corresponds to the original VolumeMount'}
									String io_k8s_api_core_v1_PodStatus_initContainerStatuses_volumeMounts_name {doc 'Name corresponds to the name of the original VolumeMount'}
								optional
									io_k8s_api_core_v1_PodStatus_initContainerStatuses_volumeMounts_readOnly {doc 'ReadOnly corresponds to the original VolumeMount'}
									String io_k8s_api_core_v1_PodStatus_initContainerStatuses_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts) An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result'}
					String io_k8s_api_core_v1_PodStatus_message {doc 'A human readable message indicating details about why the pod is in this condition'}
					String io_k8s_api_core_v1_PodStatus_nominatedNodeName {doc 'nominatedNodeName is set only when this pod preempts other pods on the node, but it cannot be scheduled right away as preemption victims receive their graceful termination periods This field does not guarantee that the pod will be scheduled on this node Scheduler may decide to place the pod elsewhere if other nodes become available sooner Scheduler may also decide to give the resources on this node to a higher priority pod that is created after preemption As a result, this field may be different than PodSpecnodeName when the pod is scheduled'}
					String io_k8s_api_core_v1_PodStatus_phase {doc 'The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle The conditions array, the reason and message fields, and the individual container status arrays contain more detail about the pod_s status There are five possible phase values:Pending: The pod has been accepted by the Kubernetes system, but one or more of the container images has not been created This includes time before being scheduled as well as time spent downloading images over the network, which could take a while Running: The pod has been bound to a node, and all of the containers have been created At least one container is still running, or is in the process of starting or restarting Succeeded: All containers in the pod have terminated in success, and will not be restarted Failed: All containers in the pod have terminated, and at least one container has terminated in failure The container either exited with non-zero status or was terminated by the system Unknown: For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the podMore info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#pod-phase'}
					String io_k8s_api_core_v1_PodStatus_podIP {doc 'podIP address allocated to the pod Routable at least within the cluster Empty if not yet allocated'}
					io_k8s_api_core_v1_PodStatus_podIPs cardinality [1..*] {doc 'podIPs holds the IP addresses allocated to the pod If this field is specified, the 0th entry must match the podIP field Pods may be allocated at most 1 value for each of IPv4 and IPv6 This list is empty if no IPs have been allocated yet'}
						optional
							String io_k8s_api_core_v1_PodStatus_podIPs_ip {doc 'IP is the IP address assigned to the pod'}
					String io_k8s_api_core_v1_PodStatus_qosClass {doc 'The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-qos/#quality-of-service-classes'}
					String io_k8s_api_core_v1_PodStatus_reason {doc 'A brief CamelCase message indicating details about why the pod is in this state eg _Evicted_'}
					String io_k8s_api_core_v1_PodStatus_resize {doc 'Status of resources resize desired for pod_s containers It is empty if no resources resize is pending Any changes to container resources will automatically set this to Proposed'}
					io_k8s_api_core_v1_PodStatus_resourceClaimStatuses cardinality [1..*] {doc 'Status of resource claims'}
						mandatory
							String io_k8s_api_core_v1_PodStatus_resourceClaimStatuses_name {doc 'Name uniquely identifies this resource claim inside the pod This must match the name of an entry in podspecresourceClaims, which implies that the string must be a DNS_LABEL'}
						optional
							String io_k8s_api_core_v1_PodStatus_resourceClaimStatuses_resourceClaimName {doc 'ResourceClaimName is the name of the ResourceClaim that was generated for the Pod in the namespace of the Pod It this is unset, then generating a ResourceClaim was not necessary The podspecresourceClaims entry can be ignored in this case'}
					io_k8s_api_core_v1_PodStatus_startTime {doc 'RFC 3339 date and time at which the object was acknowledged by the Kubelet This is before the Kubelet pulled the container image(s) for the pod'}
						optional
							String io_k8s_api_core_v1_PodStatus_startTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
			io_k8s_api_core_v1_PodTemplate {doc 'PodTemplate describes a template for creating copies of a predefined pod'}
				optional
					String io_k8s_api_core_v1_PodTemplate_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_PodTemplate_kind {default 'PodTemplate', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_PodTemplate_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_core_v1_PodTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_core_v1_PodTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_PodTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_PodTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_PodTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_PodTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_core_v1_PodTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_core_v1_PodTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_PodTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_PodTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_PodTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_core_v1_PodTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_core_v1_PodTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_core_v1_PodTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_core_v1_PodTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_PodTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_PodTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_core_v1_PodTemplate_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_core_v1_PodTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_core_v1_PodTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_core_v1_PodTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_core_v1_PodTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_core_v1_PodTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_core_v1_PodTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_core_v1_PodTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_core_v1_PodTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_core_v1_PodTemplate_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_core_v1_PodTemplate_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_core_v1_PodTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_PodTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_core_v1_PodTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_core_v1_PodTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_PodTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_PodTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_PodTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_PodTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_core_v1_PodTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_core_v1_PodTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_core_v1_PodTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_PodTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_core_v1_PodTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_core_v1_PodTemplate_template {doc 'Template defines the pods that will be created from this pod template https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							io_k8s_api_core_v1_PodTemplate_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_core_v1_PodTemplate_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_core_v1_PodTemplate_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_PodTemplate_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_PodTemplate_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_PodTemplate_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_PodTemplate_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_core_v1_PodTemplate_template_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_core_v1_PodTemplate_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_PodTemplate_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_PodTemplate_template_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_PodTemplate_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_core_v1_PodTemplate_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_core_v1_PodTemplate_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_core_v1_PodTemplate_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_core_v1_PodTemplate_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_PodTemplate_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_PodTemplate_template_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_core_v1_PodTemplate_template_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_core_v1_PodTemplate_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_core_v1_PodTemplate_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_core_v1_PodTemplate_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_core_v1_PodTemplate_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_core_v1_PodTemplate_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_core_v1_PodTemplate_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_core_v1_PodTemplate_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_core_v1_PodTemplate_template_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_core_v1_PodTemplate_template_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_core_v1_PodTemplate_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_PodTemplate_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_PodTemplate_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_core_v1_PodTemplate_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_PodTemplate_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_core_v1_PodTemplate_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_core_v1_PodTemplate_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_core_v1_PodTemplate_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_core_v1_PodTemplate_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_core_v1_PodTemplate_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_core_v1_PodTemplate_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_PodTemplate_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_core_v1_PodTemplate_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_core_v1_PodTemplate_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									io_k8s_api_core_v1_PodTemplate_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
										mandatory
											String io_k8s_api_core_v1_PodTemplate_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
										optional
											io_k8s_api_core_v1_PodTemplate_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodTemplate_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodTemplate_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_core_v1_PodTemplate_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplate_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_core_v1_PodTemplate_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_core_v1_PodTemplate_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
											io_k8s_api_core_v1_PodTemplate_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_PodTemplate_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
												mandatory
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_core_v1_PodTemplate_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_PodTemplate_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_core_v1_PodTemplate_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_core_v1_PodTemplate_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
											io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_PodTemplate_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_core_v1_PodTemplate_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_core_v1_PodTemplate_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_core_v1_PodTemplate_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_core_v1_PodTemplate_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_core_v1_PodTemplate_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_core_v1_PodTemplate_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_core_v1_PodTemplate_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_core_v1_PodTemplate_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_core_v1_PodTemplate_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
								optional
									Integer io_k8s_api_core_v1_PodTemplate_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
									io_k8s_api_core_v1_PodTemplate_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
										optional
											io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																optional
																	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
													io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																optional
																	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
													io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																optional
																	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																optional
																	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
													io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																optional
																	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																optional
																	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodTemplate_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
									io_k8s_api_core_v1_PodTemplate_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
										optional
											io_k8s_api_core_v1_PodTemplate_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodTemplate_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_dnsConfig_options_name {doc 'Required'}
												optional
													String io_k8s_api_core_v1_PodTemplate_template_spec_dnsConfig_options_value
											io_k8s_api_core_v1_PodTemplate_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodTemplate_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
										alternative
											io_k8s_api_core_v1_PodTemplate_template_spec_dnsPolicy_None {doc 'Specific value: None'}
											io_k8s_api_core_v1_PodTemplate_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
											io_k8s_api_core_v1_PodTemplate_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
											io_k8s_api_core_v1_PodTemplate_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
									io_k8s_api_core_v1_PodTemplate_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
									io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
										mandatory
											String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
										optional
											io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
											io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
												mandatory
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
											io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
											String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
									io_k8s_api_core_v1_PodTemplate_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
										mandatory
											String io_k8s_api_core_v1_PodTemplate_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
										optional
											io_k8s_api_core_v1_PodTemplate_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodTemplate_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
									io_k8s_api_core_v1_PodTemplate_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
									io_k8s_api_core_v1_PodTemplate_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
									io_k8s_api_core_v1_PodTemplate_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
									String io_k8s_api_core_v1_PodTemplate_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
									io_k8s_api_core_v1_PodTemplate_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
										optional
											String io_k8s_api_core_v1_PodTemplate_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_core_v1_PodTemplate_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
										mandatory
											String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
										optional
											io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
											io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
												mandatory
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
											io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
									String io_k8s_api_core_v1_PodTemplate_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
									io_k8s_api_core_v1_PodTemplate_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
										mandatory
											String io_k8s_api_core_v1_PodTemplate_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodTemplate_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
										mandatory
											io_k8s_api_core_v1_PodTemplate_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
												alternative
													io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows {doc 'Specific value: windows'}
													io_k8s_api_core_v1_PodTemplate_template_spec_os_name_linux {doc 'Specific value: linux'}
									io_k8s_api_core_v1_PodTemplate_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
										alternative
											String io_k8s_api_core_v1_PodTemplate_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_PodTemplate_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_PodTemplate_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
										alternative
											io_k8s_api_core_v1_PodTemplate_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
											io_k8s_api_core_v1_PodTemplate_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
									Integer io_k8s_api_core_v1_PodTemplate_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
									String io_k8s_api_core_v1_PodTemplate_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
									io_k8s_api_core_v1_PodTemplate_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
										mandatory
											String io_k8s_api_core_v1_PodTemplate_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
									io_k8s_api_core_v1_PodTemplate_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
										mandatory
											String io_k8s_api_core_v1_PodTemplate_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
										optional
											io_k8s_api_core_v1_PodTemplate_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodTemplate_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_PodTemplate_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
										alternative
											io_k8s_api_core_v1_PodTemplate_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
											io_k8s_api_core_v1_PodTemplate_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
											io_k8s_api_core_v1_PodTemplate_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
									String io_k8s_api_core_v1_PodTemplate_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
									String io_k8s_api_core_v1_PodTemplate_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
									io_k8s_api_core_v1_PodTemplate_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
										mandatory
											String io_k8s_api_core_v1_PodTemplate_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
									io_k8s_api_core_v1_PodTemplate_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
										optional
											io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
												alternative
													io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
													io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												optional
													String io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
											io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
											io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
											io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
												optional
													String io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
													io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
									String io_k8s_api_core_v1_PodTemplate_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
									String io_k8s_api_core_v1_PodTemplate_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
									io_k8s_api_core_v1_PodTemplate_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
									io_k8s_api_core_v1_PodTemplate_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
									String io_k8s_api_core_v1_PodTemplate_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
									Integer io_k8s_api_core_v1_PodTemplate_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
									io_k8s_api_core_v1_PodTemplate_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
										optional
											io_k8s_api_core_v1_PodTemplate_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
												alternative
													io_k8s_api_core_v1_PodTemplate_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
													io_k8s_api_core_v1_PodTemplate_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
													io_k8s_api_core_v1_PodTemplate_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
											String io_k8s_api_core_v1_PodTemplate_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
											io_k8s_api_core_v1_PodTemplate_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
												alternative
													io_k8s_api_core_v1_PodTemplate_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_core_v1_PodTemplate_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
											Integer io_k8s_api_core_v1_PodTemplate_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
											io_k8s_api_core_v1_PodTemplate_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
										mandatory
											Integer io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
											String io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
											String io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
										optional
											io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
											String io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
											String io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
									io_k8s_api_core_v1_PodTemplate_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
										mandatory
											String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
										optional
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
												mandatory
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
												optional
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
														optional
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
												optional
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
												optional
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplate_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
												optional
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
														alternative
															String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
														mandatory
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																optional
																	io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																		optional
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																		optional
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																		optional
																			io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				alternative
																					String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				alternative
																					String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																		optional
																			io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																optional
																	io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																		optional
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																		optional
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																		optional
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																		optional
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																			io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																				optional
																					io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																			io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																				alternative
																					io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																			io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																				optional
																					String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																		optional
																			io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																			io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
												optional
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
												optional
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
												optional
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
														optional
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																optional
																	io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																		optional
																			io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																optional
																	io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																optional
																	io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																		optional
																			io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			Integer io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																optional
																	io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																			String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																optional
																	String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																	Integer io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
												optional
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
												optional
													Integer io_k8s_api_core_v1_PodTemplate_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
														mandatory
															String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
															String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
														optional
															Integer io_k8s_api_core_v1_PodTemplate_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
														optional
															String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
											io_k8s_api_core_v1_PodTemplate_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
												optional
													io_k8s_api_core_v1_PodTemplate_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodTemplate_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
													String io_k8s_api_core_v1_PodTemplate_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
			io_k8s_api_core_v1_PodTemplateList {doc 'PodTemplateList is a list of PodTemplates'}
				mandatory
					io_k8s_api_core_v1_PodTemplateList_items cardinality [1..*] {doc 'List of pod templates'}
						optional
							String io_k8s_api_core_v1_PodTemplateList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_core_v1_PodTemplateList_items_kind {default 'PodTemplate', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_core_v1_PodTemplateList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_core_v1_PodTemplateList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_core_v1_PodTemplateList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_PodTemplateList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_PodTemplateList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_PodTemplateList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_PodTemplateList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_core_v1_PodTemplateList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_core_v1_PodTemplateList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_PodTemplateList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_PodTemplateList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_core_v1_PodTemplateList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_core_v1_PodTemplateList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_core_v1_PodTemplateList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_PodTemplateList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_PodTemplateList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_core_v1_PodTemplateList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_core_v1_PodTemplateList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_core_v1_PodTemplateList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_core_v1_PodTemplateList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_core_v1_PodTemplateList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_core_v1_PodTemplateList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_core_v1_PodTemplateList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_core_v1_PodTemplateList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_core_v1_PodTemplateList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_core_v1_PodTemplateList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_core_v1_PodTemplateList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_core_v1_PodTemplateList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_PodTemplateList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_PodTemplateList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_core_v1_PodTemplateList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_core_v1_PodTemplateList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_core_v1_PodTemplateList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_core_v1_PodTemplateList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_core_v1_PodTemplateList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_core_v1_PodTemplateList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_core_v1_PodTemplateList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_PodTemplateList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_core_v1_PodTemplateList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_core_v1_PodTemplateList_items_template {doc 'Template defines the pods that will be created from this pod template https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								optional
									io_k8s_api_core_v1_PodTemplateList_items_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											io_k8s_api_core_v1_PodTemplateList_items_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
												optional
													String io_k8s_api_core_v1_PodTemplateList_items_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_core_v1_PodTemplateList_items_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_core_v1_PodTemplateList_items_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_core_v1_PodTemplateList_items_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
											Integer io_k8s_api_core_v1_PodTemplateList_items_template_metadata_deletionGracePeriodSeconds {doc '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'}
											io_k8s_api_core_v1_PodTemplateList_items_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_core_v1_PodTemplateList_items_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_PodTemplateList_items_template_metadata_finalizers cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateList_items_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											String io_k8s_api_core_v1_PodTemplateList_items_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
											Integer io_k8s_api_core_v1_PodTemplateList_items_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
											io_k8s_api_core_v1_PodTemplateList_items_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateList_items_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_core_v1_PodTemplateList_items_template_metadata_managedFields cardinality [1..*] {doc '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'}
												optional
													String io_k8s_api_core_v1_PodTemplateList_items_template_metadata_managedFields_apiVersion {doc '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'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
													io_k8s_api_core_v1_PodTemplateList_items_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
															io_k8s_api_core_v1_PodTemplateList_items_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
													io_k8s_api_core_v1_PodTemplateList_items_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
														alternative
															io_k8s_api_core_v1_PodTemplateList_items_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
															io_k8s_api_core_v1_PodTemplateList_items_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_metadata_managedFields_subresource {doc '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'}
													io_k8s_api_core_v1_PodTemplateList_items_template_metadata_managedFields_time {doc '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'}
														optional
															String io_k8s_api_core_v1_PodTemplateList_items_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_core_v1_PodTemplateList_items_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_core_v1_PodTemplateList_items_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
											io_k8s_api_core_v1_PodTemplateList_items_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateList_items_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
												optional
													io_k8s_api_core_v1_PodTemplateList_items_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
													io_k8s_api_core_v1_PodTemplateList_items_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
											String io_k8s_api_core_v1_PodTemplateList_items_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
											String io_k8s_api_core_v1_PodTemplateList_items_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
											String io_k8s_api_core_v1_PodTemplateList_items_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
									io_k8s_api_core_v1_PodTemplateList_items_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
										mandatory
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
												optional
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
										optional
											Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
												optional
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																		optional
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																		optional
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
												optional
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_dnsConfig_options_name {doc 'Required'}
														optional
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_dnsConfig_options_value
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
												alternative
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_dnsPolicy_None {doc 'Specific value: None'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
												optional
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
												optional
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
											String io_k8s_api_core_v1_PodTemplateList_items_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
												optional
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
												optional
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
											String io_k8s_api_core_v1_PodTemplateList_items_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
												mandatory
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
														alternative
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows {doc 'Specific value: windows'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_linux {doc 'Specific value: linux'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
												alternative
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
												alternative
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
											Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
											String io_k8s_api_core_v1_PodTemplateList_items_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
												optional
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
												alternative
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
											String io_k8s_api_core_v1_PodTemplateList_items_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
											String io_k8s_api_core_v1_PodTemplateList_items_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
												optional
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
														alternative
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											String io_k8s_api_core_v1_PodTemplateList_items_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
											String io_k8s_api_core_v1_PodTemplateList_items_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
											String io_k8s_api_core_v1_PodTemplateList_items_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
											Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
												optional
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
														alternative
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
														alternative
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
													Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
												mandatory
													Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
												optional
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
											io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
												optional
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
														mandatory
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
														optional
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
														optional
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																optional
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
														optional
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
														optional
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
														optional
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																alternative
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
																mandatory
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																		optional
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																				optional
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																				optional
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																				optional
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																						alternative
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																						alternative
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																				optional
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																		optional
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																				optional
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																				optional
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																				optional
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																				optional
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																						optional
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																						alternative
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																						optional
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																				optional
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
														optional
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
														optional
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
														optional
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
																optional
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																		optional
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																				optional
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																		optional
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																				optional
																					Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																		optional
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																				optional
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																						optional
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																					Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																						mandatory
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																						optional
																							String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																							io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																								alternative
																									String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																		optional
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																					String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																				optional
																					Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																			Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
														optional
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
														optional
															Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																optional
																	Integer io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
																optional
																	String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
													io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
														optional
															io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
															String io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
				optional
					String io_k8s_api_core_v1_PodTemplateList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_PodTemplateList_kind {default 'PodTemplateList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_PodTemplateList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_core_v1_PodTemplateList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_core_v1_PodTemplateList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_core_v1_PodTemplateList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_PodTemplateList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_core_v1_PodTemplateSpec {doc 'PodTemplateSpec describes the data a pod should have when created from a template'}
				optional
					io_k8s_api_core_v1_PodTemplateSpec_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_core_v1_PodTemplateSpec_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_core_v1_PodTemplateSpec_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_PodTemplateSpec_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_PodTemplateSpec_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_PodTemplateSpec_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_PodTemplateSpec_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_core_v1_PodTemplateSpec_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_core_v1_PodTemplateSpec_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_PodTemplateSpec_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_PodTemplateSpec_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_PodTemplateSpec_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_core_v1_PodTemplateSpec_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_core_v1_PodTemplateSpec_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_core_v1_PodTemplateSpec_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_core_v1_PodTemplateSpec_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_PodTemplateSpec_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_PodTemplateSpec_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_core_v1_PodTemplateSpec_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_core_v1_PodTemplateSpec_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_core_v1_PodTemplateSpec_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_core_v1_PodTemplateSpec_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_core_v1_PodTemplateSpec_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_core_v1_PodTemplateSpec_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_core_v1_PodTemplateSpec_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_core_v1_PodTemplateSpec_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_core_v1_PodTemplateSpec_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_core_v1_PodTemplateSpec_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_core_v1_PodTemplateSpec_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_PodTemplateSpec_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_core_v1_PodTemplateSpec_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_core_v1_PodTemplateSpec_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_PodTemplateSpec_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_PodTemplateSpec_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_PodTemplateSpec_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_PodTemplateSpec_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_core_v1_PodTemplateSpec_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_core_v1_PodTemplateSpec_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_core_v1_PodTemplateSpec_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_PodTemplateSpec_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_core_v1_PodTemplateSpec_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_core_v1_PodTemplateSpec_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						mandatory
							io_k8s_api_core_v1_PodTemplateSpec_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
								mandatory
									String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
								optional
									io_k8s_api_core_v1_PodTemplateSpec_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
										optional
											String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																alternative
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
									String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
										alternative
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
														mandatory
															io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
														mandatory
															io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
												mandatory
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
										mandatory
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
										optional
											String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
												mandatory
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
										mandatory
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
									String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
														alternative
															io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
														mandatory
															io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
														alternative
															io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
														mandatory
															io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
												mandatory
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
									String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
									String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
										optional
											String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
									String io_k8s_api_core_v1_PodTemplateSpec_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
						optional
							Integer io_k8s_api_core_v1_PodTemplateSpec_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
								optional
									io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
														optional
															io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																		alternative
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																		alternative
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
														optional
															io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																		alternative
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																		alternative
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
														optional
															io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																optional
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																optional
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
														optional
															io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
														optional
															io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
														optional
															io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																optional
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																optional
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
														optional
															io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
														optional
															io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
								optional
									io_k8s_api_core_v1_PodTemplateSpec_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_dnsConfig_options_name {doc 'Required'}
										optional
											String io_k8s_api_core_v1_PodTemplateSpec_spec_dnsConfig_options_value
									io_k8s_api_core_v1_PodTemplateSpec_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
								alternative
									io_k8s_api_core_v1_PodTemplateSpec_spec_dnsPolicy_None {doc 'Specific value: None'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_dnsPolicy_Default {doc 'Specific value: Default'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
								mandatory
									String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
								optional
									io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
										optional
											String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																alternative
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
									String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
										alternative
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
														mandatory
															io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
														mandatory
															io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
												mandatory
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
										mandatory
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
										optional
											String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
												mandatory
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
										mandatory
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
									String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
														alternative
															io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
														mandatory
															io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
														alternative
															io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
														mandatory
															io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
												mandatory
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
									String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
									String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
									String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
										optional
											String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
									String io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
								mandatory
									String io_k8s_api_core_v1_PodTemplateSpec_spec_hostAliases_ip {doc 'IP address of the host file entry'}
								optional
									io_k8s_api_core_v1_PodTemplateSpec_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
							String io_k8s_api_core_v1_PodTemplateSpec_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
								optional
									String io_k8s_api_core_v1_PodTemplateSpec_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
								mandatory
									String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
								optional
									io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
										optional
											String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																alternative
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
									String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
										alternative
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
														mandatory
															io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
														mandatory
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
														mandatory
															io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
												mandatory
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
										mandatory
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
										optional
											String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
												mandatory
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
										mandatory
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												alternative
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
									String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
														alternative
															io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
														mandatory
															io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
														alternative
															io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
														mandatory
															io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
												mandatory
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
														alternative
															String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
									String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
									String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
										optional
											String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
									String io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
							String io_k8s_api_core_v1_PodTemplateSpec_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
								mandatory
									String io_k8s_api_core_v1_PodTemplateSpec_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
								mandatory
									io_k8s_api_core_v1_PodTemplateSpec_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
										alternative
											io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows {doc 'Specific value: windows'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_linux {doc 'Specific value: linux'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
								alternative
									String io_k8s_api_core_v1_PodTemplateSpec_spec_overhead_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_PodTemplateSpec_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
								alternative
									io_k8s_api_core_v1_PodTemplateSpec_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
							Integer io_k8s_api_core_v1_PodTemplateSpec_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
							String io_k8s_api_core_v1_PodTemplateSpec_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
								mandatory
									String io_k8s_api_core_v1_PodTemplateSpec_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
								mandatory
									String io_k8s_api_core_v1_PodTemplateSpec_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
								optional
									io_k8s_api_core_v1_PodTemplateSpec_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
								alternative
									io_k8s_api_core_v1_PodTemplateSpec_spec_restartPolicy_Never {doc 'Specific value: Never'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_restartPolicy_Always {doc 'Specific value: Always'}
							String io_k8s_api_core_v1_PodTemplateSpec_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
							String io_k8s_api_core_v1_PodTemplateSpec_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
								mandatory
									String io_k8s_api_core_v1_PodTemplateSpec_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
								optional
									io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
										mandatory
											io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
										mandatory
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
										alternative
											io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
										mandatory
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
										mandatory
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
										optional
											String io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
										mandatory
											io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
										mandatory
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
										optional
											String io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
							String io_k8s_api_core_v1_PodTemplateSpec_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
							String io_k8s_api_core_v1_PodTemplateSpec_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
							String io_k8s_api_core_v1_PodTemplateSpec_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
							Integer io_k8s_api_core_v1_PodTemplateSpec_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
								optional
									io_k8s_api_core_v1_PodTemplateSpec_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
										alternative
											io_k8s_api_core_v1_PodTemplateSpec_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
									String io_k8s_api_core_v1_PodTemplateSpec_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
										alternative
											io_k8s_api_core_v1_PodTemplateSpec_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
									Integer io_k8s_api_core_v1_PodTemplateSpec_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
								mandatory
									Integer io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
									String io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
									String io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
								optional
									io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									Integer io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
									String io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
									String io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
							io_k8s_api_core_v1_PodTemplateSpec_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
								mandatory
									String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
								optional
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
										mandatory
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
										optional
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_configMap_items_key {doc 'key is the key to project'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
												optional
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
										optional
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
										optional
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																alternative
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
										optional
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
												alternative
													String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
												mandatory
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
														optional
															io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																optional
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																optional
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																optional
																	io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																optional
																	io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
														optional
															io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																optional
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																optional
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																	io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																optional
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																optional
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																	io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																		optional
																			io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																	io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																		alternative
																			io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																	io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																optional
																	io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																	io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
										optional
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
										optional
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
										optional
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
												optional
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
														optional
															io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																optional
																	io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
														optional
															io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																optional
																	Integer io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
														optional
															io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																optional
																	io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	Integer io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																		mandatory
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
														optional
															io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																mandatory
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																	String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																optional
																	Integer io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
														mandatory
															String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
														optional
															String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
															Integer io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
										optional
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
										optional
											Integer io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
												mandatory
													String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_secret_items_key {doc 'key is the key to project'}
													String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
												optional
													Integer io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
												optional
													String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
									io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
										mandatory
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
										optional
											io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
											String io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
			io_k8s_api_core_v1_PortStatus {doc 'Auto doc generate for not add empty Strings No descripcion in schemas JSON'}
				mandatory
					Integer io_k8s_api_core_v1_PortStatus_port {doc 'Port is the port number of the service port of which status is recorded here'}
					io_k8s_api_core_v1_PortStatus_protocol {doc 'Protocol is the protocol of the service port of which status is recorded here The supported values are: TCP, UDP, SCTP'}
						alternative
							io_k8s_api_core_v1_PortStatus_protocol_SCTP {doc 'Specific value: SCTP'}
							io_k8s_api_core_v1_PortStatus_protocol_TCP {doc 'Specific value: TCP'}
							io_k8s_api_core_v1_PortStatus_protocol_UDP {doc 'Specific value: UDP'}
				optional
					String io_k8s_api_core_v1_PortStatus_error {doc 'Error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use  CamelCase names- cloud provider specific error values must have names that comply with the  format fooexamplecom/CamelCase'}
			io_k8s_api_core_v1_PortworxVolumeSource {doc 'PortworxVolumeSource represents a Portworx volume resource'}
				mandatory
					String io_k8s_api_core_v1_PortworxVolumeSource_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
				optional
					io_k8s_api_core_v1_PortworxVolumeSource_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
						alternative
							io_k8s_api_core_v1_PortworxVolumeSource_fsType_xfs {doc 'Specific value: xfs'}
							io_k8s_api_core_v1_PortworxVolumeSource_fsType_ext4 {default, doc 'Specific value: ext4'}
					io_k8s_api_core_v1_PortworxVolumeSource_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
			io_k8s_api_core_v1_PreferredSchedulingTerm {doc 'An empty preferred scheduling term matches all objects with implicit weight 0 (ie it_s a no-op) A null preferred scheduling term matches no objects (ie is also a no-op)'}
				mandatory
					io_k8s_api_core_v1_PreferredSchedulingTerm_preference {doc 'A node selector term, associated with the corresponding weight'}
						optional
							io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
								mandatory
									String io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
									io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
										alternative
											io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
											io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
											io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
								mandatory
									String io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchFields_key {doc 'The label key that the selector applies to'}
									io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
										alternative
											io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
											io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchFields_operator_In {doc 'Specific value: In'}
											io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
											io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					Integer io_k8s_api_core_v1_PreferredSchedulingTerm_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
			io_k8s_api_core_v1_Probe {doc 'Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic'}
				optional
					io_k8s_api_core_v1_Probe_exec {doc 'Exec specifies the action to take'}
						optional
							io_k8s_api_core_v1_Probe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
								mandatory
									String io_k8s_api_core_v1_Probe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					Integer io_k8s_api_core_v1_Probe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
					io_k8s_api_core_v1_Probe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
						mandatory
							Integer io_k8s_api_core_v1_Probe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
						optional
							String io_k8s_api_core_v1_Probe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
					io_k8s_api_core_v1_Probe_httpGet {doc 'HTTPGet specifies the http request to perform'}
						mandatory
							io_k8s_api_core_v1_Probe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
								alternative
									String io_k8s_api_core_v1_Probe_httpGet_port_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_Probe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
						optional
							String io_k8s_api_core_v1_Probe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
							io_k8s_api_core_v1_Probe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
								mandatory
									String io_k8s_api_core_v1_Probe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
									String io_k8s_api_core_v1_Probe_httpGet_httpHeaders_value {doc 'The header field value'}
							String io_k8s_api_core_v1_Probe_httpGet_path {doc 'Path to access on the HTTP server'}
							String io_k8s_api_core_v1_Probe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
					Integer io_k8s_api_core_v1_Probe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
					Integer io_k8s_api_core_v1_Probe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
					Integer io_k8s_api_core_v1_Probe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
					io_k8s_api_core_v1_Probe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
						mandatory
							io_k8s_api_core_v1_Probe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
								alternative
									String io_k8s_api_core_v1_Probe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_Probe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
						optional
							String io_k8s_api_core_v1_Probe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
					Integer io_k8s_api_core_v1_Probe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
					Integer io_k8s_api_core_v1_Probe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
			io_k8s_api_core_v1_ProjectedVolumeSource {doc 'Represents a projected volume source'}
				optional
					Integer io_k8s_api_core_v1_ProjectedVolumeSource_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
					io_k8s_api_core_v1_ProjectedVolumeSource_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
						optional
							io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
								mandatory
									String io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
								optional
									io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
										optional
											io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
									io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
									String io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
							io_k8s_api_core_v1_ProjectedVolumeSource_sources_configMap {doc 'configMap information about the configMap data to project'}
								optional
									io_k8s_api_core_v1_ProjectedVolumeSource_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
										mandatory
											String io_k8s_api_core_v1_ProjectedVolumeSource_sources_configMap_items_key {doc 'key is the key to project'}
											String io_k8s_api_core_v1_ProjectedVolumeSource_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
										optional
											Integer io_k8s_api_core_v1_ProjectedVolumeSource_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
									String io_k8s_api_core_v1_ProjectedVolumeSource_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_core_v1_ProjectedVolumeSource_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
							io_k8s_api_core_v1_ProjectedVolumeSource_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
								optional
									io_k8s_api_core_v1_ProjectedVolumeSource_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
										mandatory
											String io_k8s_api_core_v1_ProjectedVolumeSource_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
										optional
											io_k8s_api_core_v1_ProjectedVolumeSource_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
												mandatory
													String io_k8s_api_core_v1_ProjectedVolumeSource_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
												optional
													String io_k8s_api_core_v1_ProjectedVolumeSource_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
											Integer io_k8s_api_core_v1_ProjectedVolumeSource_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
											io_k8s_api_core_v1_ProjectedVolumeSource_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
												mandatory
													String io_k8s_api_core_v1_ProjectedVolumeSource_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
												optional
													String io_k8s_api_core_v1_ProjectedVolumeSource_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
													io_k8s_api_core_v1_ProjectedVolumeSource_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
														alternative
															String io_k8s_api_core_v1_ProjectedVolumeSource_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_ProjectedVolumeSource_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_ProjectedVolumeSource_sources_secret {doc 'secret information about the secret data to project'}
								optional
									io_k8s_api_core_v1_ProjectedVolumeSource_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
										mandatory
											String io_k8s_api_core_v1_ProjectedVolumeSource_sources_secret_items_key {doc 'key is the key to project'}
											String io_k8s_api_core_v1_ProjectedVolumeSource_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
										optional
											Integer io_k8s_api_core_v1_ProjectedVolumeSource_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
									String io_k8s_api_core_v1_ProjectedVolumeSource_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_core_v1_ProjectedVolumeSource_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
							io_k8s_api_core_v1_ProjectedVolumeSource_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
								mandatory
									String io_k8s_api_core_v1_ProjectedVolumeSource_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
								optional
									String io_k8s_api_core_v1_ProjectedVolumeSource_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
									Integer io_k8s_api_core_v1_ProjectedVolumeSource_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
			io_k8s_api_core_v1_QuobyteVolumeSource {doc 'Represents a Quobyte mount that lasts the lifetime of a pod Quobyte volumes do not support ownership management or SELinux relabeling'}
				mandatory
					String io_k8s_api_core_v1_QuobyteVolumeSource_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
					String io_k8s_api_core_v1_QuobyteVolumeSource_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
				optional
					String io_k8s_api_core_v1_QuobyteVolumeSource_group {doc 'group to map volume access to Default is no group'}
					io_k8s_api_core_v1_QuobyteVolumeSource_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
					String io_k8s_api_core_v1_QuobyteVolumeSource_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
					String io_k8s_api_core_v1_QuobyteVolumeSource_user {doc 'user to map volume access to Defaults to serivceaccount user'}
			io_k8s_api_core_v1_RBDPersistentVolumeSource {doc 'Represents a Rados Block Device mount that lasts the lifetime of a pod RBD volumes support ownership management and SELinux relabeling'}
				mandatory
					String io_k8s_api_core_v1_RBDPersistentVolumeSource_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
					io_k8s_api_core_v1_RBDPersistentVolumeSource_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
						mandatory
							String io_k8s_api_core_v1_RBDPersistentVolumeSource_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					io_k8s_api_core_v1_RBDPersistentVolumeSource_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
						alternative
							io_k8s_api_core_v1_RBDPersistentVolumeSource_fsType_xfs {doc 'Specific value: xfs'}
							io_k8s_api_core_v1_RBDPersistentVolumeSource_fsType_ext4 {default, doc 'Specific value: ext4'}
							io_k8s_api_core_v1_RBDPersistentVolumeSource_fsType_ntfs {doc 'Specific value: ntfs'}
					String io_k8s_api_core_v1_RBDPersistentVolumeSource_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
					String io_k8s_api_core_v1_RBDPersistentVolumeSource_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
					io_k8s_api_core_v1_RBDPersistentVolumeSource_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
					io_k8s_api_core_v1_RBDPersistentVolumeSource_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
						optional
							String io_k8s_api_core_v1_RBDPersistentVolumeSource_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
							String io_k8s_api_core_v1_RBDPersistentVolumeSource_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
					String io_k8s_api_core_v1_RBDPersistentVolumeSource_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
			io_k8s_api_core_v1_RBDVolumeSource {doc 'Represents a Rados Block Device mount that lasts the lifetime of a pod RBD volumes support ownership management and SELinux relabeling'}
				mandatory
					String io_k8s_api_core_v1_RBDVolumeSource_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
					io_k8s_api_core_v1_RBDVolumeSource_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
						mandatory
							String io_k8s_api_core_v1_RBDVolumeSource_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					io_k8s_api_core_v1_RBDVolumeSource_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
						alternative
							io_k8s_api_core_v1_RBDVolumeSource_fsType_xfs {doc 'Specific value: xfs'}
							io_k8s_api_core_v1_RBDVolumeSource_fsType_ext4 {default, doc 'Specific value: ext4'}
							io_k8s_api_core_v1_RBDVolumeSource_fsType_ntfs {doc 'Specific value: ntfs'}
					String io_k8s_api_core_v1_RBDVolumeSource_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
					String io_k8s_api_core_v1_RBDVolumeSource_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
					io_k8s_api_core_v1_RBDVolumeSource_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
					io_k8s_api_core_v1_RBDVolumeSource_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
						optional
							String io_k8s_api_core_v1_RBDVolumeSource_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
					String io_k8s_api_core_v1_RBDVolumeSource_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
			io_k8s_api_core_v1_ReplicationController {doc 'ReplicationController represents the configuration of a replication controller'}
				optional
					String io_k8s_api_core_v1_ReplicationController_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_ReplicationController_kind {default 'ReplicationController', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_ReplicationController_metadata {doc 'If the Labels of a ReplicationController are empty, they are defaulted to be the same as the Pod(s) that the replication controller manages Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_core_v1_ReplicationController_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_core_v1_ReplicationController_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_ReplicationController_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_ReplicationController_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_ReplicationController_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_ReplicationController_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_core_v1_ReplicationController_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_core_v1_ReplicationController_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_ReplicationController_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_ReplicationController_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_ReplicationController_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_core_v1_ReplicationController_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_core_v1_ReplicationController_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_core_v1_ReplicationController_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_core_v1_ReplicationController_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_ReplicationController_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_ReplicationController_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_core_v1_ReplicationController_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_core_v1_ReplicationController_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_core_v1_ReplicationController_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_core_v1_ReplicationController_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_core_v1_ReplicationController_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_core_v1_ReplicationController_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_core_v1_ReplicationController_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_core_v1_ReplicationController_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_core_v1_ReplicationController_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_core_v1_ReplicationController_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_core_v1_ReplicationController_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_core_v1_ReplicationController_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_ReplicationController_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_core_v1_ReplicationController_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_core_v1_ReplicationController_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_ReplicationController_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_ReplicationController_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_ReplicationController_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_ReplicationController_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_core_v1_ReplicationController_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_core_v1_ReplicationController_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_core_v1_ReplicationController_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_ReplicationController_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_core_v1_ReplicationController_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_core_v1_ReplicationController_spec {doc 'Spec defines the specification of the desired behavior of the replication controller More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							Integer io_k8s_api_core_v1_ReplicationController_spec_minReadySeconds {default 0, doc 'Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available Defaults to 0 (pod will be considered available as soon as it is ready)'}
							Integer io_k8s_api_core_v1_ReplicationController_spec_replicas {default 1, doc 'Replicas is the number of desired replicas This is a pointer to distinguish between explicit zero and unspecified Defaults to 1 More info: https:_kubernetesio/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller'}
							io_k8s_api_core_v1_ReplicationController_spec_selector cardinality [1..*] {doc 'Selector is a label query over pods that should match the Replicas count If Selector is empty, it is defaulted to the labels present on the Pod template Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/#label-selectors'}
								mandatory
									String io_k8s_api_core_v1_ReplicationController_spec_selector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_ReplicationController_spec_template {doc 'Template is the object that describes the pod that will be created if insufficient replicas are detected This takes precedence over a TemplateRef The only allowed templatespecrestartPolicy value is Always More info: https:_kubernetesio/docs/concepts/workloads/controllers/replicationcontroller#pod-template'}
								optional
									io_k8s_api_core_v1_ReplicationController_spec_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											io_k8s_api_core_v1_ReplicationController_spec_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
												optional
													String io_k8s_api_core_v1_ReplicationController_spec_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_core_v1_ReplicationController_spec_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_core_v1_ReplicationController_spec_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_core_v1_ReplicationController_spec_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
											Integer io_k8s_api_core_v1_ReplicationController_spec_template_metadata_deletionGracePeriodSeconds {doc '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'}
											io_k8s_api_core_v1_ReplicationController_spec_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_core_v1_ReplicationController_spec_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_ReplicationController_spec_template_metadata_finalizers cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_core_v1_ReplicationController_spec_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											String io_k8s_api_core_v1_ReplicationController_spec_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
											Integer io_k8s_api_core_v1_ReplicationController_spec_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
											io_k8s_api_core_v1_ReplicationController_spec_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
												mandatory
													String io_k8s_api_core_v1_ReplicationController_spec_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_core_v1_ReplicationController_spec_template_metadata_managedFields cardinality [1..*] {doc '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'}
												optional
													String io_k8s_api_core_v1_ReplicationController_spec_template_metadata_managedFields_apiVersion {doc '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'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
													io_k8s_api_core_v1_ReplicationController_spec_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
															io_k8s_api_core_v1_ReplicationController_spec_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
													io_k8s_api_core_v1_ReplicationController_spec_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
														alternative
															io_k8s_api_core_v1_ReplicationController_spec_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
															io_k8s_api_core_v1_ReplicationController_spec_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_metadata_managedFields_subresource {doc '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'}
													io_k8s_api_core_v1_ReplicationController_spec_template_metadata_managedFields_time {doc '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'}
														optional
															String io_k8s_api_core_v1_ReplicationController_spec_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_core_v1_ReplicationController_spec_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_core_v1_ReplicationController_spec_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
											io_k8s_api_core_v1_ReplicationController_spec_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_core_v1_ReplicationController_spec_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
												optional
													io_k8s_api_core_v1_ReplicationController_spec_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
													io_k8s_api_core_v1_ReplicationController_spec_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
											String io_k8s_api_core_v1_ReplicationController_spec_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
											String io_k8s_api_core_v1_ReplicationController_spec_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
											String io_k8s_api_core_v1_ReplicationController_spec_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
									io_k8s_api_core_v1_ReplicationController_spec_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
										mandatory
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
												mandatory
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
												optional
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
														mandatory
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
										optional
											Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
												optional
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																		optional
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																		optional
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
												optional
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_dnsConfig_options_name {doc 'Required'}
														optional
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_dnsConfig_options_value
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
												alternative
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_dnsPolicy_None {doc 'Specific value: None'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
												mandatory
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
												optional
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
														mandatory
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
												mandatory
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
												optional
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
											String io_k8s_api_core_v1_ReplicationController_spec_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
												optional
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
												mandatory
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
												optional
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
														optional
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
														alternative
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																		mandatory
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
														mandatory
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
														optional
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
														mandatory
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																alternative
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
														optional
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
											String io_k8s_api_core_v1_ReplicationController_spec_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
												mandatory
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
												mandatory
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
														alternative
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows {doc 'Specific value: windows'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_linux {doc 'Specific value: linux'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
												alternative
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
												alternative
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
											Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
											String io_k8s_api_core_v1_ReplicationController_spec_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
												mandatory
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
												mandatory
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
												optional
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
												alternative
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
											String io_k8s_api_core_v1_ReplicationController_spec_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
											String io_k8s_api_core_v1_ReplicationController_spec_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
												mandatory
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
												optional
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
														alternative
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											String io_k8s_api_core_v1_ReplicationController_spec_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
											String io_k8s_api_core_v1_ReplicationController_spec_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
											String io_k8s_api_core_v1_ReplicationController_spec_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
											Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
												optional
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
														alternative
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
														alternative
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
													Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
												mandatory
													Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
												optional
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
											io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
												mandatory
													String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
												optional
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
														mandatory
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
														optional
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
														optional
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																optional
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
														optional
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
														optional
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
														optional
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																alternative
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
																mandatory
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																		optional
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																				optional
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																				optional
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																				optional
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																						alternative
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																						alternative
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																				optional
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																		optional
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																				optional
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																				optional
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																				optional
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																				optional
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																						optional
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																						alternative
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																						optional
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																				optional
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
														optional
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
														optional
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
														optional
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
																optional
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																		optional
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																				optional
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																		optional
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																				optional
																					Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																		optional
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																				optional
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																						optional
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																					Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																						optional
																							String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																							io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																								alternative
																									String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																		optional
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																					String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																				optional
																					Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																		optional
																			String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																			Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
														optional
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
														optional
															Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																optional
																	Integer io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
																optional
																	String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
													io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
														optional
															io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
															String io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
					io_k8s_api_core_v1_ReplicationController_status {doc 'Status is the most recently observed status of the replication controller This data may be out of date by some window of time Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						mandatory
							Integer io_k8s_api_core_v1_ReplicationController_status_replicas {doc 'Replicas is the most recently observed number of replicas More info: https:_kubernetesio/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller'}
						optional
							Integer io_k8s_api_core_v1_ReplicationController_status_availableReplicas {doc 'The number of available replicas (ready for at least minReadySeconds) for this replication controller'}
							io_k8s_api_core_v1_ReplicationController_status_conditions cardinality [1..*] {doc 'Represents the latest available observations of a replication controller_s current state'}
								mandatory
									io_k8s_api_core_v1_ReplicationController_status_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
										alternative
											io_k8s_api_core_v1_ReplicationController_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_core_v1_ReplicationController_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_core_v1_ReplicationController_status_conditions_status_True {doc 'Specific value: True'}
									String io_k8s_api_core_v1_ReplicationController_status_conditions_type {doc 'Type of replication controller condition'}
								optional
									io_k8s_api_core_v1_ReplicationController_status_conditions_lastTransitionTime {doc 'The last time the condition transitioned from one status to another'}
										optional
											String io_k8s_api_core_v1_ReplicationController_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_ReplicationController_status_conditions_message {doc 'A human readable message indicating details about the transition'}
									String io_k8s_api_core_v1_ReplicationController_status_conditions_reason {doc 'The reason for the condition_s last transition'}
							Integer io_k8s_api_core_v1_ReplicationController_status_fullyLabeledReplicas {doc 'The number of pods that have labels matching the labels of the pod template of the replication controller'}
							Integer io_k8s_api_core_v1_ReplicationController_status_observedGeneration {doc 'ObservedGeneration reflects the generation of the most recently observed replication controller'}
							Integer io_k8s_api_core_v1_ReplicationController_status_readyReplicas {doc 'The number of ready replicas for this replication controller'}
			io_k8s_api_core_v1_ReplicationControllerCondition {doc 'ReplicationControllerCondition describes the state of a replication controller at a certain point'}
				mandatory
					io_k8s_api_core_v1_ReplicationControllerCondition_status {doc 'Status of the condition, one of True, False, Unknown'}
						alternative
							io_k8s_api_core_v1_ReplicationControllerCondition_status_Unknown {doc 'Specific value: Unknown'}
							io_k8s_api_core_v1_ReplicationControllerCondition_status_False {doc 'Specific value: False'}
							io_k8s_api_core_v1_ReplicationControllerCondition_status_True {doc 'Specific value: True'}
					String io_k8s_api_core_v1_ReplicationControllerCondition_type {doc 'Type of replication controller condition'}
				optional
					io_k8s_api_core_v1_ReplicationControllerCondition_lastTransitionTime {doc 'The last time the condition transitioned from one status to another'}
						optional
							String io_k8s_api_core_v1_ReplicationControllerCondition_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_api_core_v1_ReplicationControllerCondition_message {doc 'A human readable message indicating details about the transition'}
					String io_k8s_api_core_v1_ReplicationControllerCondition_reason {doc 'The reason for the condition_s last transition'}
			io_k8s_api_core_v1_ReplicationControllerList {doc 'ReplicationControllerList is a collection of replication controllers'}
				mandatory
					io_k8s_api_core_v1_ReplicationControllerList_items cardinality [1..*] {doc 'List of replication controllers More info: https:_kubernetesio/docs/concepts/workloads/controllers/replicationcontroller'}
						optional
							String io_k8s_api_core_v1_ReplicationControllerList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_core_v1_ReplicationControllerList_items_kind {default 'ReplicationController', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_core_v1_ReplicationControllerList_items_metadata {doc 'If the Labels of a ReplicationController are empty, they are defaulted to be the same as the Pod(s) that the replication controller manages Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_core_v1_ReplicationControllerList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_core_v1_ReplicationControllerList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_ReplicationControllerList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_ReplicationControllerList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_ReplicationControllerList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_ReplicationControllerList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_core_v1_ReplicationControllerList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_core_v1_ReplicationControllerList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_ReplicationControllerList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_ReplicationControllerList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_ReplicationControllerList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_core_v1_ReplicationControllerList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_core_v1_ReplicationControllerList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_core_v1_ReplicationControllerList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_core_v1_ReplicationControllerList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_ReplicationControllerList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_ReplicationControllerList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_core_v1_ReplicationControllerList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_core_v1_ReplicationControllerList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_core_v1_ReplicationControllerList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_core_v1_ReplicationControllerList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_core_v1_ReplicationControllerList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_core_v1_ReplicationControllerList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_core_v1_ReplicationControllerList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_core_v1_ReplicationControllerList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_core_v1_ReplicationControllerList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_core_v1_ReplicationControllerList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_core_v1_ReplicationControllerList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_core_v1_ReplicationControllerList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_ReplicationControllerList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_ReplicationControllerList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_core_v1_ReplicationControllerList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_ReplicationControllerList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_core_v1_ReplicationControllerList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_core_v1_ReplicationControllerList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_core_v1_ReplicationControllerList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_core_v1_ReplicationControllerList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_core_v1_ReplicationControllerList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_core_v1_ReplicationControllerList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_ReplicationControllerList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_core_v1_ReplicationControllerList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_core_v1_ReplicationControllerList_items_spec {doc 'Spec defines the specification of the desired behavior of the replication controller More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								optional
									Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_minReadySeconds {default 0, doc 'Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available Defaults to 0 (pod will be considered available as soon as it is ready)'}
									Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_replicas {default 1, doc 'Replicas is the number of desired replicas This is a pointer to distinguish between explicit zero and unspecified Defaults to 1 More info: https:_kubernetesio/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller'}
									io_k8s_api_core_v1_ReplicationControllerList_items_spec_selector cardinality [1..*] {doc 'Selector is a label query over pods that should match the Replicas count If Selector is empty, it is defaulted to the labels present on the Pod template Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/#label-selectors'}
										mandatory
											String io_k8s_api_core_v1_ReplicationControllerList_items_spec_selector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template {doc 'Template is the object that describes the pod that will be created if insufficient replicas are detected This takes precedence over a TemplateRef The only allowed templatespecrestartPolicy value is Always More info: https:_kubernetesio/docs/concepts/workloads/controllers/replicationcontroller#pod-template'}
										optional
											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
													Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_deletionGracePeriodSeconds {doc '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'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_finalizers cardinality [1..*] {doc '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'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
													Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_managedFields cardinality [1..*] {doc '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'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_managedFields_apiVersion {doc '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'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																alternative
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_managedFields_subresource {doc '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'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_managedFields_time {doc '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'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
													String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
														optional
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
													String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
													String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
													String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
												mandatory
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
														optional
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																alternative
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																				alternative
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																				mandatory
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																				alternative
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																				mandatory
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
												optional
													Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
														optional
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																								alternative
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																						optional
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																						optional
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																						optional
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																						optional
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																								alternative
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																						optional
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
														optional
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_dnsConfig_options_name {doc 'Required'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_dnsConfig_options_value
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_dnsPolicy_None {doc 'Specific value: None'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
														optional
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																alternative
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																				alternative
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																				mandatory
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																				alternative
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																				mandatory
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
														optional
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
													String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
														optional
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
																alternative
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																				mandatory
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																				mandatory
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																				mandatory
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																						alternative
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																				alternative
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																				mandatory
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		mandatory
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																				alternative
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																				mandatory
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
																		mandatory
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
													String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
																alternative
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows {doc 'Specific value: windows'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_linux {doc 'Specific value: linux'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
														alternative
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
													Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
													String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
														optional
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
													String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
													String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
														optional
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
																alternative
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
													String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
													String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
													Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
														optional
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
																alternative
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
																alternative
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
															Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
														mandatory
															Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
														optional
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
													io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
														optional
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
																optional
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
																optional
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
																		mandatory
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																						optional
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																						optional
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																						optional
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																								alternative
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																								alternative
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																									Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																						optional
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																						optional
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																						optional
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																						optional
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																						optional
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																								optional
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																								alternative
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																								optional
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																						optional
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
																optional
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																						optional
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																										alternative
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																											io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																								optional
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																										mandatory
																											String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																						optional
																							Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																						optional
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																								optional
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																							Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																							io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																								mandatory
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																								optional
																									String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																									io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																										alternative
																											String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																											Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																							String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																						optional
																							Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																					io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																					Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
																optional
																	Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
															io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																		alternative
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																			io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
																	String io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
							io_k8s_api_core_v1_ReplicationControllerList_items_status {doc 'Status is the most recently observed status of the replication controller This data may be out of date by some window of time Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									Integer io_k8s_api_core_v1_ReplicationControllerList_items_status_replicas {doc 'Replicas is the most recently observed number of replicas More info: https:_kubernetesio/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller'}
								optional
									Integer io_k8s_api_core_v1_ReplicationControllerList_items_status_availableReplicas {doc 'The number of available replicas (ready for at least minReadySeconds) for this replication controller'}
									io_k8s_api_core_v1_ReplicationControllerList_items_status_conditions cardinality [1..*] {doc 'Represents the latest available observations of a replication controller_s current state'}
										mandatory
											io_k8s_api_core_v1_ReplicationControllerList_items_status_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
												alternative
													io_k8s_api_core_v1_ReplicationControllerList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_api_core_v1_ReplicationControllerList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_api_core_v1_ReplicationControllerList_items_status_conditions_status_True {doc 'Specific value: True'}
											String io_k8s_api_core_v1_ReplicationControllerList_items_status_conditions_type {doc 'Type of replication controller condition'}
										optional
											io_k8s_api_core_v1_ReplicationControllerList_items_status_conditions_lastTransitionTime {doc 'The last time the condition transitioned from one status to another'}
												optional
													String io_k8s_api_core_v1_ReplicationControllerList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_core_v1_ReplicationControllerList_items_status_conditions_message {doc 'A human readable message indicating details about the transition'}
											String io_k8s_api_core_v1_ReplicationControllerList_items_status_conditions_reason {doc 'The reason for the condition_s last transition'}
									Integer io_k8s_api_core_v1_ReplicationControllerList_items_status_fullyLabeledReplicas {doc 'The number of pods that have labels matching the labels of the pod template of the replication controller'}
									Integer io_k8s_api_core_v1_ReplicationControllerList_items_status_observedGeneration {doc 'ObservedGeneration reflects the generation of the most recently observed replication controller'}
									Integer io_k8s_api_core_v1_ReplicationControllerList_items_status_readyReplicas {doc 'The number of ready replicas for this replication controller'}
				optional
					String io_k8s_api_core_v1_ReplicationControllerList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_ReplicationControllerList_kind {default 'ReplicationControllerList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_ReplicationControllerList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_core_v1_ReplicationControllerList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_core_v1_ReplicationControllerList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_core_v1_ReplicationControllerList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_ReplicationControllerList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_core_v1_ReplicationControllerSpec {doc 'ReplicationControllerSpec is the specification of a replication controller'}
				optional
					Integer io_k8s_api_core_v1_ReplicationControllerSpec_minReadySeconds {default 0, doc 'Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available Defaults to 0 (pod will be considered available as soon as it is ready)'}
					Integer io_k8s_api_core_v1_ReplicationControllerSpec_replicas {default 1, doc 'Replicas is the number of desired replicas This is a pointer to distinguish between explicit zero and unspecified Defaults to 1 More info: https:_kubernetesio/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller'}
					io_k8s_api_core_v1_ReplicationControllerSpec_selector cardinality [1..*] {doc 'Selector is a label query over pods that should match the Replicas count If Selector is empty, it is defaulted to the labels present on the Pod template Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/labels/#label-selectors'}
						mandatory
							String io_k8s_api_core_v1_ReplicationControllerSpec_selector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_ReplicationControllerSpec_template {doc 'Template is the object that describes the pod that will be created if insufficient replicas are detected This takes precedence over a TemplateRef The only allowed templatespecrestartPolicy value is Always More info: https:_kubernetesio/docs/concepts/workloads/controllers/replicationcontroller#pod-template'}
						optional
							io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_core_v1_ReplicationControllerSpec_template_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec {doc 'Specification of the desired behavior of the pod More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers cardinality [1..*] {doc 'List of containers belonging to the pod Containers cannot currently be added or removed There must be at least one container in a Pod Cannot be updated'}
										mandatory
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
										optional
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
												mandatory
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
								optional
									Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_activeDeadlineSeconds {doc 'Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers Value must be a positive integer'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity {doc 'If specified, the pod_s scheduling constraints'}
										optional
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity {doc 'Describes node affinity scheduling rules for the pod'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference {doc 'A node selector term, associated with the corresponding weight'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to an update), the system may or may not try to eventually evict the pod from its node'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity {doc 'Describes pod affinity scheduling rules (eg co-locate this pod in the same node, zone, etc as some other pod(s))'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity {doc 'Describes pod anti-affinity scheduling rules (eg avoid putting this pod in the same node, zone, etc as some other pod(s))'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions The node that is most preferred is the one with the greatest sum of weights, ie for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc), compute a sum by iterating through the elements of this field and adding weight to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution cardinality [1..*] {doc 'If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (eg due to a pod label update), the system may or may not try to eventually evict the pod from its node When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, ie all terms must be satisfied'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																				alternative
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether a service account token should be automatically mounted'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_dnsConfig {doc 'Specifies the DNS parameters of a pod Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy'}
										optional
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_dnsConfig_nameservers cardinality [1..*] {doc 'A list of DNS name server IP addresses This will be appended to the base nameservers generated from DNSPolicy Duplicated nameservers will be removed'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_dnsConfig_nameservers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_dnsConfig_options cardinality [1..*] {doc 'A list of DNS resolver options This will be merged with the base options generated from DNSPolicy Duplicated entries will be removed Resolution options given in Options will override those that appear in the base DNSPolicy'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_dnsConfig_options_name {doc 'Required'}
												optional
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_dnsConfig_options_value
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_dnsConfig_searches cardinality [1..*] {doc 'A list of DNS search domains for host-name lookup This will be appended to the base search paths generated from DNSPolicy Duplicated search paths will be removed'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_dnsConfig_searches_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_dnsPolicy {doc 'Set DNS policy for the pod Defaults to ClusterFirst Valid values are _ClusterFirstWithHostNet_, _ClusterFirst_, _Default_ or _None_ DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to _ClusterFirstWithHostNet_'}
										alternative
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_dnsPolicy_None {doc 'Specific value: None'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_dnsPolicy_ClusterFirstWithHostNet {doc 'Specific value: ClusterFirstWithHostNet'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_dnsPolicy_Default {doc 'Specific value: Default'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_dnsPolicy_ClusterFirst {default, doc 'Specific value: ClusterFirst'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_enableServiceLinks {default true, doc 'EnableServiceLinks indicates whether information about services should be injected into pod_s environment variables, matching the syntax of Docker links Optional: Defaults to true'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers cardinality [1..*] {doc 'List of ephemeral containers run in this pod Ephemeral containers may be run in an existing pod to perform user-initiated actions such as debugging This list cannot be specified when creating a pod, and it cannot be modified by updating the pod spec In order to add an ephemeral container to an existing pod, use the pod_s ephemeralcontainers subresource'}
										mandatory
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_name {doc 'Name of the ephemeral container specified as a DNS_LABEL This name must be unique among all containers, init containers and ephemeral containers'}
										optional
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle {doc 'Lifecycle is not allowed for ephemeral containers'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_ports cardinality [1..*] {doc 'Ports are not allowed for ephemeral containers'}
												mandatory
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_resources {doc 'Resources are not allowed for ephemeral containers Ephemeral containers use spare resources already allocated to the pod'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_restartPolicy {doc 'Restart policy for the container to manage the restart behavior of each container within a pod This may only be set for init containers You cannot set this field on ephemeral containers'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext {doc 'Optional: SecurityContext defines the security options the ephemeral container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe {doc 'Probes are not allowed for ephemeral containers'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_targetContainerName {doc 'If set, the name of the container from PodSpec that this ephemeral container targets The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container If not set then the ephemeral container uses the namespaces configured in the Pod specThe container runtime must implement support for this feature If the runtime does not support namespace targeting then the result of setting this field is undefined'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Subpath mounts are not allowed for ephemeral containers Cannot be updated'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_hostAliases cardinality [1..*] {doc 'HostAliases is an optional list of hosts and IPs that will be injected into the pod_s hosts file if specified'}
										mandatory
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_hostAliases_ip {doc 'IP address of the host file entry'}
										optional
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_hostAliases_hostnames cardinality [1..*] {doc 'Hostnames for the above IP address'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_hostAliases_hostnames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_hostIPC {default false, doc 'Use the host_s ipc namespace Optional: Default to false'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_hostNetwork {default false, doc 'Host networking requested for this pod Use the host_s network namespace If this option is set, the ports that will be used must be specified Default to false'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_hostPID {default false, doc 'Use the host_s pid namespace Optional: Default to false'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_hostUsers {default true, doc 'Use the host_s user namespace Optional: Default to true If set to true or not present, the pod will be run in the host user namespace, useful for when the pod needs a feature only available to the host user namespace, such as loading a kernel module with CAP_SYS_MODULE When set to false, a new userns is created for the pod Setting false is useful for mitigating container breakout vulnerabilities even allowing users to run their containers as root without actually having root privileges on the host This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature'}
									String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_hostname {doc 'Specifies the hostname of the Pod If not specified, the pod_s hostname will be set to a system-defined value'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec If specified, these secrets will be passed to individual puller implementations for them to use More info: https:_kubernetesio/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod'}
										optional
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers cardinality [1..*] {doc 'List of initialization containers belonging to the pod Init containers are executed in order prior to containers being started If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy The name for an init container or normal container must be unique among all containers Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers Limits are applied to init containers in a similar fashion Init containers cannot currently be added or removed Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/init-containers/'}
										mandatory
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_name {doc 'Name of the container specified as a DNS_LABEL Each container in a pod must have a unique name (DNS_LABEL) Cannot be updated'}
										optional
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_args cardinality [1..*] {doc 'Arguments to the entrypoint The container image_s CMD is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_args_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_command cardinality [1..*] {doc 'Entrypoint array Not executed within a shell The container image_s ENTRYPOINT is used if this is not provided Variable references $(VAR_NAME) are expanded using the container_s environment If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Cannot be updated More info: https:_kubernetesio/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_env cardinality [1..*] {doc 'List of environment variables to set in the container Cannot be updated'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_env_name {doc 'Name of the environment variable Must be a C_IDENTIFIER'}
												optional
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_env_value {doc 'Variable references $(VAR_NAME) are expanded using the previously defined environment variables in the container and any service environment variables If a variable cannot be resolved, the reference in the input string will be unchanged Double $$ are reduced to a single $, which allows for escaping the $(VAR_NAME) syntax: ie $$(VAR_NAME) will produce the string literal $(VAR_NAME) Escaped references will never be expanded, regardless of whether the variable exists or not Defaults to '}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_env_valueFrom {doc 'Source for the environment variable_s value Cannot be used if value is not empty'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef {doc 'Selects a key of a ConfigMap'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef_key {doc 'The key to select'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_env_valueFrom_configMapKeyRef_optional {doc 'Specify whether the ConfigMap or its key must be defined'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_env_valueFrom_fieldRef {doc 'Selects a field of the pod: supports metadataname, metadatanamespace, metadatalabels[_<KEY>_], metadataannotations[_<KEY>_], specnodeName, specserviceAccountName, statushostIP, statuspodIP, statuspodIPs'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_env_valueFrom_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_env_valueFrom_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, limitsephemeral-storage, requestscpu, requestsmemory and requestsephemeral-storage) are currently supported'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_env_valueFrom_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_env_valueFrom_secretKeyRef {doc 'Selects a key of a secret in the pod_s namespace'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_env_valueFrom_secretKeyRef_key {doc 'The key of the secret to select from  Must be a valid secret key'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_env_valueFrom_secretKeyRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_env_valueFrom_secretKeyRef_optional {doc 'Specify whether the Secret or its key must be defined'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_envFrom cardinality [1..*] {doc 'List of sources to populate environment variables in the container The keys defined within a source must be a C_IDENTIFIER All invalid keys will be reported as an event when the container is starting When a key exists in multiple sources, the value associated with the last source will take precedence Values defined by an Env with a duplicate key will take precedence Cannot be updated'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_envFrom_configMapRef {doc 'The ConfigMap to select from'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_envFrom_configMapRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_envFrom_configMapRef_optional {doc 'Specify whether the ConfigMap must be defined'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_envFrom_prefix {doc 'An optional identifier to prepend to each key in the ConfigMap Must be a C_IDENTIFIER'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_envFrom_secretRef {doc 'The Secret to select from'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_envFrom_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_envFrom_secretRef_optional {doc 'Specify whether the Secret must be defined'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_image {doc 'Container image name More info: https:_kubernetesio/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_imagePullPolicy {doc 'Image pull policy One of Always, Never, IfNotPresent Defaults to Always if :latest tag is specified, or IfNotPresent otherwise Cannot be updated More info: https:_kubernetesio/docs/concepts/containers/images#updating-images'}
												alternative
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_imagePullPolicy_Never {doc 'Specific value: Never'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_imagePullPolicy_IfNotPresent {doc 'Specific value: IfNotPresent'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_imagePullPolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle {doc 'Actions that the management system should take in response to container lifecycle events Cannot be updated'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart {doc 'PostStart is called immediately after a container is created If the handler fails, the container is terminated and restarted according to its restart policy Other management of the container blocks until the hook completes More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop {doc 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc The handler is not called if the container crashes or exits The Pod_s termination grace period countdown begins before the PreStop hook is executed Regardless of the outcome of the handler, the container will eventually terminate within the Pod_s termination grace period (unless delayed by finalizers) Other management of the container blocks until the hook completes or until the termination grace period is reached More info: https:_kubernetesio/docs/concepts/containers/container-lifecycle-hooks/#container-hooks'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_exec {doc 'Exec specifies the action to take'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_httpGet {doc 'HTTPGet specifies the http request to perform'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_httpGet_httpHeaders_value {doc 'The header field value'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_httpGet_path {doc 'Path to access on the HTTP server'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_sleep {doc 'Sleep represents the duration that the container should sleep before being terminated'}
																mandatory
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_sleep_seconds {doc 'Seconds is the number of seconds to sleep'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket {doc 'Deprecated TCPSocket is NOT supported as a LifecycleHandler and kept for the backward compatibility There are no validation of this field and lifecycle hooks will fail in runtime when tcp handler is specified'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe {doc 'Periodic probe of container liveness Container will be restarted if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_ports cardinality [1..*] {doc 'List of ports to expose from the container Not specifying a port here DOES NOT prevent that port from being exposed Any port which is listening on the default 0000 address inside a container will be accessible from the network Modifying this array with strategic merge patch may corrupt the data For more information See https:_githubcom/kubernetes/kubernetes/issues/108255 Cannot be updated'}
												mandatory
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_ports_containerPort {doc 'Number of port to expose on the pod_s IP address This must be a valid port number, 0 < x < 65536'}
												optional
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_ports_hostIP {doc 'What host IP to bind the external port to'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_ports_hostPort {doc 'Number of port to expose on the host If specified, this must be a valid port number, 0 < x < 65536 If HostNetwork is specified, this must match ContainerPort Most containers do not need this'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_ports_name {doc 'If specified, this must be an IANA_SVC_NAME and unique within the pod Each named port in a pod must have a unique name Name for the port that can be referred to by services'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_ports_protocol {doc 'Protocol for port Must be UDP, TCP, or SCTP Defaults to TCP'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_ports_protocol_TCP {default, doc 'Specific value: TCP'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe {doc 'Periodic probe of container service readiness Container will be removed from service endpoints if the probe fails Cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_resizePolicy cardinality [1..*] {doc 'Resources resize policy for the container'}
												mandatory
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_resizePolicy_resourceName {doc 'Name of the resource to which this resource resize policy applies Supported values: cpu, memory'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_resizePolicy_resourceName_memory {doc 'Specific value: memory'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_resizePolicy_resourceName_cpu {doc 'Specific value: cpu'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_resizePolicy_restartPolicy {doc 'Restart policy to apply when specified resource is resized If not specified, it defaults to NotRequired'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_resources {doc 'Compute Resources required by this container Cannot be updated More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_resources_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_resources_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_restartPolicy {doc 'RestartPolicy defines the restart behavior of individual containers in a pod This field may only be set for init containers, and the only allowed value is Always For non-init containers or when this field is not specified, the restart behavior is defined by the Pod_s restart policy and the container type Setting the RestartPolicy as Always for the init container will have the following effect: this init container will be continually restarted on exit until all regular containers have terminated Once all regular containers have completed, all init containers with restartPolicy Always will be shut down This lifecycle differs from normal init containers and is often referred to as a sidecar container Although this init container still starts in the init container sequence, it does not wait for the container to complete before proceeding to the next init container Instead, the next init container starts immediately after this init container is started, or after any startupProbe has successfully completed'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext {doc 'SecurityContext defines the security options the container should be run with If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext More info: https:_kubernetesio/docs/tasks/configure-pod-container/security-context/'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
																alternative
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														mandatory
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
																alternative
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
																mandatory
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe {doc 'StartupProbe indicates that the Pod has successfully initialized If specified, no other probes are executed until this completes successfully If this probe fails, the Pod will be restarted, just as if the livenessProbe failed This can be used to provide different probe parameters at the beginning of a Pod_s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation This cannot be updated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_exec {doc 'Exec specifies the action to take'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_exec_command cardinality [1..*] {doc 'Command is the command line to execute inside the container, the working directory for the command  is root (_/_) in the container_s filesystem The command is simply exec_d, it is not run inside a shell, so traditional shell instructions (_|_, etc) won_t work To use a shell, you need to explicitly call out to that shell Exit status of 0 is treated as live/healthy and non-zero is unhealthy'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_exec_command_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_failureThreshold {default 3, doc 'Minimum consecutive failures for the probe to be considered failed after having succeeded Defaults to 3 Minimum value is 1'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_grpc {doc 'GRPC specifies an action involving a GRPC port'}
														mandatory
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_grpc_port {doc 'Port number of the gRPC service Number must be in the range 1 to 65535'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_grpc_service {doc 'Service is the name of the service to place in the gRPC HealthCheckRequest (see https:_githubcom/grpc/grpc/blob/master/doc/health-checkingmd)If this is not specified, the default behavior is defined by gRPC'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_httpGet {doc 'HTTPGet specifies the http request to perform'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_httpGet_port {doc 'Name or number of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_httpGet_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_httpGet_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_httpGet_host {doc 'Host name to connect to, defaults to the pod IP You probably want to set Host in httpHeaders instead'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_httpGet_httpHeaders cardinality [1..*] {doc 'Custom headers to set in the request HTTP allows repeated headers'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_name {doc 'The header field name This will be canonicalized upon output, so case-variant names will be understood as the same header'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_httpGet_httpHeaders_value {doc 'The header field value'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_httpGet_path {doc 'Path to access on the HTTP server'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_httpGet_scheme {doc 'Scheme to use for connecting to the host Defaults to HTTP'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_initialDelaySeconds {doc 'Number of seconds after the container has started before liveness probes are initiated More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_periodSeconds {default 10, doc 'How often (in seconds) to perform the probe Default to 10 seconds Minimum value is 1'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_successThreshold {default 1, doc 'Minimum consecutive successes for the probe to be considered successful after having failed Defaults to 1 Must be 1 for liveness and startup Minimum value is 1'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_tcpSocket {doc 'TCPSocket specifies an action involving a TCP port'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_tcpSocket_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
																alternative
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger {doc 'Sub-feature added of type Integer'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_tcpSocket_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds {doc 'Optional duration in seconds the pod needs to terminate gracefully upon probe failure The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process If this value is nil, the pod_s terminationGracePeriodSeconds will be used Otherwise, this value overrides the value provided by the pod spec Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate Minimum value is 1 specterminationGracePeriodSeconds is used if unset'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_timeoutSeconds {default 1, doc 'Number of seconds after which the probe times out Defaults to 1 second Minimum value is 1 More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle#container-probes'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_stdin {doc 'Whether this container should allocate a buffer for stdin in the container runtime If this is not set, reads from stdin in the container will always result in EOF Default is false'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_stdinOnce {doc 'Whether the container runtime should close the stdin channel after it has been opened by a single attach When stdin is true the stdin stream will remain open across multiple attach sessions If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted If this flag is false, a container processes that reads from stdin will never receive an EOF Default is false'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_terminationMessagePath {doc 'Optional: Path at which the file to which the container_s termination message will be written is mounted into the container_s filesystem Message written is intended to be brief final status, such as an assertion failure message Will be truncated by the node if greater than 4096 bytes The total message length across all containers will be limited to 12kb Defaults to /dev/termination-log Cannot be updated'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_terminationMessagePolicy {doc 'Indicate how the termination message should be populated File will use the contents of terminationMessagePath to populate the container status message on both success and failure FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error The log output is limited to 2048 bytes or 80 lines, whichever is smaller Defaults to File Cannot be updated'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_tty {doc 'Whether this container should allocate a TTY for itself, also requires _stdin_ to be true Default is false'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_volumeDevices cardinality [1..*] {doc 'volumeDevices is the list of block devices to be used by the container'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_volumeDevices_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_volumeDevices_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_volumeMounts cardinality [1..*] {doc 'Pod volumes to mount into the container_s filesystem Cannot be updated'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_volumeMounts_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_volumeMounts_name {doc 'This must match the Name of a Volume'}
												optional
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_volumeMounts_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_volumeMounts_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_volumeMounts_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_volumeMounts_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_volumeMounts_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_workingDir {doc 'Container_s working directory If not specified, the container runtime_s default will be used, which might be configured in the container image Cannot be updated'}
									String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_nodeName {doc 'NodeName is a request to schedule this pod onto a specific node If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_nodeSelector cardinality [1..*] {doc 'NodeSelector is a selector which must be true for the pod to fit on a node Selector which must match a node_s labels for the pod to be scheduled on that node More info: https:_kubernetesio/docs/concepts/configuration/assign-pod-node/'}
										mandatory
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os {doc 'Specifies the OS of the containers in the pod Some pod and container fields are restricted if this is setIf the OS field is set to linux, the following fields must be unset: -securityContextwindowsOptionsIf the OS field is set to windows, following fields must be unset: - spechostPID - spechostIPC - spechostUsers - specsecurityContextappArmorProfile - specsecurityContextseLinuxOptions - specsecurityContextseccompProfile - specsecurityContextfsGroup - specsecurityContextfsGroupChangePolicy - specsecurityContextsysctls - specshareProcessNamespace - specsecurityContextrunAsUser - specsecurityContextrunAsGroup - specsecurityContextsupplementalGroups - speccontainers[*]securityContextappArmorProfile - speccontainers[*]securityContextseLinuxOptions - speccontainers[*]securityContextseccompProfile - speccontainers[*]securityContextcapabilities - speccontainers[*]securityContextreadOnlyRootFilesystem - speccontainers[*]securityContextprivileged - speccontainers[*]securityContextallowPrivilegeEscalation - speccontainers[*]securityContextprocMount - speccontainers[*]securityContextrunAsUser - speccontainers[*]securityContextrunAsGroup'}
										mandatory
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name {doc 'Name is the name of the operating system The currently supported values are linux and windows Additional value may be defined in future and can be one of: https:_githubcom/opencontainers/runtime-spec/blob/master/configmd#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null'}
												alternative
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows {doc 'Specific value: windows'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_linux {doc 'Specific value: linux'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_overhead cardinality [1..*] {doc 'Overhead represents the resource overhead associated with running a pod for a given RuntimeClass This field will be autopopulated at admission time by the RuntimeClass admission controller If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests The RuntimeClass admission controller will reject Pod create requests which have the overhead already set If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero More info: https:_gitk8sio/enhancements/keps/sig-node/688-pod-overhead/READMEmd'}
										alternative
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_overhead_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_overhead_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_preemptionPolicy {doc 'PreemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
										alternative
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_preemptionPolicy_Never {doc 'Specific value: Never'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
									Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_priority {doc 'The priority value Various system components use this field to find the priority of the pod When Priority Admission Controller is enabled, it prevents users from setting this field The admission controller populates this field from PriorityClassName The higher the value, the higher the priority'}
									String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_priorityClassName {doc 'If specified, indicates the pod_s priority system-node-critical and system-cluster-critical are two special keywords which indicate the highest priorities with the former being the highest priority Any other name must be defined by creating a PriorityClass object with that name If not specified, the pod priority will be default or zero if there is no default'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_readinessGates cardinality [1..*] {doc 'If specified, all readiness gates will be evaluated for pod readiness A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to True More info: https:_gitk8sio/enhancements/keps/sig-network/580-pod-readiness-gates'}
										mandatory
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_readinessGates_conditionType {doc 'ConditionType refers to a condition in the pod_s condition list with matching type'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_resourceClaims cardinality [1..*] {doc 'ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start The resources will be made available to those containers which consume them by nameThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable'}
										mandatory
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_resourceClaims_name {doc 'Name uniquely identifies this resource claim inside the pod This must be a DNS_LABEL'}
										optional
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_resourceClaims_source {doc 'Source describes where to find the ResourceClaim'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_resourceClaims_source_resourceClaimName {abstract, doc 'ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_resourceClaims_source_resourceClaimName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_resourceClaims_source_resourceClaimTemplateName {abstract, doc 'ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this podThe template will be used to create a new ResourceClaim, which will be bound to this pod When this pod is deleted, the ResourceClaim will also be deleted The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in podstatusresourceClaimStatusesThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_resourceClaims_source_resourceClaimTemplateName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_restartPolicy {doc 'Restart policy for all containers within the pod One of Always, OnFailure, Never In some contexts, only a subset of those values may be permitted Default to Always More info: https:_kubernetesio/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy'}
										alternative
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_restartPolicy_Never {doc 'Specific value: Never'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_restartPolicy_OnFailure {doc 'Specific value: OnFailure'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_restartPolicy_Always {doc 'Specific value: Always'}
									String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_runtimeClassName {doc 'RuntimeClassName refers to a RuntimeClass object in the nodek8sio group, which should be used to run this pod  If no RuntimeClass resource matches the named class, the pod will not be run If unset or empty, the legacy RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler More info: https:_gitk8sio/enhancements/keps/sig-node/585-runtime-class'}
									String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_schedulerName {doc 'If specified, the pod will be dispatched by specified scheduler If not specified, the pod will be dispatched by default scheduler'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_schedulingGates cardinality [1..*] {doc 'SchedulingGates is an opaque list of values that if specified will block scheduling the pod If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the scheduler will not attempt to schedule the podSchedulingGates can only be set at pod creation time, and be removed only afterwards'}
										mandatory
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_schedulingGates_name {doc 'Name of the scheduling gate Each scheduling gate must have a unique name field'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext {doc 'SecurityContext holds pod-level security attributes and common container settings Optional: Defaults to empty  See type description for default values of each field'}
										optional
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_fsGroup {abstract, doc 'A special supplemental group that applies to all containers in a pod Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:1 The owning GID will be the FSGroup 2 The setgid bit is set (new files created in the volume will be owned by FSGroup) 3 The permission bits are OR_d with rw-rw----If unset, the Kubelet will not modify the ownership and permissions of any volume Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_fsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_fsGroupChangePolicy {abstract, doc 'fsGroupChangePolicy defines behavior of changing ownership and permission of the volume before being exposed inside Pod This field will only apply to volume types which support fsGroup based ownership(and permissions) It will have no effect on ephemeral volume types such as: secret, configmaps and emptydir Valid values are OnRootMismatch and Always If not specified, Always is used Note that this field cannot be set when specosname is windows'}
												alternative
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_fsGroupChangePolicy_OnRootMismatch {doc 'Specific value: OnRootMismatch'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_fsGroupChangePolicy_Always {doc 'Specific value: Always'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_seLinuxOptions {doc 'The SELinux context to be applied to all containers If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in SecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container Note that this field cannot be set when specosname is windows'}
												optional
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_seccompProfile {doc 'The seccomp options to use by the containers in this pod Note that this field cannot be set when specosname is windows'}
												mandatory
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_supplementalGroups cardinality [1..*] {doc 'A list of groups applied to the first process run in each container, in addition to the container_s primary GID, the fsGroup (if specified), and group memberships defined in the container image for the uid of the container process If unspecified, no additional groups are added to any container Note that group memberships defined in the container image for the uid of the container process are still effective, even if they are not included in this list Note that this field cannot be set when specosname is windows'}
												mandatory
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_supplementalGroups_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_sysctls cardinality [1..*] {doc 'Sysctls hold a list of namespaced sysctls used for the pod Pods with unsupported sysctls (by the container runtime) might fail to launch Note that this field cannot be set when specosname is windows'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_sysctls_name {doc 'Name of a property to set'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_sysctls_value {doc 'Value of a property to set'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options within a container_s SecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
												optional
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
									String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_serviceAccount {doc 'DeprecatedServiceAccount is a deprecated alias for ServiceAccountName Deprecated: Use serviceAccountName instead'}
									String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_serviceAccountName {doc 'ServiceAccountName is the name of the ServiceAccount to use to run this pod More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_setHostnameAsFQDN {default false, doc 'If true the pod_s hostname will be configured as the pod_s FQDN, rather than the leaf name (the default) In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname) In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_Tcpip_Parameters to FQDN If a pod does not have FQDN, this has no effect Default to false'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_shareProcessNamespace {default false, doc 'Share a single process namespace between all of the containers in a pod When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1 HostPID and ShareProcessNamespace cannot both be set Optional: Default to false'}
									String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_subdomain {doc 'If specified, the fully qualified Pod hostname will be <hostname><subdomain><pod namespace>svc<cluster domain> If not specified, the pod will not have a domainname at all'}
									Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_terminationGracePeriodSeconds {default 30, doc 'Optional duration in seconds the pod needs to terminate gracefully May be decreased in delete request Value must be non-negative integer The value zero indicates stop immediately via the kill signal (no opportunity to shut down) If this value is nil, the default grace period will be used instead The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal Set this value longer than the expected cleanup time for your process Defaults to 30 seconds'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_tolerations cardinality [1..*] {doc 'If specified, the pod_s tolerations'}
										optional
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
												alternative
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
												alternative
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_tolerations_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
											Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints cardinality [1..*] {doc 'TopologySpreadConstraints describes how a group of pods ought to spread across topology domains Scheduler will schedule pods in a way which abides by the constraints All topologySpreadConstraints are ANDed'}
										mandatory
											Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
										optional
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
									io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes cardinality [1..*] {doc 'List of volumes that can be mounted by containers belonging to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes'}
										mandatory
											String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
										optional
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_azureDisk_cachingMode_None {doc 'Specific value: None'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_azureDisk_kind_Managed {doc 'Specific value: Managed'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_azureDisk_kind_Shared {doc 'Specific value: Shared'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_azureFile_shareName {doc 'shareName is the azure share Name'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
												mandatory
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_cinder_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_configMap {doc 'configMap represents a configMap that should populate this volume'}
												optional
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_configMap_items_key {doc 'key is the key to project'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
														optional
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
												optional
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
												optional
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																		alternative
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																			Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
												optional
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
														alternative
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
														mandatory
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
																				alternative
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
																					Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
																		optional
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
																				alternative
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_fc_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_fc_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_fc_lun {doc 'lun is Optional: FC target lun number'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_gitRepo_repository {doc 'repository is the URL'}
												optional
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
												optional
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_iscsi_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
												optional
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
														optional
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																						alternative
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_configMap_items_key {doc 'key is the key to project'}
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
																		optional
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
																			Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																			io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
																				mandatory
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
																				optional
																					String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
																					io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																						alternative
																							String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																							Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_secret {doc 'secret information about the secret data to project'}
																optional
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
																		mandatory
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_secret_items_key {doc 'key is the key to project'}
																			String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
																		optional
																			Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
																mandatory
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
																optional
																	String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
																	Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
												optional
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_quobyte_group {doc 'group to map volume access to Default is no group'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_rbd_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
												optional
													Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
														mandatory
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_secret_items_key {doc 'key is the key to project'}
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
														optional
															Integer io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_storageos_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
														optional
															String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
											io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
												optional
													io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
													String io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
			io_k8s_api_core_v1_ReplicationControllerStatus {doc 'ReplicationControllerStatus represents the current status of a replication controller'}
				mandatory
					Integer io_k8s_api_core_v1_ReplicationControllerStatus_replicas {doc 'Replicas is the most recently observed number of replicas More info: https:_kubernetesio/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller'}
				optional
					Integer io_k8s_api_core_v1_ReplicationControllerStatus_availableReplicas {doc 'The number of available replicas (ready for at least minReadySeconds) for this replication controller'}
					io_k8s_api_core_v1_ReplicationControllerStatus_conditions cardinality [1..*] {doc 'Represents the latest available observations of a replication controller_s current state'}
						mandatory
							io_k8s_api_core_v1_ReplicationControllerStatus_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
								alternative
									io_k8s_api_core_v1_ReplicationControllerStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_core_v1_ReplicationControllerStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_core_v1_ReplicationControllerStatus_conditions_status_True {doc 'Specific value: True'}
							String io_k8s_api_core_v1_ReplicationControllerStatus_conditions_type {doc 'Type of replication controller condition'}
						optional
							io_k8s_api_core_v1_ReplicationControllerStatus_conditions_lastTransitionTime {doc 'The last time the condition transitioned from one status to another'}
								optional
									String io_k8s_api_core_v1_ReplicationControllerStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_ReplicationControllerStatus_conditions_message {doc 'A human readable message indicating details about the transition'}
							String io_k8s_api_core_v1_ReplicationControllerStatus_conditions_reason {doc 'The reason for the condition_s last transition'}
					Integer io_k8s_api_core_v1_ReplicationControllerStatus_fullyLabeledReplicas {doc 'The number of pods that have labels matching the labels of the pod template of the replication controller'}
					Integer io_k8s_api_core_v1_ReplicationControllerStatus_observedGeneration {doc 'ObservedGeneration reflects the generation of the most recently observed replication controller'}
					Integer io_k8s_api_core_v1_ReplicationControllerStatus_readyReplicas {doc 'The number of ready replicas for this replication controller'}
			io_k8s_api_core_v1_ResourceClaim {doc 'ResourceClaim references one entry in PodSpecResourceClaims'}
				mandatory
					String io_k8s_api_core_v1_ResourceClaim_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
			io_k8s_api_core_v1_ResourceFieldSelector {doc 'ResourceFieldSelector represents container resources (cpu, memory) and their output format'}
				mandatory
					String io_k8s_api_core_v1_ResourceFieldSelector_resource {doc 'Required: resource to select'}
				optional
					String io_k8s_api_core_v1_ResourceFieldSelector_containerName {doc 'Container name: required for volumes, optional for env vars'}
					io_k8s_api_core_v1_ResourceFieldSelector_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
						alternative
							String io_k8s_api_core_v1_ResourceFieldSelector_divisor_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_ResourceFieldSelector_divisor_asNumber {doc 'Sub-feature added of type Number'}
			io_k8s_api_core_v1_ResourceQuota {doc 'ResourceQuota sets aggregate quota restrictions enforced per namespace'}
				optional
					String io_k8s_api_core_v1_ResourceQuota_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_ResourceQuota_kind {default 'ResourceQuota', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_ResourceQuota_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_core_v1_ResourceQuota_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_core_v1_ResourceQuota_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_ResourceQuota_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_ResourceQuota_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_ResourceQuota_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_ResourceQuota_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_core_v1_ResourceQuota_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_core_v1_ResourceQuota_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_ResourceQuota_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_ResourceQuota_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_ResourceQuota_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_core_v1_ResourceQuota_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_core_v1_ResourceQuota_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_core_v1_ResourceQuota_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_core_v1_ResourceQuota_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_ResourceQuota_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_ResourceQuota_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_core_v1_ResourceQuota_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_core_v1_ResourceQuota_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_core_v1_ResourceQuota_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_core_v1_ResourceQuota_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_core_v1_ResourceQuota_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_core_v1_ResourceQuota_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_core_v1_ResourceQuota_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_core_v1_ResourceQuota_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_core_v1_ResourceQuota_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_core_v1_ResourceQuota_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_core_v1_ResourceQuota_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_core_v1_ResourceQuota_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_ResourceQuota_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_core_v1_ResourceQuota_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_core_v1_ResourceQuota_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_ResourceQuota_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_ResourceQuota_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_ResourceQuota_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_ResourceQuota_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_core_v1_ResourceQuota_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_core_v1_ResourceQuota_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_core_v1_ResourceQuota_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_ResourceQuota_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_core_v1_ResourceQuota_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_core_v1_ResourceQuota_spec {doc 'Spec defines the desired quota https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							io_k8s_api_core_v1_ResourceQuota_spec_hard cardinality [1..*] {doc 'hard is the set of desired hard limits for each named resource More info: https:_kubernetesio/docs/concepts/policy/resource-quotas/'}
								alternative
									String io_k8s_api_core_v1_ResourceQuota_spec_hard_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_ResourceQuota_spec_hard_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_ResourceQuota_spec_scopeSelector {doc 'scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota but expressed using ScopeSelectorOperator in combination with possible values For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched'}
								optional
									io_k8s_api_core_v1_ResourceQuota_spec_scopeSelector_matchExpressions cardinality [1..*] {doc 'A list of scope selector requirements by scope of the resources'}
										mandatory
											io_k8s_api_core_v1_ResourceQuota_spec_scopeSelector_matchExpressions_operator {doc 'Represents a scope_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist'}
												alternative
													io_k8s_api_core_v1_ResourceQuota_spec_scopeSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_core_v1_ResourceQuota_spec_scopeSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_core_v1_ResourceQuota_spec_scopeSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_core_v1_ResourceQuota_spec_scopeSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
											String io_k8s_api_core_v1_ResourceQuota_spec_scopeSelector_matchExpressions_scopeName {doc 'The name of the scope that the selector applies to'}
										optional
											io_k8s_api_core_v1_ResourceQuota_spec_scopeSelector_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_core_v1_ResourceQuota_spec_scopeSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_ResourceQuota_spec_scopes cardinality [1..*] {doc 'A collection of filters that must match each object tracked by a quota If not specified, the quota matches all objects'}
								mandatory
									String io_k8s_api_core_v1_ResourceQuota_spec_scopes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_ResourceQuota_status {doc 'Status defines the actual enforced quota and its current usage https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							io_k8s_api_core_v1_ResourceQuota_status_hard cardinality [1..*] {doc 'Hard is the set of enforced hard limits for each named resource More info: https:_kubernetesio/docs/concepts/policy/resource-quotas/'}
								alternative
									String io_k8s_api_core_v1_ResourceQuota_status_hard_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_ResourceQuota_status_hard_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_ResourceQuota_status_used cardinality [1..*] {doc 'Used is the current observed total usage of the resource in the namespace'}
								alternative
									String io_k8s_api_core_v1_ResourceQuota_status_used_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_ResourceQuota_status_used_asNumber {doc 'Sub-feature added of type Number'}
			io_k8s_api_core_v1_ResourceQuotaList {doc 'ResourceQuotaList is a list of ResourceQuota items'}
				mandatory
					io_k8s_api_core_v1_ResourceQuotaList_items cardinality [1..*] {doc 'Items is a list of ResourceQuota objects More info: https:_kubernetesio/docs/concepts/policy/resource-quotas/'}
						optional
							String io_k8s_api_core_v1_ResourceQuotaList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_core_v1_ResourceQuotaList_items_kind {default 'ResourceQuota', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_core_v1_ResourceQuotaList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_core_v1_ResourceQuotaList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_core_v1_ResourceQuotaList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_ResourceQuotaList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_ResourceQuotaList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_ResourceQuotaList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_ResourceQuotaList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_core_v1_ResourceQuotaList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_core_v1_ResourceQuotaList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_ResourceQuotaList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_ResourceQuotaList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_ResourceQuotaList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_core_v1_ResourceQuotaList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_core_v1_ResourceQuotaList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_core_v1_ResourceQuotaList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_core_v1_ResourceQuotaList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_ResourceQuotaList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_ResourceQuotaList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_core_v1_ResourceQuotaList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_core_v1_ResourceQuotaList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_core_v1_ResourceQuotaList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_core_v1_ResourceQuotaList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_core_v1_ResourceQuotaList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_core_v1_ResourceQuotaList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_core_v1_ResourceQuotaList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_core_v1_ResourceQuotaList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_core_v1_ResourceQuotaList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_core_v1_ResourceQuotaList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_core_v1_ResourceQuotaList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_core_v1_ResourceQuotaList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_ResourceQuotaList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_ResourceQuotaList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_core_v1_ResourceQuotaList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_ResourceQuotaList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_core_v1_ResourceQuotaList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_core_v1_ResourceQuotaList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_core_v1_ResourceQuotaList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_core_v1_ResourceQuotaList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_core_v1_ResourceQuotaList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_core_v1_ResourceQuotaList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_ResourceQuotaList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_core_v1_ResourceQuotaList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_core_v1_ResourceQuotaList_items_spec {doc 'Spec defines the desired quota https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								optional
									io_k8s_api_core_v1_ResourceQuotaList_items_spec_hard cardinality [1..*] {doc 'hard is the set of desired hard limits for each named resource More info: https:_kubernetesio/docs/concepts/policy/resource-quotas/'}
										alternative
											String io_k8s_api_core_v1_ResourceQuotaList_items_spec_hard_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_ResourceQuotaList_items_spec_hard_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_ResourceQuotaList_items_spec_scopeSelector {doc 'scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota but expressed using ScopeSelectorOperator in combination with possible values For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched'}
										optional
											io_k8s_api_core_v1_ResourceQuotaList_items_spec_scopeSelector_matchExpressions cardinality [1..*] {doc 'A list of scope selector requirements by scope of the resources'}
												mandatory
													io_k8s_api_core_v1_ResourceQuotaList_items_spec_scopeSelector_matchExpressions_operator {doc 'Represents a scope_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist'}
														alternative
															io_k8s_api_core_v1_ResourceQuotaList_items_spec_scopeSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_core_v1_ResourceQuotaList_items_spec_scopeSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_core_v1_ResourceQuotaList_items_spec_scopeSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_core_v1_ResourceQuotaList_items_spec_scopeSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
													String io_k8s_api_core_v1_ResourceQuotaList_items_spec_scopeSelector_matchExpressions_scopeName {doc 'The name of the scope that the selector applies to'}
												optional
													io_k8s_api_core_v1_ResourceQuotaList_items_spec_scopeSelector_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_core_v1_ResourceQuotaList_items_spec_scopeSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_ResourceQuotaList_items_spec_scopes cardinality [1..*] {doc 'A collection of filters that must match each object tracked by a quota If not specified, the quota matches all objects'}
										mandatory
											String io_k8s_api_core_v1_ResourceQuotaList_items_spec_scopes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_ResourceQuotaList_items_status {doc 'Status defines the actual enforced quota and its current usage https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								optional
									io_k8s_api_core_v1_ResourceQuotaList_items_status_hard cardinality [1..*] {doc 'Hard is the set of enforced hard limits for each named resource More info: https:_kubernetesio/docs/concepts/policy/resource-quotas/'}
										alternative
											String io_k8s_api_core_v1_ResourceQuotaList_items_status_hard_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_ResourceQuotaList_items_status_hard_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_ResourceQuotaList_items_status_used cardinality [1..*] {doc 'Used is the current observed total usage of the resource in the namespace'}
										alternative
											String io_k8s_api_core_v1_ResourceQuotaList_items_status_used_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_ResourceQuotaList_items_status_used_asNumber {doc 'Sub-feature added of type Number'}
				optional
					String io_k8s_api_core_v1_ResourceQuotaList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_ResourceQuotaList_kind {default 'ResourceQuotaList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_ResourceQuotaList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_core_v1_ResourceQuotaList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_core_v1_ResourceQuotaList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_core_v1_ResourceQuotaList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_ResourceQuotaList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_core_v1_ResourceQuotaSpec {doc 'ResourceQuotaSpec defines the desired hard limits to enforce for Quota'}
				optional
					io_k8s_api_core_v1_ResourceQuotaSpec_hard cardinality [1..*] {doc 'hard is the set of desired hard limits for each named resource More info: https:_kubernetesio/docs/concepts/policy/resource-quotas/'}
						alternative
							String io_k8s_api_core_v1_ResourceQuotaSpec_hard_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_ResourceQuotaSpec_hard_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_core_v1_ResourceQuotaSpec_scopeSelector {doc 'scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota but expressed using ScopeSelectorOperator in combination with possible values For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched'}
						optional
							io_k8s_api_core_v1_ResourceQuotaSpec_scopeSelector_matchExpressions cardinality [1..*] {doc 'A list of scope selector requirements by scope of the resources'}
								mandatory
									io_k8s_api_core_v1_ResourceQuotaSpec_scopeSelector_matchExpressions_operator {doc 'Represents a scope_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist'}
										alternative
											io_k8s_api_core_v1_ResourceQuotaSpec_scopeSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_core_v1_ResourceQuotaSpec_scopeSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_core_v1_ResourceQuotaSpec_scopeSelector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_core_v1_ResourceQuotaSpec_scopeSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
									String io_k8s_api_core_v1_ResourceQuotaSpec_scopeSelector_matchExpressions_scopeName {doc 'The name of the scope that the selector applies to'}
								optional
									io_k8s_api_core_v1_ResourceQuotaSpec_scopeSelector_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_core_v1_ResourceQuotaSpec_scopeSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_ResourceQuotaSpec_scopes cardinality [1..*] {doc 'A collection of filters that must match each object tracked by a quota If not specified, the quota matches all objects'}
						mandatory
							String io_k8s_api_core_v1_ResourceQuotaSpec_scopes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_ResourceQuotaStatus {doc 'ResourceQuotaStatus defines the enforced hard limits and observed use'}
				optional
					io_k8s_api_core_v1_ResourceQuotaStatus_hard cardinality [1..*] {doc 'Hard is the set of enforced hard limits for each named resource More info: https:_kubernetesio/docs/concepts/policy/resource-quotas/'}
						alternative
							String io_k8s_api_core_v1_ResourceQuotaStatus_hard_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_ResourceQuotaStatus_hard_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_core_v1_ResourceQuotaStatus_used cardinality [1..*] {doc 'Used is the current observed total usage of the resource in the namespace'}
						alternative
							String io_k8s_api_core_v1_ResourceQuotaStatus_used_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_ResourceQuotaStatus_used_asNumber {doc 'Sub-feature added of type Number'}
			io_k8s_api_core_v1_ResourceRequirements {doc 'ResourceRequirements describes the compute resource requirements'}
				optional
					io_k8s_api_core_v1_ResourceRequirements_claims cardinality [1..*] {doc 'Claims lists the names of resources, defined in specresourceClaims, that are used by this containerThis is an alpha field and requires enabling the DynamicResourceAllocation feature gateThis field is immutable It can only be set for containers'}
						mandatory
							String io_k8s_api_core_v1_ResourceRequirements_claims_name {doc 'Name must match the name of one entry in podspecresourceClaims of the Pod where this field is used It makes that resource available inside a container'}
					io_k8s_api_core_v1_ResourceRequirements_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
						alternative
							String io_k8s_api_core_v1_ResourceRequirements_limits_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_ResourceRequirements_limits_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_core_v1_ResourceRequirements_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
						alternative
							String io_k8s_api_core_v1_ResourceRequirements_requests_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_ResourceRequirements_requests_asNumber {doc 'Sub-feature added of type Number'}
			io_k8s_api_core_v1_SELinuxOptions {doc 'SELinuxOptions are the labels to be applied to the container'}
				optional
					String io_k8s_api_core_v1_SELinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
					String io_k8s_api_core_v1_SELinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
					String io_k8s_api_core_v1_SELinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
					String io_k8s_api_core_v1_SELinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
			io_k8s_api_core_v1_ScaleIOPersistentVolumeSource {doc 'ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume'}
				mandatory
					String io_k8s_api_core_v1_ScaleIOPersistentVolumeSource_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
					io_k8s_api_core_v1_ScaleIOPersistentVolumeSource_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
						optional
							String io_k8s_api_core_v1_ScaleIOPersistentVolumeSource_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
							String io_k8s_api_core_v1_ScaleIOPersistentVolumeSource_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
					String io_k8s_api_core_v1_ScaleIOPersistentVolumeSource_system {doc 'system is the name of the storage system as configured in ScaleIO'}
				optional
					io_k8s_api_core_v1_ScaleIOPersistentVolumeSource_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
						alternative
							io_k8s_api_core_v1_ScaleIOPersistentVolumeSource_fsType_xfs {doc 'Specific value: xfs'}
							io_k8s_api_core_v1_ScaleIOPersistentVolumeSource_fsType_ext4 {doc 'Specific value: ext4'}
							io_k8s_api_core_v1_ScaleIOPersistentVolumeSource_fsType_ntfs {doc 'Specific value: ntfs'}
					String io_k8s_api_core_v1_ScaleIOPersistentVolumeSource_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
					io_k8s_api_core_v1_ScaleIOPersistentVolumeSource_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
					io_k8s_api_core_v1_ScaleIOPersistentVolumeSource_sslEnabled {default false, doc 'sslEnabled is the flag to enable/disable SSL communication with Gateway, default false'}
					io_k8s_api_core_v1_ScaleIOPersistentVolumeSource_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
						alternative
							io_k8s_api_core_v1_ScaleIOPersistentVolumeSource_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
							io_k8s_api_core_v1_ScaleIOPersistentVolumeSource_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
					String io_k8s_api_core_v1_ScaleIOPersistentVolumeSource_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
					String io_k8s_api_core_v1_ScaleIOPersistentVolumeSource_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
			io_k8s_api_core_v1_ScaleIOVolumeSource {doc 'ScaleIOVolumeSource represents a persistent ScaleIO volume'}
				mandatory
					String io_k8s_api_core_v1_ScaleIOVolumeSource_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
					io_k8s_api_core_v1_ScaleIOVolumeSource_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
						optional
							String io_k8s_api_core_v1_ScaleIOVolumeSource_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
					String io_k8s_api_core_v1_ScaleIOVolumeSource_system {doc 'system is the name of the storage system as configured in ScaleIO'}
				optional
					io_k8s_api_core_v1_ScaleIOVolumeSource_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
						alternative
							io_k8s_api_core_v1_ScaleIOVolumeSource_fsType_xfs {default, doc 'Specific value: xfs'}
							io_k8s_api_core_v1_ScaleIOVolumeSource_fsType_ext4 {doc 'Specific value: ext4'}
							io_k8s_api_core_v1_ScaleIOVolumeSource_fsType_ntfs {doc 'Specific value: ntfs'}
					String io_k8s_api_core_v1_ScaleIOVolumeSource_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
					io_k8s_api_core_v1_ScaleIOVolumeSource_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
					io_k8s_api_core_v1_ScaleIOVolumeSource_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
					io_k8s_api_core_v1_ScaleIOVolumeSource_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
						alternative
							io_k8s_api_core_v1_ScaleIOVolumeSource_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
							io_k8s_api_core_v1_ScaleIOVolumeSource_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
					String io_k8s_api_core_v1_ScaleIOVolumeSource_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
					String io_k8s_api_core_v1_ScaleIOVolumeSource_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
			io_k8s_api_core_v1_ScopeSelector {doc 'A scope selector represents the AND of the selectors represented by the scoped-resource selector requirements'}
				optional
					io_k8s_api_core_v1_ScopeSelector_matchExpressions cardinality [1..*] {doc 'A list of scope selector requirements by scope of the resources'}
						mandatory
							io_k8s_api_core_v1_ScopeSelector_matchExpressions_operator {doc 'Represents a scope_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist'}
								alternative
									io_k8s_api_core_v1_ScopeSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
									io_k8s_api_core_v1_ScopeSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
									io_k8s_api_core_v1_ScopeSelector_matchExpressions_operator_In {doc 'Specific value: In'}
									io_k8s_api_core_v1_ScopeSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
							String io_k8s_api_core_v1_ScopeSelector_matchExpressions_scopeName {doc 'The name of the scope that the selector applies to'}
						optional
							io_k8s_api_core_v1_ScopeSelector_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
								mandatory
									String io_k8s_api_core_v1_ScopeSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_ScopedResourceSelectorRequirement {doc 'A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator that relates the scope name and values'}
				mandatory
					io_k8s_api_core_v1_ScopedResourceSelectorRequirement_operator {doc 'Represents a scope_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist'}
						alternative
							io_k8s_api_core_v1_ScopedResourceSelectorRequirement_operator_Exists {doc 'Specific value: Exists'}
							io_k8s_api_core_v1_ScopedResourceSelectorRequirement_operator_NotIn {doc 'Specific value: NotIn'}
							io_k8s_api_core_v1_ScopedResourceSelectorRequirement_operator_In {doc 'Specific value: In'}
							io_k8s_api_core_v1_ScopedResourceSelectorRequirement_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
					String io_k8s_api_core_v1_ScopedResourceSelectorRequirement_scopeName {doc 'The name of the scope that the selector applies to'}
				optional
					io_k8s_api_core_v1_ScopedResourceSelectorRequirement_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
						mandatory
							String io_k8s_api_core_v1_ScopedResourceSelectorRequirement_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_SeccompProfile {doc 'SeccompProfile defines a pod/container_s seccomp profile settings Only one profile source may be set'}
				mandatory
					io_k8s_api_core_v1_SeccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
						alternative
							io_k8s_api_core_v1_SeccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
							io_k8s_api_core_v1_SeccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
							io_k8s_api_core_v1_SeccompProfile_type_Localhost {doc 'Specific value: Localhost'}
				optional
					io_k8s_api_core_v1_SeccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
						mandatory
							io_k8s_api_core_v1_SeccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
			io_k8s_api_core_v1_Secret {doc 'Secret holds secret data of a certain type The total bytes of the values in the Data field must be less than MaxSecretSize bytes'}
				optional
					String io_k8s_api_core_v1_Secret_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					io_k8s_api_core_v1_Secret_data cardinality [1..*] {doc 'Data contains the secret data Each key must consist of alphanumeric characters, _-_, ___ or __ The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here Described in https:_toolsietforg/html/rfc4648#section-4'}
						mandatory
							String io_k8s_api_core_v1_Secret_data_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_Secret_immutable {doc 'Immutable, if set to true, ensures that data stored in the Secret cannot be updated (only object metadata can be modified) If not set to true, the field can be modified at any time Defaulted to nil'}
					String io_k8s_api_core_v1_Secret_kind {default 'Secret', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_Secret_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_core_v1_Secret_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_core_v1_Secret_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_Secret_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_Secret_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_Secret_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_Secret_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_core_v1_Secret_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_core_v1_Secret_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_Secret_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_Secret_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_Secret_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_core_v1_Secret_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_core_v1_Secret_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_core_v1_Secret_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_core_v1_Secret_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_Secret_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_Secret_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_core_v1_Secret_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_core_v1_Secret_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_core_v1_Secret_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_core_v1_Secret_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_core_v1_Secret_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_core_v1_Secret_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_core_v1_Secret_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_core_v1_Secret_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_core_v1_Secret_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_core_v1_Secret_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_core_v1_Secret_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_core_v1_Secret_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_Secret_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_core_v1_Secret_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_core_v1_Secret_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_Secret_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_Secret_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_Secret_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_Secret_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_core_v1_Secret_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_core_v1_Secret_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_core_v1_Secret_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_Secret_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_core_v1_Secret_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_core_v1_Secret_stringData cardinality [1..*] {doc 'stringData allows specifying non-binary secret data in string form It is provided as a write-only input field for convenience All keys and values are merged into the data field on write, overwriting any existing values The stringData field is never output when reading from the API'}
						mandatory
							String io_k8s_api_core_v1_Secret_stringData_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					String io_k8s_api_core_v1_Secret_type {doc 'Used to facilitate programmatic handling of secret data More info: https:_kubernetesio/docs/concepts/configuration/secret/#secret-types'}
			io_k8s_api_core_v1_SecretEnvSource {doc 'SecretEnvSource selects a Secret to populate the environment variables withThe contents of the target Secret_s Data field will represent the key-value pairs as environment variables'}
				optional
					String io_k8s_api_core_v1_SecretEnvSource_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
					io_k8s_api_core_v1_SecretEnvSource_optional {doc 'Specify whether the Secret must be defined'}
			io_k8s_api_core_v1_SecretKeySelector {doc 'SecretKeySelector selects a key of a Secret'}
				mandatory
					String io_k8s_api_core_v1_SecretKeySelector_key {doc 'The key of the secret to select from  Must be a valid secret key'}
				optional
					String io_k8s_api_core_v1_SecretKeySelector_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
					io_k8s_api_core_v1_SecretKeySelector_optional {doc 'Specify whether the Secret or its key must be defined'}
			io_k8s_api_core_v1_SecretList {doc 'SecretList is a list of Secret'}
				mandatory
					io_k8s_api_core_v1_SecretList_items cardinality [1..*] {doc 'Items is a list of secret objects More info: https:_kubernetesio/docs/concepts/configuration/secret'}
						optional
							String io_k8s_api_core_v1_SecretList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							io_k8s_api_core_v1_SecretList_items_data cardinality [1..*] {doc 'Data contains the secret data Each key must consist of alphanumeric characters, _-_, ___ or __ The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here Described in https:_toolsietforg/html/rfc4648#section-4'}
								mandatory
									String io_k8s_api_core_v1_SecretList_items_data_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_SecretList_items_immutable {doc 'Immutable, if set to true, ensures that data stored in the Secret cannot be updated (only object metadata can be modified) If not set to true, the field can be modified at any time Defaulted to nil'}
							String io_k8s_api_core_v1_SecretList_items_kind {default 'Secret', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_core_v1_SecretList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_core_v1_SecretList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_core_v1_SecretList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_SecretList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_SecretList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_SecretList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_SecretList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_core_v1_SecretList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_core_v1_SecretList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_SecretList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_SecretList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_SecretList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_core_v1_SecretList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_core_v1_SecretList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_core_v1_SecretList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_core_v1_SecretList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_SecretList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_SecretList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_core_v1_SecretList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_core_v1_SecretList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_core_v1_SecretList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_core_v1_SecretList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_core_v1_SecretList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_core_v1_SecretList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_core_v1_SecretList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_core_v1_SecretList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_core_v1_SecretList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_core_v1_SecretList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_core_v1_SecretList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_core_v1_SecretList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_SecretList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_SecretList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_core_v1_SecretList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_SecretList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_core_v1_SecretList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_core_v1_SecretList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_core_v1_SecretList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_core_v1_SecretList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_core_v1_SecretList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_core_v1_SecretList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_SecretList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_core_v1_SecretList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_core_v1_SecretList_items_stringData cardinality [1..*] {doc 'stringData allows specifying non-binary secret data in string form It is provided as a write-only input field for convenience All keys and values are merged into the data field on write, overwriting any existing values The stringData field is never output when reading from the API'}
								mandatory
									String io_k8s_api_core_v1_SecretList_items_stringData_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_core_v1_SecretList_items_type {doc 'Used to facilitate programmatic handling of secret data More info: https:_kubernetesio/docs/concepts/configuration/secret/#secret-types'}
				optional
					String io_k8s_api_core_v1_SecretList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_SecretList_kind {default 'SecretList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_SecretList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_core_v1_SecretList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_core_v1_SecretList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_core_v1_SecretList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_SecretList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_core_v1_SecretProjection {doc 'Adapts a secret into a projected volumeThe contents of the target Secret_s Data field will be presented in a projected volume as files using the keys in the Data field as the file names Note that this is identical to a secret volume source without the default mode'}
				optional
					io_k8s_api_core_v1_SecretProjection_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
						mandatory
							String io_k8s_api_core_v1_SecretProjection_items_key {doc 'key is the key to project'}
							String io_k8s_api_core_v1_SecretProjection_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
						optional
							Integer io_k8s_api_core_v1_SecretProjection_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
					String io_k8s_api_core_v1_SecretProjection_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
					io_k8s_api_core_v1_SecretProjection_optional {doc 'optional field specify whether the Secret or its key must be defined'}
			io_k8s_api_core_v1_SecretReference {doc 'SecretReference represents a Secret Reference It has enough information to retrieve secret in any namespace'}
				optional
					String io_k8s_api_core_v1_SecretReference_name {doc 'name is unique within a namespace to reference a secret resource'}
					String io_k8s_api_core_v1_SecretReference_namespace {doc 'namespace defines the space within which the secret name must be unique'}
			io_k8s_api_core_v1_SecretVolumeSource {doc 'Adapts a Secret into a volumeThe contents of the target Secret_s Data field will be presented in a volume as files using the keys in the Data field as the file names Secret volumes support ownership management and SELinux relabeling'}
				optional
					Integer io_k8s_api_core_v1_SecretVolumeSource_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
					io_k8s_api_core_v1_SecretVolumeSource_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
						mandatory
							String io_k8s_api_core_v1_SecretVolumeSource_items_key {doc 'key is the key to project'}
							String io_k8s_api_core_v1_SecretVolumeSource_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
						optional
							Integer io_k8s_api_core_v1_SecretVolumeSource_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
					io_k8s_api_core_v1_SecretVolumeSource_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
					String io_k8s_api_core_v1_SecretVolumeSource_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
			io_k8s_api_core_v1_SecurityContext {doc 'SecurityContext holds security configuration that will be applied to a container Some fields are present in both SecurityContext and PodSecurityContext  When both are set, the values in SecurityContext take precedence'}
				optional
					io_k8s_api_core_v1_SecurityContext_allowPrivilegeEscalation {doc 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process This bool directly controls if the no_new_privs flag will be set on the container process AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN Note that this field cannot be set when specosname is windows'}
					io_k8s_api_core_v1_SecurityContext_appArmorProfile {doc 'appArmorProfile is the AppArmor options to use by this container If set, this profile overrides the pod_s appArmorProfile Note that this field cannot be set when specosname is windows'}
						mandatory
							io_k8s_api_core_v1_SecurityContext_appArmorProfile_type {doc 'type indicates which kind of AppArmor profile will be applied Valid options are:  Localhost - a profile pre-loaded on the node  RuntimeDefault - the container runtime_s default profile  Unconfined - no AppArmor enforcement'}
								alternative
									io_k8s_api_core_v1_SecurityContext_appArmorProfile_type_Unconfined {doc 'Specific value: Unconfined'}
									io_k8s_api_core_v1_SecurityContext_appArmorProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
									io_k8s_api_core_v1_SecurityContext_appArmorProfile_type_Localhost {doc 'Specific value: Localhost'}
						optional
							io_k8s_api_core_v1_SecurityContext_appArmorProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile loaded on the node that should be used The profile must be preconfigured on the node to work Must match the loaded name of the profile Must be set if and only if type is Localhost'}
								mandatory
									io_k8s_api_core_v1_SecurityContext_appArmorProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
					io_k8s_api_core_v1_SecurityContext_capabilities {doc 'The capabilities to add/drop when running containers Defaults to the default set of capabilities granted by the container runtime Note that this field cannot be set when specosname is windows'}
						optional
							io_k8s_api_core_v1_SecurityContext_capabilities_add cardinality [1..*] {doc 'Added capabilities'}
								mandatory
									String io_k8s_api_core_v1_SecurityContext_capabilities_add_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_SecurityContext_capabilities_drop cardinality [1..*] {doc 'Removed capabilities'}
								mandatory
									String io_k8s_api_core_v1_SecurityContext_capabilities_drop_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_SecurityContext_privileged {default false, doc 'Run container in privileged mode Processes in privileged containers are essentially equivalent to root on the host Defaults to false Note that this field cannot be set when specosname is windows'}
					io_k8s_api_core_v1_SecurityContext_procMount {abstract, doc 'procMount denotes the type of proc mount to use for the containers The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths This requires the ProcMountType feature flag to be enabled Note that this field cannot be set when specosname is windows'}
						mandatory
							String io_k8s_api_core_v1_SecurityContext_procMount_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
					io_k8s_api_core_v1_SecurityContext_readOnlyRootFilesystem {doc 'Whether this container has a read-only root filesystem Default is false Note that this field cannot be set when specosname is windows'}
					io_k8s_api_core_v1_SecurityContext_runAsGroup {abstract, doc 'The GID to run the entrypoint of the container process Uses runtime default if unset May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
						mandatory
							Integer io_k8s_api_core_v1_SecurityContext_runAsGroup_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
					io_k8s_api_core_v1_SecurityContext_runAsNonRoot {doc 'Indicates that the container must run as a non-root user If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does If unset or false, no such validation will be performed May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
					io_k8s_api_core_v1_SecurityContext_runAsUser {abstract, doc 'The UID to run the entrypoint of the container process Defaults to user specified in image metadata if unspecified May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
						mandatory
							Integer io_k8s_api_core_v1_SecurityContext_runAsUser_valueInt {doc 'Added String mandatory for changing booleans of boolean_keywords: integer *_name'}
					io_k8s_api_core_v1_SecurityContext_seLinuxOptions {doc 'The SELinux context to be applied to the container If unspecified, the container runtime will allocate a random SELinux context for each container  May also be set in PodSecurityContext  If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is windows'}
						optional
							String io_k8s_api_core_v1_SecurityContext_seLinuxOptions_level {doc 'Level is SELinux level label that applies to the container'}
							String io_k8s_api_core_v1_SecurityContext_seLinuxOptions_role {doc 'Role is a SELinux role label that applies to the container'}
							String io_k8s_api_core_v1_SecurityContext_seLinuxOptions_type {doc 'Type is a SELinux type label that applies to the container'}
							String io_k8s_api_core_v1_SecurityContext_seLinuxOptions_user {doc 'User is a SELinux user label that applies to the container'}
					io_k8s_api_core_v1_SecurityContext_seccompProfile {doc 'The seccomp options to use by this container If seccomp options are provided at both the pod & container level, the container options override the pod options Note that this field cannot be set when specosname is windows'}
						mandatory
							io_k8s_api_core_v1_SecurityContext_seccompProfile_type {doc 'type indicates which kind of seccomp profile will be applied Valid options are:Localhost - a profile defined in a file on the node should be used RuntimeDefault - the container runtime default profile should be used Unconfined - no profile should be applied'}
								alternative
									io_k8s_api_core_v1_SecurityContext_seccompProfile_type_Unconfined {doc 'Specific value: Unconfined'}
									io_k8s_api_core_v1_SecurityContext_seccompProfile_type_RuntimeDefault {doc 'Specific value: RuntimeDefault'}
									io_k8s_api_core_v1_SecurityContext_seccompProfile_type_Localhost {doc 'Specific value: Localhost'}
						optional
							io_k8s_api_core_v1_SecurityContext_seccompProfile_localhostProfile {abstract, doc 'localhostProfile indicates a profile defined in a file on the node should be used The profile must be preconfigured on the node to work Must be a descending path, relative to the kubelet_s configured seccomp profile location Must be set if type is Localhost Must NOT be set for any other type'}
								mandatory
									io_k8s_api_core_v1_SecurityContext_seccompProfile_localhostProfile_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
					io_k8s_api_core_v1_SecurityContext_windowsOptions {doc 'The Windows specific settings applied to all containers If unspecified, the options from the PodSecurityContext will be used If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence Note that this field cannot be set when specosname is linux'}
						optional
							String io_k8s_api_core_v1_SecurityContext_windowsOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
							String io_k8s_api_core_v1_SecurityContext_windowsOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
							io_k8s_api_core_v1_SecurityContext_windowsOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
							String io_k8s_api_core_v1_SecurityContext_windowsOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
			io_k8s_api_core_v1_Service {doc 'Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy'}
				optional
					String io_k8s_api_core_v1_Service_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_Service_kind {default 'Service', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_Service_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_core_v1_Service_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_core_v1_Service_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_Service_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_Service_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_Service_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_Service_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_core_v1_Service_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_core_v1_Service_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_Service_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_Service_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_Service_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_core_v1_Service_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_core_v1_Service_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_core_v1_Service_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_core_v1_Service_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_Service_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_Service_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_core_v1_Service_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_core_v1_Service_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_core_v1_Service_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_core_v1_Service_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_core_v1_Service_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_core_v1_Service_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_core_v1_Service_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_core_v1_Service_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_core_v1_Service_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_core_v1_Service_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_core_v1_Service_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_core_v1_Service_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_Service_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_core_v1_Service_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_core_v1_Service_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_Service_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_Service_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_Service_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_Service_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_core_v1_Service_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_core_v1_Service_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_core_v1_Service_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_Service_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_core_v1_Service_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_core_v1_Service_spec {doc 'Spec defines the behavior of a service https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							io_k8s_api_core_v1_Service_spec_allocateLoadBalancerNodePorts {default true, doc 'allocateLoadBalancerNodePorts defines if NodePorts will be automatically allocated for services with type LoadBalancer  Default is true It may be set to false if the cluster load-balancer does not rely on NodePorts  If the caller requests specific NodePorts (by specifying a value), those requests will be respected, regardless of this field This field may only be set for services with type LoadBalancer and will be cleared if the type is changed to any other type'}
							io_k8s_api_core_v1_Service_spec_clusterIP {doc 'clusterIP is the IP address of the service and is usually assigned randomly If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be blank) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above)  Valid values are None, empty string (), or a valid IP address Setting this to None makes a headless service (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required  Only applies to types ClusterIP, NodePort, and LoadBalancer If this field is specified when creating a Service of type ExternalName, creation will fail This field will be wiped when updating a Service to type ExternalName More info: https:_kubernetesio/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies'}
								alternative
									io_k8s_api_core_v1_Service_spec_clusterIP_None {doc 'Specific value: None'}
									io_k8s_api_core_v1_Service_spec_clusterIP_headless_service {doc 'Specific value: headless_service'}
							io_k8s_api_core_v1_Service_spec_clusterIPs cardinality [1..*] {doc 'ClusterIPs is a list of IP addresses assigned to this service, and are usually assigned randomly  If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be empty) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above)  Valid values are None, empty string (), or a valid IP address  Setting this to None makes a headless service (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required  Only applies to types ClusterIP, NodePort, and LoadBalancer If this field is specified when creating a Service of type ExternalName, creation will fail This field will be wiped when updating a Service to type ExternalName  If this field is not specified, it will be initialized from the clusterIP field  If this field is specified, clients must ensure that clusterIPs[0] and clusterIP have the same valueThis field may hold a maximum of two entries (dual-stack IPs, in either order) These IPs must correspond to the values of the ipFamilies field Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field More info: https:_kubernetesio/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies'}
								alternative
									io_k8s_api_core_v1_Service_spec_clusterIPs_None {doc 'Specific value: None'}
									io_k8s_api_core_v1_Service_spec_clusterIPs_headless_service {doc 'Specific value: headless_service'}
							io_k8s_api_core_v1_Service_spec_externalIPs cardinality [1..*] {doc 'externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service  These IPs are not managed by Kubernetes  The user is responsible for ensuring that traffic arrives at a node with this IP  A common example is external load-balancers that are not part of the Kubernetes system'}
								mandatory
									String io_k8s_api_core_v1_Service_spec_externalIPs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_core_v1_Service_spec_externalName {doc 'externalName is the external reference that discovery mechanisms will return as an alias for this service (eg a DNS CNAME record) No proxying will be involved  Must be a lowercase RFC-1123 hostname (https:_toolsietforg/html/rfc1123) and requires type to be ExternalName'}
							String io_k8s_api_core_v1_Service_spec_externalTrafficPolicy {doc 'externalTrafficPolicy describes how nodes distribute service traffic they receive on one of the Service_s externally-facing addresses (NodePorts, ExternalIPs, and LoadBalancer IPs) If set to Local, the proxy will configure the service in a way that assumes that external load balancers will take care of balancing the service traffic between nodes, and so each node will deliver traffic only to the node-local endpoints of the service, without masquerading the client source IP (Traffic mistakenly sent to a node with no endpoints will be dropped) The default value, Cluster, uses the standard behavior of routing to all endpoints evenly (possibly modified by topology and other features) Note that traffic sent to an External IP or LoadBalancer IP from within the cluster will always get Cluster semantics, but clients sending to a NodePort from within the cluster may need to take traffic policy into account when picking a node'}
							Integer io_k8s_api_core_v1_Service_spec_healthCheckNodePort {doc 'healthCheckNodePort specifies the healthcheck nodePort for the service This only applies when type is set to LoadBalancer and externalTrafficPolicy is set to Local If a value is specified, is in-range, and is not in use, it will be used  If not specified, a value will be automatically allocated  External systems (eg load-balancers) can use this port to determine if a given node holds endpoints for this service or not  If this field is specified when creating a Service which does not need it, creation will fail This field will be wiped when updating a Service to no longer need it (eg changing type) This field cannot be updated once set'}
							String io_k8s_api_core_v1_Service_spec_internalTrafficPolicy {doc 'InternalTrafficPolicy describes how nodes distribute service traffic they receive on the ClusterIP If set to Local, the proxy will assume that pods only want to talk to endpoints of the service on the same node as the pod, dropping the traffic if there are no local endpoints The default value, Cluster, uses the standard behavior of routing to all endpoints evenly (possibly modified by topology and other features)'}
							io_k8s_api_core_v1_Service_spec_ipFamilies cardinality [1..*] {doc 'IPFamilies is a list of IP families (eg IPv4, IPv6) assigned to this service This field is usually assigned automatically based on cluster configuration and the ipFamilyPolicy field If this field is specified manually, the requested family is available in the cluster, and ipFamilyPolicy allows it, it will be used; otherwise creation of the service will fail This field is conditionally mutable: it allows for adding or removing a secondary IP family, but it does not allow changing the primary IP family of the Service Valid values are IPv4 and IPv6  This field only applies to Services of types ClusterIP, NodePort, and LoadBalancer, and does apply to headless services This field will be wiped when updating a Service to type ExternalNameThis field may hold a maximum of two entries (dual-stack families, in either order)  These families must correspond to the values of the clusterIPs field, if specified Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field'}
								alternative
									io_k8s_api_core_v1_Service_spec_ipFamilies_IPv6 {doc 'Specific value: IPv6'}
									io_k8s_api_core_v1_Service_spec_ipFamilies_headless {doc 'Specific value: headless'}
									io_k8s_api_core_v1_Service_spec_ipFamilies_IPv4 {doc 'Specific value: IPv4'}
							io_k8s_api_core_v1_Service_spec_ipFamilyPolicy {doc 'IPFamilyPolicy represents the dual-stack-ness requested or required by this Service If there is no value provided, then this field will be set to SingleStack Services can be SingleStack (a single IP family), PreferDualStack (two IP families on dual-stack configured clusters or a single IP family on single-stack clusters), or RequireDualStack (two IP families on dual-stack configured clusters, otherwise fail) The ipFamilies and clusterIPs fields depend on the value of this field This field will be wiped when updating a service to type ExternalName'}
								alternative
									io_k8s_api_core_v1_Service_spec_ipFamilyPolicy_PreferDualStack {doc 'Specific value: PreferDualStack'}
									io_k8s_api_core_v1_Service_spec_ipFamilyPolicy_SingleStack {doc 'Specific value: SingleStack'}
									io_k8s_api_core_v1_Service_spec_ipFamilyPolicy_RequireDualStack {doc 'Specific value: RequireDualStack'}
							String io_k8s_api_core_v1_Service_spec_loadBalancerClass {doc 'loadBalancerClass is the class of the load balancer implementation this Service belongs to If specified, the value of this field must be a label-style identifier, with an optional prefix, eg internal-vip or examplecom/internal-vip Unprefixed names are reserved for end-users This field can only be set when the Service type is _LoadBalancer_ If not set, the default load balancer implementation is used, today this is typically done through the cloud provider integration, but should apply for any default implementation If set, it is assumed that a load balancer implementation is watching for Services with a matching class Any default load balancer implementation (eg cloud providers) should ignore Services that set this field This field can only be set when creating or updating a Service to type _LoadBalancer_ Once set, it can not be changed This field will be wiped when a service is updated to a non _LoadBalancer_ type'}
							String io_k8s_api_core_v1_Service_spec_loadBalancerIP {doc 'Only applies to Service Type: LoadBalancer This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created This field will be ignored if the cloud-provider does not support the feature Deprecated: This field was under-specified and its meaning varies across implementations Using it is non-portable and it may not support dual-stack Users are encouraged to use implementation-specific annotations when available'}
							io_k8s_api_core_v1_Service_spec_loadBalancerSourceRanges cardinality [1..*] {doc 'If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs This field will be ignored if the cloud-provider does not support the feature More info: https:_kubernetesio/docs/tasks/access-application-cluster/create-external-load-balancer/'}
								mandatory
									String io_k8s_api_core_v1_Service_spec_loadBalancerSourceRanges_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_Service_spec_ports cardinality [1..*] {doc 'The list of ports that are exposed by this service More info: https:_kubernetesio/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies'}
								mandatory
									Integer io_k8s_api_core_v1_Service_spec_ports_port {doc 'The port that will be exposed by this service'}
								optional
									String io_k8s_api_core_v1_Service_spec_ports_appProtocol {doc 'The application protocol for this port This is used as a hint for implementations to offer richer behavior for protocols that they understand This field follows standard Kubernetes label syntax Valid values are either:* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https:_wwwianaorg/assignments/service-names)* Kubernetes-defined prefixed names:  * _kubernetesio/h2c_ - HTTP/2 prior knowledge over cleartext as described in https:_wwwrfc-editororg/rfc/rfc9113html#name-starting-http-2-with-prior-  * _kubernetesio/ws_  - WebSocket over cleartext as described in https:_wwwrfc-editororg/rfc/rfc6455  * _kubernetesio/wss_ - WebSocket over TLS as described in https:_wwwrfc-editororg/rfc/rfc6455* Other protocols should use implementation-defined prefixed names such as mycompanycom/my-custom-protocol'}
									String io_k8s_api_core_v1_Service_spec_ports_name {doc 'The name of this port within the service This must be a DNS_LABEL All ports within a ServiceSpec must have unique names When considering the endpoints for a Service, this must match the _name_ field in the EndpointPort Optional if only one ServicePort is defined on this service'}
									Integer io_k8s_api_core_v1_Service_spec_ports_nodePort {doc 'The port on each node on which this service is exposed when type is NodePort or LoadBalancer  Usually assigned by the system If a value is specified, in-range, and not in use it will be used, otherwise the operation will fail  If not specified, a port will be allocated if this Service requires one  If this field is specified when creating a Service which does not need it, creation will fail This field will be wiped when updating a Service to no longer need it (eg changing type from NodePort to ClusterIP) More info: https:_kubernetesio/docs/concepts/services-networking/service/#type-nodeport'}
									io_k8s_api_core_v1_Service_spec_ports_protocol {doc 'The IP protocol for this port Supports TCP, UDP, and SCTP Default is TCP'}
										alternative
											io_k8s_api_core_v1_Service_spec_ports_protocol_SCTP {doc 'Specific value: SCTP'}
											io_k8s_api_core_v1_Service_spec_ports_protocol_TCP {default, doc 'Specific value: TCP'}
											io_k8s_api_core_v1_Service_spec_ports_protocol_UDP {doc 'Specific value: UDP'}
									io_k8s_api_core_v1_Service_spec_ports_targetPort {doc 'Number or name of the port to access on the pods targeted by the service Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME If this is a string, it will be looked up as a named port in the target Pod_s container ports If this is not specified, the value of the _port_ field is used (an identity map) This field is ignored for services with clusterIP=None, and should be omitted or set equal to the _port_ field More info: https:_kubernetesio/docs/concepts/services-networking/service/#defining-a-service'}
										alternative
											String io_k8s_api_core_v1_Service_spec_ports_targetPort_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_core_v1_Service_spec_ports_targetPort_asInteger {doc 'Sub-feature added of type Integer'}
							io_k8s_api_core_v1_Service_spec_publishNotReadyAddresses {doc 'publishNotReadyAddresses indicates that any agent which deals with endpoints for this Service should disregard any indications of ready/not-ready The primary use case for setting this field is for a StatefulSet_s Headless Service to propagate SRV DNS records for its Pods for the purpose of peer discovery The Kubernetes controllers that generate Endpoints and EndpointSlice resources for Services interpret this to mean that all endpoints are considered ready even if the Pods themselves are not Agents which consume only Kubernetes generated endpoints through the Endpoints or EndpointSlice resources can safely assume this behavior'}
							io_k8s_api_core_v1_Service_spec_selector cardinality [1..*] {doc 'Route service traffic to pods with label keys and values matching this selector If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify Only applies to types ClusterIP, NodePort, and LoadBalancer Ignored if type is ExternalName More info: https:_kubernetesio/docs/concepts/services-networking/service/'}
								mandatory
									String io_k8s_api_core_v1_Service_spec_selector_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_Service_spec_selector_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_Service_spec_sessionAffinity {doc 'Supports ClientIP and None Used to maintain session affinity Enable client IP based session affinity Must be ClientIP or None Defaults to None More info: https:_kubernetesio/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies'}
								alternative
									io_k8s_api_core_v1_Service_spec_sessionAffinity_ClientIP {doc 'Specific value: ClientIP'}
									io_k8s_api_core_v1_Service_spec_sessionAffinity_None {default, doc 'Specific value: None'}
							io_k8s_api_core_v1_Service_spec_sessionAffinityConfig {doc 'sessionAffinityConfig contains the configurations of session affinity'}
								optional
									io_k8s_api_core_v1_Service_spec_sessionAffinityConfig_clientIP {doc 'clientIP contains the configurations of Client IP based session affinity'}
										optional
											Integer io_k8s_api_core_v1_Service_spec_sessionAffinityConfig_clientIP_timeoutSeconds {default 10800, doc 'timeoutSeconds specifies the seconds of ClientIP type session sticky time The value must be >0 && <=86400(for 1 day) if ServiceAffinity == ClientIP Default value is 10800(for 3 hours)'}
							String io_k8s_api_core_v1_Service_spec_trafficDistribution {doc 'TrafficDistribution offers a way to express preferences for how traffic is distributed to Service endpoints Implementations can use this field as a hint, but are not required to guarantee strict adherence If the field is not set, the implementation will apply its default routing strategy If set to PreferClose, implementations should prioritize endpoints that are topologically close (eg, same zone) This is an alpha field and requires enabling ServiceTrafficDistribution feature'}
							io_k8s_api_core_v1_Service_spec_type {doc 'type determines how the Service is exposed Defaults to ClusterIP Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer ClusterIP allocates a cluster-internal IP address for load-balancing to endpoints Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object or EndpointSlice objects If clusterIP is None, no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a virtual IP NodePort builds on ClusterIP and allocates a port on every node which routes to the same endpoints as the clusterIP LoadBalancer builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the same endpoints as the clusterIP ExternalName aliases this service to the specified externalName Several other fields do not apply to ExternalName services More info: https:_kubernetesio/docs/concepts/services-networking/service/#publishing-services-service-types'}
								alternative
									io_k8s_api_core_v1_Service_spec_type_NodePort {doc 'Specific value: NodePort'}
									io_k8s_api_core_v1_Service_spec_type_LoadBalancer {doc 'Specific value: LoadBalancer'}
									io_k8s_api_core_v1_Service_spec_type_ClusterIP {default, doc 'Specific value: ClusterIP'}
									io_k8s_api_core_v1_Service_spec_type_ExternalName {doc 'Specific value: ExternalName'}
					io_k8s_api_core_v1_Service_status {doc 'Most recently observed status of the service Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							io_k8s_api_core_v1_Service_status_conditions cardinality [1..*] {doc 'Current service state'}
								mandatory
									io_k8s_api_core_v1_Service_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another This should be when the underlying condition changed  If that is not known, then using the time when the API field changed is acceptable'}
										optional
											String io_k8s_api_core_v1_Service_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_Service_status_conditions_message {doc 'message is a human readable message indicating details about the transition This may be an empty string'}
									String io_k8s_api_core_v1_Service_status_conditions_reason {doc 'reason contains a programmatic identifier indicating the reason for the condition_s last transition Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API The value should be a CamelCase string This field may not be empty'}
									io_k8s_api_core_v1_Service_status_conditions_status {doc 'status of the condition, one of True, False, Unknown'}
										alternative
											io_k8s_api_core_v1_Service_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_core_v1_Service_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_core_v1_Service_status_conditions_status_True {doc 'Specific value: True'}
									String io_k8s_api_core_v1_Service_status_conditions_type {doc 'type of condition in CamelCase or in fooexamplecom/CamelCase'}
								optional
									Integer io_k8s_api_core_v1_Service_status_conditions_observedGeneration {doc 'observedGeneration represents the metadatageneration that the condition was set based upon For instance, if metadatageneration is currently 12, but the statusconditions[x]observedGeneration is 9, the condition is out of date with respect to the current state of the instance'}
							io_k8s_api_core_v1_Service_status_loadBalancer {doc 'LoadBalancer contains the current status of the load-balancer, if one is present'}
								optional
									io_k8s_api_core_v1_Service_status_loadBalancer_ingress cardinality [1..*] {doc 'Ingress is a list containing ingress points for the load-balancer Traffic intended for the service should be sent to these ingress points'}
										optional
											String io_k8s_api_core_v1_Service_status_loadBalancer_ingress_hostname {doc 'Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)'}
											String io_k8s_api_core_v1_Service_status_loadBalancer_ingress_ip {doc 'IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)'}
											String io_k8s_api_core_v1_Service_status_loadBalancer_ingress_ipMode {doc 'IPMode specifies how the load-balancer IP behaves, and may only be specified when the ip field is specified Setting this to VIP indicates that traffic is delivered to the node with the destination set to the load-balancer_s IP and port Setting this to Proxy indicates that traffic is delivered to the node or pod with the destination set to the node_s IP and node port or the pod_s IP and port Service implementations may use this information to adjust traffic routing'}
											io_k8s_api_core_v1_Service_status_loadBalancer_ingress_ports cardinality [1..*] {doc 'Ports is a list of records of service ports If used, every port defined in the service should have an entry in it'}
												mandatory
													Integer io_k8s_api_core_v1_Service_status_loadBalancer_ingress_ports_port {doc 'Port is the port number of the service port of which status is recorded here'}
													io_k8s_api_core_v1_Service_status_loadBalancer_ingress_ports_protocol {doc 'Protocol is the protocol of the service port of which status is recorded here The supported values are: TCP, UDP, SCTP'}
														alternative
															io_k8s_api_core_v1_Service_status_loadBalancer_ingress_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_core_v1_Service_status_loadBalancer_ingress_ports_protocol_TCP {doc 'Specific value: TCP'}
															io_k8s_api_core_v1_Service_status_loadBalancer_ingress_ports_protocol_UDP {doc 'Specific value: UDP'}
												optional
													String io_k8s_api_core_v1_Service_status_loadBalancer_ingress_ports_error {doc 'Error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use  CamelCase names- cloud provider specific error values must have names that comply with the  format fooexamplecom/CamelCase'}
			io_k8s_api_core_v1_ServiceAccount {doc 'ServiceAccount binds together: * a name, understood by users, and perhaps by peripheral systems, for an identity * a principal that can be authenticated and authorized * a set of secrets'}
				optional
					String io_k8s_api_core_v1_ServiceAccount_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					io_k8s_api_core_v1_ServiceAccount_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted Can be overridden at the pod level'}
					io_k8s_api_core_v1_ServiceAccount_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images in pods that reference this ServiceAccount ImagePullSecrets are distinct from Secrets because Secrets can be mounted in the pod, but ImagePullSecrets are only accessed by the kubelet More info: https:_kubernetesio/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod'}
						optional
							String io_k8s_api_core_v1_ServiceAccount_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
					String io_k8s_api_core_v1_ServiceAccount_kind {default 'ServiceAccount', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_ServiceAccount_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_core_v1_ServiceAccount_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_core_v1_ServiceAccount_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_ServiceAccount_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_ServiceAccount_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_ServiceAccount_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_ServiceAccount_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_core_v1_ServiceAccount_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_core_v1_ServiceAccount_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_core_v1_ServiceAccount_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_core_v1_ServiceAccount_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_ServiceAccount_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_core_v1_ServiceAccount_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_core_v1_ServiceAccount_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_core_v1_ServiceAccount_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_core_v1_ServiceAccount_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_ServiceAccount_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_ServiceAccount_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_core_v1_ServiceAccount_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_core_v1_ServiceAccount_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_core_v1_ServiceAccount_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_core_v1_ServiceAccount_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_core_v1_ServiceAccount_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_core_v1_ServiceAccount_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_core_v1_ServiceAccount_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_core_v1_ServiceAccount_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_core_v1_ServiceAccount_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_core_v1_ServiceAccount_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_core_v1_ServiceAccount_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_core_v1_ServiceAccount_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_ServiceAccount_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_core_v1_ServiceAccount_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_core_v1_ServiceAccount_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_core_v1_ServiceAccount_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_ServiceAccount_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_ServiceAccount_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_ServiceAccount_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_core_v1_ServiceAccount_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_core_v1_ServiceAccount_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_core_v1_ServiceAccount_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_ServiceAccount_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_core_v1_ServiceAccount_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_core_v1_ServiceAccount_secrets cardinality [1..*] {doc 'Secrets is a list of the secrets in the same namespace that pods running using this ServiceAccount are allowed to use Pods are only limited to this list if this service account has a kubernetesio/enforce-mountable-secrets annotation set to true This field should not be used to find auto-generated service account token secrets for use outside of pods Instead, tokens can be requested directly using the TokenRequest API, or service account token secrets can be manually created More info: https:_kubernetesio/docs/concepts/configuration/secret'}
						optional
							String io_k8s_api_core_v1_ServiceAccount_secrets_apiVersion {doc 'API version of the referent'}
							String io_k8s_api_core_v1_ServiceAccount_secrets_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
							String io_k8s_api_core_v1_ServiceAccount_secrets_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							String io_k8s_api_core_v1_ServiceAccount_secrets_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							String io_k8s_api_core_v1_ServiceAccount_secrets_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
							String io_k8s_api_core_v1_ServiceAccount_secrets_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_ServiceAccount_secrets_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
			io_k8s_api_core_v1_ServiceAccountList {doc 'ServiceAccountList is a list of ServiceAccount objects'}
				mandatory
					io_k8s_api_core_v1_ServiceAccountList_items cardinality [1..*] {doc 'List of ServiceAccounts More info: https:_kubernetesio/docs/tasks/configure-pod-container/configure-service-account/'}
						optional
							String io_k8s_api_core_v1_ServiceAccountList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							io_k8s_api_core_v1_ServiceAccountList_items_automountServiceAccountToken {doc 'AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted Can be overridden at the pod level'}
							io_k8s_api_core_v1_ServiceAccountList_items_imagePullSecrets cardinality [1..*] {doc 'ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images in pods that reference this ServiceAccount ImagePullSecrets are distinct from Secrets because Secrets can be mounted in the pod, but ImagePullSecrets are only accessed by the kubelet More info: https:_kubernetesio/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod'}
								optional
									String io_k8s_api_core_v1_ServiceAccountList_items_imagePullSecrets_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							String io_k8s_api_core_v1_ServiceAccountList_items_kind {default 'ServiceAccount', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_core_v1_ServiceAccountList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_core_v1_ServiceAccountList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_core_v1_ServiceAccountList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_ServiceAccountList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_ServiceAccountList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_ServiceAccountList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_ServiceAccountList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_core_v1_ServiceAccountList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_core_v1_ServiceAccountList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_ServiceAccountList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_ServiceAccountList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_ServiceAccountList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_core_v1_ServiceAccountList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_core_v1_ServiceAccountList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_core_v1_ServiceAccountList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_core_v1_ServiceAccountList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_ServiceAccountList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_ServiceAccountList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_core_v1_ServiceAccountList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_core_v1_ServiceAccountList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_core_v1_ServiceAccountList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_core_v1_ServiceAccountList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_core_v1_ServiceAccountList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_core_v1_ServiceAccountList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_core_v1_ServiceAccountList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_core_v1_ServiceAccountList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_core_v1_ServiceAccountList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_core_v1_ServiceAccountList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_core_v1_ServiceAccountList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_core_v1_ServiceAccountList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_ServiceAccountList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_ServiceAccountList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_core_v1_ServiceAccountList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_ServiceAccountList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_core_v1_ServiceAccountList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_core_v1_ServiceAccountList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_core_v1_ServiceAccountList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_core_v1_ServiceAccountList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_core_v1_ServiceAccountList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_core_v1_ServiceAccountList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_ServiceAccountList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_core_v1_ServiceAccountList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_core_v1_ServiceAccountList_items_secrets cardinality [1..*] {doc 'Secrets is a list of the secrets in the same namespace that pods running using this ServiceAccount are allowed to use Pods are only limited to this list if this service account has a kubernetesio/enforce-mountable-secrets annotation set to true This field should not be used to find auto-generated service account token secrets for use outside of pods Instead, tokens can be requested directly using the TokenRequest API, or service account token secrets can be manually created More info: https:_kubernetesio/docs/concepts/configuration/secret'}
								optional
									String io_k8s_api_core_v1_ServiceAccountList_items_secrets_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_core_v1_ServiceAccountList_items_secrets_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
									String io_k8s_api_core_v1_ServiceAccountList_items_secrets_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_core_v1_ServiceAccountList_items_secrets_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									String io_k8s_api_core_v1_ServiceAccountList_items_secrets_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
									String io_k8s_api_core_v1_ServiceAccountList_items_secrets_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_ServiceAccountList_items_secrets_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
				optional
					String io_k8s_api_core_v1_ServiceAccountList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_ServiceAccountList_kind {default 'ServiceAccountList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_ServiceAccountList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_core_v1_ServiceAccountList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_core_v1_ServiceAccountList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_core_v1_ServiceAccountList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_ServiceAccountList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_core_v1_ServiceAccountTokenProjection {doc 'ServiceAccountTokenProjection represents a projected service account token volume This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise)'}
				mandatory
					String io_k8s_api_core_v1_ServiceAccountTokenProjection_path {doc 'path is the path relative to the mount point of the file to project the token into'}
				optional
					String io_k8s_api_core_v1_ServiceAccountTokenProjection_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
					Integer io_k8s_api_core_v1_ServiceAccountTokenProjection_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
			io_k8s_api_core_v1_ServiceList {doc 'ServiceList holds a list of services'}
				mandatory
					io_k8s_api_core_v1_ServiceList_items cardinality [1..*] {doc 'List of services'}
						optional
							String io_k8s_api_core_v1_ServiceList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_core_v1_ServiceList_items_kind {default 'Service', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_core_v1_ServiceList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_core_v1_ServiceList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_core_v1_ServiceList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_ServiceList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_ServiceList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_ServiceList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_ServiceList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_core_v1_ServiceList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_core_v1_ServiceList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_core_v1_ServiceList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_core_v1_ServiceList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_ServiceList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_core_v1_ServiceList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_core_v1_ServiceList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_core_v1_ServiceList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_core_v1_ServiceList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_ServiceList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_ServiceList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_core_v1_ServiceList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_core_v1_ServiceList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_core_v1_ServiceList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_core_v1_ServiceList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_core_v1_ServiceList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_core_v1_ServiceList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_core_v1_ServiceList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_core_v1_ServiceList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_core_v1_ServiceList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_core_v1_ServiceList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_core_v1_ServiceList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_core_v1_ServiceList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_core_v1_ServiceList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_core_v1_ServiceList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_core_v1_ServiceList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_core_v1_ServiceList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_core_v1_ServiceList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_core_v1_ServiceList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_core_v1_ServiceList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_core_v1_ServiceList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_core_v1_ServiceList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_core_v1_ServiceList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_core_v1_ServiceList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_core_v1_ServiceList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_core_v1_ServiceList_items_spec {doc 'Spec defines the behavior of a service https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								optional
									io_k8s_api_core_v1_ServiceList_items_spec_allocateLoadBalancerNodePorts {default true, doc 'allocateLoadBalancerNodePorts defines if NodePorts will be automatically allocated for services with type LoadBalancer  Default is true It may be set to false if the cluster load-balancer does not rely on NodePorts  If the caller requests specific NodePorts (by specifying a value), those requests will be respected, regardless of this field This field may only be set for services with type LoadBalancer and will be cleared if the type is changed to any other type'}
									io_k8s_api_core_v1_ServiceList_items_spec_clusterIP {doc 'clusterIP is the IP address of the service and is usually assigned randomly If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be blank) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above)  Valid values are None, empty string (), or a valid IP address Setting this to None makes a headless service (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required  Only applies to types ClusterIP, NodePort, and LoadBalancer If this field is specified when creating a Service of type ExternalName, creation will fail This field will be wiped when updating a Service to type ExternalName More info: https:_kubernetesio/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies'}
										alternative
											io_k8s_api_core_v1_ServiceList_items_spec_clusterIP_None {doc 'Specific value: None'}
											io_k8s_api_core_v1_ServiceList_items_spec_clusterIP_headless_service {doc 'Specific value: headless_service'}
									io_k8s_api_core_v1_ServiceList_items_spec_clusterIPs cardinality [1..*] {doc 'ClusterIPs is a list of IP addresses assigned to this service, and are usually assigned randomly  If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be empty) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above)  Valid values are None, empty string (), or a valid IP address  Setting this to None makes a headless service (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required  Only applies to types ClusterIP, NodePort, and LoadBalancer If this field is specified when creating a Service of type ExternalName, creation will fail This field will be wiped when updating a Service to type ExternalName  If this field is not specified, it will be initialized from the clusterIP field  If this field is specified, clients must ensure that clusterIPs[0] and clusterIP have the same valueThis field may hold a maximum of two entries (dual-stack IPs, in either order) These IPs must correspond to the values of the ipFamilies field Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field More info: https:_kubernetesio/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies'}
										alternative
											io_k8s_api_core_v1_ServiceList_items_spec_clusterIPs_None {doc 'Specific value: None'}
											io_k8s_api_core_v1_ServiceList_items_spec_clusterIPs_headless_service {doc 'Specific value: headless_service'}
									io_k8s_api_core_v1_ServiceList_items_spec_externalIPs cardinality [1..*] {doc 'externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service  These IPs are not managed by Kubernetes  The user is responsible for ensuring that traffic arrives at a node with this IP  A common example is external load-balancers that are not part of the Kubernetes system'}
										mandatory
											String io_k8s_api_core_v1_ServiceList_items_spec_externalIPs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_core_v1_ServiceList_items_spec_externalName {doc 'externalName is the external reference that discovery mechanisms will return as an alias for this service (eg a DNS CNAME record) No proxying will be involved  Must be a lowercase RFC-1123 hostname (https:_toolsietforg/html/rfc1123) and requires type to be ExternalName'}
									String io_k8s_api_core_v1_ServiceList_items_spec_externalTrafficPolicy {doc 'externalTrafficPolicy describes how nodes distribute service traffic they receive on one of the Service_s externally-facing addresses (NodePorts, ExternalIPs, and LoadBalancer IPs) If set to Local, the proxy will configure the service in a way that assumes that external load balancers will take care of balancing the service traffic between nodes, and so each node will deliver traffic only to the node-local endpoints of the service, without masquerading the client source IP (Traffic mistakenly sent to a node with no endpoints will be dropped) The default value, Cluster, uses the standard behavior of routing to all endpoints evenly (possibly modified by topology and other features) Note that traffic sent to an External IP or LoadBalancer IP from within the cluster will always get Cluster semantics, but clients sending to a NodePort from within the cluster may need to take traffic policy into account when picking a node'}
									Integer io_k8s_api_core_v1_ServiceList_items_spec_healthCheckNodePort {doc 'healthCheckNodePort specifies the healthcheck nodePort for the service This only applies when type is set to LoadBalancer and externalTrafficPolicy is set to Local If a value is specified, is in-range, and is not in use, it will be used  If not specified, a value will be automatically allocated  External systems (eg load-balancers) can use this port to determine if a given node holds endpoints for this service or not  If this field is specified when creating a Service which does not need it, creation will fail This field will be wiped when updating a Service to no longer need it (eg changing type) This field cannot be updated once set'}
									String io_k8s_api_core_v1_ServiceList_items_spec_internalTrafficPolicy {doc 'InternalTrafficPolicy describes how nodes distribute service traffic they receive on the ClusterIP If set to Local, the proxy will assume that pods only want to talk to endpoints of the service on the same node as the pod, dropping the traffic if there are no local endpoints The default value, Cluster, uses the standard behavior of routing to all endpoints evenly (possibly modified by topology and other features)'}
									io_k8s_api_core_v1_ServiceList_items_spec_ipFamilies cardinality [1..*] {doc 'IPFamilies is a list of IP families (eg IPv4, IPv6) assigned to this service This field is usually assigned automatically based on cluster configuration and the ipFamilyPolicy field If this field is specified manually, the requested family is available in the cluster, and ipFamilyPolicy allows it, it will be used; otherwise creation of the service will fail This field is conditionally mutable: it allows for adding or removing a secondary IP family, but it does not allow changing the primary IP family of the Service Valid values are IPv4 and IPv6  This field only applies to Services of types ClusterIP, NodePort, and LoadBalancer, and does apply to headless services This field will be wiped when updating a Service to type ExternalNameThis field may hold a maximum of two entries (dual-stack families, in either order)  These families must correspond to the values of the clusterIPs field, if specified Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field'}
										alternative
											io_k8s_api_core_v1_ServiceList_items_spec_ipFamilies_IPv6 {doc 'Specific value: IPv6'}
											io_k8s_api_core_v1_ServiceList_items_spec_ipFamilies_headless {doc 'Specific value: headless'}
											io_k8s_api_core_v1_ServiceList_items_spec_ipFamilies_IPv4 {doc 'Specific value: IPv4'}
									io_k8s_api_core_v1_ServiceList_items_spec_ipFamilyPolicy {doc 'IPFamilyPolicy represents the dual-stack-ness requested or required by this Service If there is no value provided, then this field will be set to SingleStack Services can be SingleStack (a single IP family), PreferDualStack (two IP families on dual-stack configured clusters or a single IP family on single-stack clusters), or RequireDualStack (two IP families on dual-stack configured clusters, otherwise fail) The ipFamilies and clusterIPs fields depend on the value of this field This field will be wiped when updating a service to type ExternalName'}
										alternative
											io_k8s_api_core_v1_ServiceList_items_spec_ipFamilyPolicy_PreferDualStack {doc 'Specific value: PreferDualStack'}
											io_k8s_api_core_v1_ServiceList_items_spec_ipFamilyPolicy_SingleStack {doc 'Specific value: SingleStack'}
											io_k8s_api_core_v1_ServiceList_items_spec_ipFamilyPolicy_RequireDualStack {doc 'Specific value: RequireDualStack'}
									String io_k8s_api_core_v1_ServiceList_items_spec_loadBalancerClass {doc 'loadBalancerClass is the class of the load balancer implementation this Service belongs to If specified, the value of this field must be a label-style identifier, with an optional prefix, eg internal-vip or examplecom/internal-vip Unprefixed names are reserved for end-users This field can only be set when the Service type is _LoadBalancer_ If not set, the default load balancer implementation is used, today this is typically done through the cloud provider integration, but should apply for any default implementation If set, it is assumed that a load balancer implementation is watching for Services with a matching class Any default load balancer implementation (eg cloud providers) should ignore Services that set this field This field can only be set when creating or updating a Service to type _LoadBalancer_ Once set, it can not be changed This field will be wiped when a service is updated to a non _LoadBalancer_ type'}
									String io_k8s_api_core_v1_ServiceList_items_spec_loadBalancerIP {doc 'Only applies to Service Type: LoadBalancer This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created This field will be ignored if the cloud-provider does not support the feature Deprecated: This field was under-specified and its meaning varies across implementations Using it is non-portable and it may not support dual-stack Users are encouraged to use implementation-specific annotations when available'}
									io_k8s_api_core_v1_ServiceList_items_spec_loadBalancerSourceRanges cardinality [1..*] {doc 'If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs This field will be ignored if the cloud-provider does not support the feature More info: https:_kubernetesio/docs/tasks/access-application-cluster/create-external-load-balancer/'}
										mandatory
											String io_k8s_api_core_v1_ServiceList_items_spec_loadBalancerSourceRanges_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_ServiceList_items_spec_ports cardinality [1..*] {doc 'The list of ports that are exposed by this service More info: https:_kubernetesio/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies'}
										mandatory
											Integer io_k8s_api_core_v1_ServiceList_items_spec_ports_port {doc 'The port that will be exposed by this service'}
										optional
											String io_k8s_api_core_v1_ServiceList_items_spec_ports_appProtocol {doc 'The application protocol for this port This is used as a hint for implementations to offer richer behavior for protocols that they understand This field follows standard Kubernetes label syntax Valid values are either:* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https:_wwwianaorg/assignments/service-names)* Kubernetes-defined prefixed names:  * _kubernetesio/h2c_ - HTTP/2 prior knowledge over cleartext as described in https:_wwwrfc-editororg/rfc/rfc9113html#name-starting-http-2-with-prior-  * _kubernetesio/ws_  - WebSocket over cleartext as described in https:_wwwrfc-editororg/rfc/rfc6455  * _kubernetesio/wss_ - WebSocket over TLS as described in https:_wwwrfc-editororg/rfc/rfc6455* Other protocols should use implementation-defined prefixed names such as mycompanycom/my-custom-protocol'}
											String io_k8s_api_core_v1_ServiceList_items_spec_ports_name {doc 'The name of this port within the service This must be a DNS_LABEL All ports within a ServiceSpec must have unique names When considering the endpoints for a Service, this must match the _name_ field in the EndpointPort Optional if only one ServicePort is defined on this service'}
											Integer io_k8s_api_core_v1_ServiceList_items_spec_ports_nodePort {doc 'The port on each node on which this service is exposed when type is NodePort or LoadBalancer  Usually assigned by the system If a value is specified, in-range, and not in use it will be used, otherwise the operation will fail  If not specified, a port will be allocated if this Service requires one  If this field is specified when creating a Service which does not need it, creation will fail This field will be wiped when updating a Service to no longer need it (eg changing type from NodePort to ClusterIP) More info: https:_kubernetesio/docs/concepts/services-networking/service/#type-nodeport'}
											io_k8s_api_core_v1_ServiceList_items_spec_ports_protocol {doc 'The IP protocol for this port Supports TCP, UDP, and SCTP Default is TCP'}
												alternative
													io_k8s_api_core_v1_ServiceList_items_spec_ports_protocol_SCTP {doc 'Specific value: SCTP'}
													io_k8s_api_core_v1_ServiceList_items_spec_ports_protocol_TCP {default, doc 'Specific value: TCP'}
													io_k8s_api_core_v1_ServiceList_items_spec_ports_protocol_UDP {doc 'Specific value: UDP'}
											io_k8s_api_core_v1_ServiceList_items_spec_ports_targetPort {doc 'Number or name of the port to access on the pods targeted by the service Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME If this is a string, it will be looked up as a named port in the target Pod_s container ports If this is not specified, the value of the _port_ field is used (an identity map) This field is ignored for services with clusterIP=None, and should be omitted or set equal to the _port_ field More info: https:_kubernetesio/docs/concepts/services-networking/service/#defining-a-service'}
												alternative
													String io_k8s_api_core_v1_ServiceList_items_spec_ports_targetPort_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_ServiceList_items_spec_ports_targetPort_asInteger {doc 'Sub-feature added of type Integer'}
									io_k8s_api_core_v1_ServiceList_items_spec_publishNotReadyAddresses {doc 'publishNotReadyAddresses indicates that any agent which deals with endpoints for this Service should disregard any indications of ready/not-ready The primary use case for setting this field is for a StatefulSet_s Headless Service to propagate SRV DNS records for its Pods for the purpose of peer discovery The Kubernetes controllers that generate Endpoints and EndpointSlice resources for Services interpret this to mean that all endpoints are considered ready even if the Pods themselves are not Agents which consume only Kubernetes generated endpoints through the Endpoints or EndpointSlice resources can safely assume this behavior'}
									io_k8s_api_core_v1_ServiceList_items_spec_selector cardinality [1..*] {doc 'Route service traffic to pods with label keys and values matching this selector If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify Only applies to types ClusterIP, NodePort, and LoadBalancer Ignored if type is ExternalName More info: https:_kubernetesio/docs/concepts/services-networking/service/'}
										mandatory
											String io_k8s_api_core_v1_ServiceList_items_spec_selector_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_ServiceList_items_spec_selector_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_core_v1_ServiceList_items_spec_sessionAffinity {doc 'Supports ClientIP and None Used to maintain session affinity Enable client IP based session affinity Must be ClientIP or None Defaults to None More info: https:_kubernetesio/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies'}
										alternative
											io_k8s_api_core_v1_ServiceList_items_spec_sessionAffinity_ClientIP {doc 'Specific value: ClientIP'}
											io_k8s_api_core_v1_ServiceList_items_spec_sessionAffinity_None {default, doc 'Specific value: None'}
									io_k8s_api_core_v1_ServiceList_items_spec_sessionAffinityConfig {doc 'sessionAffinityConfig contains the configurations of session affinity'}
										optional
											io_k8s_api_core_v1_ServiceList_items_spec_sessionAffinityConfig_clientIP {doc 'clientIP contains the configurations of Client IP based session affinity'}
												optional
													Integer io_k8s_api_core_v1_ServiceList_items_spec_sessionAffinityConfig_clientIP_timeoutSeconds {default 10800, doc 'timeoutSeconds specifies the seconds of ClientIP type session sticky time The value must be >0 && <=86400(for 1 day) if ServiceAffinity == ClientIP Default value is 10800(for 3 hours)'}
									String io_k8s_api_core_v1_ServiceList_items_spec_trafficDistribution {doc 'TrafficDistribution offers a way to express preferences for how traffic is distributed to Service endpoints Implementations can use this field as a hint, but are not required to guarantee strict adherence If the field is not set, the implementation will apply its default routing strategy If set to PreferClose, implementations should prioritize endpoints that are topologically close (eg, same zone) This is an alpha field and requires enabling ServiceTrafficDistribution feature'}
									io_k8s_api_core_v1_ServiceList_items_spec_type {doc 'type determines how the Service is exposed Defaults to ClusterIP Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer ClusterIP allocates a cluster-internal IP address for load-balancing to endpoints Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object or EndpointSlice objects If clusterIP is None, no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a virtual IP NodePort builds on ClusterIP and allocates a port on every node which routes to the same endpoints as the clusterIP LoadBalancer builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the same endpoints as the clusterIP ExternalName aliases this service to the specified externalName Several other fields do not apply to ExternalName services More info: https:_kubernetesio/docs/concepts/services-networking/service/#publishing-services-service-types'}
										alternative
											io_k8s_api_core_v1_ServiceList_items_spec_type_NodePort {doc 'Specific value: NodePort'}
											io_k8s_api_core_v1_ServiceList_items_spec_type_LoadBalancer {doc 'Specific value: LoadBalancer'}
											io_k8s_api_core_v1_ServiceList_items_spec_type_ClusterIP {default, doc 'Specific value: ClusterIP'}
											io_k8s_api_core_v1_ServiceList_items_spec_type_ExternalName {doc 'Specific value: ExternalName'}
							io_k8s_api_core_v1_ServiceList_items_status {doc 'Most recently observed status of the service Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								optional
									io_k8s_api_core_v1_ServiceList_items_status_conditions cardinality [1..*] {doc 'Current service state'}
										mandatory
											io_k8s_api_core_v1_ServiceList_items_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another This should be when the underlying condition changed  If that is not known, then using the time when the API field changed is acceptable'}
												optional
													String io_k8s_api_core_v1_ServiceList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_core_v1_ServiceList_items_status_conditions_message {doc 'message is a human readable message indicating details about the transition This may be an empty string'}
											String io_k8s_api_core_v1_ServiceList_items_status_conditions_reason {doc 'reason contains a programmatic identifier indicating the reason for the condition_s last transition Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API The value should be a CamelCase string This field may not be empty'}
											io_k8s_api_core_v1_ServiceList_items_status_conditions_status {doc 'status of the condition, one of True, False, Unknown'}
												alternative
													io_k8s_api_core_v1_ServiceList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_api_core_v1_ServiceList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_api_core_v1_ServiceList_items_status_conditions_status_True {doc 'Specific value: True'}
											String io_k8s_api_core_v1_ServiceList_items_status_conditions_type {doc 'type of condition in CamelCase or in fooexamplecom/CamelCase'}
										optional
											Integer io_k8s_api_core_v1_ServiceList_items_status_conditions_observedGeneration {doc 'observedGeneration represents the metadatageneration that the condition was set based upon For instance, if metadatageneration is currently 12, but the statusconditions[x]observedGeneration is 9, the condition is out of date with respect to the current state of the instance'}
									io_k8s_api_core_v1_ServiceList_items_status_loadBalancer {doc 'LoadBalancer contains the current status of the load-balancer, if one is present'}
										optional
											io_k8s_api_core_v1_ServiceList_items_status_loadBalancer_ingress cardinality [1..*] {doc 'Ingress is a list containing ingress points for the load-balancer Traffic intended for the service should be sent to these ingress points'}
												optional
													String io_k8s_api_core_v1_ServiceList_items_status_loadBalancer_ingress_hostname {doc 'Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)'}
													String io_k8s_api_core_v1_ServiceList_items_status_loadBalancer_ingress_ip {doc 'IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)'}
													String io_k8s_api_core_v1_ServiceList_items_status_loadBalancer_ingress_ipMode {doc 'IPMode specifies how the load-balancer IP behaves, and may only be specified when the ip field is specified Setting this to VIP indicates that traffic is delivered to the node with the destination set to the load-balancer_s IP and port Setting this to Proxy indicates that traffic is delivered to the node or pod with the destination set to the node_s IP and node port or the pod_s IP and port Service implementations may use this information to adjust traffic routing'}
													io_k8s_api_core_v1_ServiceList_items_status_loadBalancer_ingress_ports cardinality [1..*] {doc 'Ports is a list of records of service ports If used, every port defined in the service should have an entry in it'}
														mandatory
															Integer io_k8s_api_core_v1_ServiceList_items_status_loadBalancer_ingress_ports_port {doc 'Port is the port number of the service port of which status is recorded here'}
															io_k8s_api_core_v1_ServiceList_items_status_loadBalancer_ingress_ports_protocol {doc 'Protocol is the protocol of the service port of which status is recorded here The supported values are: TCP, UDP, SCTP'}
																alternative
																	io_k8s_api_core_v1_ServiceList_items_status_loadBalancer_ingress_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_core_v1_ServiceList_items_status_loadBalancer_ingress_ports_protocol_TCP {doc 'Specific value: TCP'}
																	io_k8s_api_core_v1_ServiceList_items_status_loadBalancer_ingress_ports_protocol_UDP {doc 'Specific value: UDP'}
														optional
															String io_k8s_api_core_v1_ServiceList_items_status_loadBalancer_ingress_ports_error {doc 'Error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use  CamelCase names- cloud provider specific error values must have names that comply with the  format fooexamplecom/CamelCase'}
				optional
					String io_k8s_api_core_v1_ServiceList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_core_v1_ServiceList_kind {default 'ServiceList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_core_v1_ServiceList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_api_core_v1_ServiceList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_core_v1_ServiceList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_core_v1_ServiceList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_ServiceList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_core_v1_ServicePort {doc 'ServicePort contains information on service_s port'}
				mandatory
					Integer io_k8s_api_core_v1_ServicePort_port {doc 'The port that will be exposed by this service'}
				optional
					String io_k8s_api_core_v1_ServicePort_appProtocol {doc 'The application protocol for this port This is used as a hint for implementations to offer richer behavior for protocols that they understand This field follows standard Kubernetes label syntax Valid values are either:* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https:_wwwianaorg/assignments/service-names)* Kubernetes-defined prefixed names:  * _kubernetesio/h2c_ - HTTP/2 prior knowledge over cleartext as described in https:_wwwrfc-editororg/rfc/rfc9113html#name-starting-http-2-with-prior-  * _kubernetesio/ws_  - WebSocket over cleartext as described in https:_wwwrfc-editororg/rfc/rfc6455  * _kubernetesio/wss_ - WebSocket over TLS as described in https:_wwwrfc-editororg/rfc/rfc6455* Other protocols should use implementation-defined prefixed names such as mycompanycom/my-custom-protocol'}
					String io_k8s_api_core_v1_ServicePort_name {doc 'The name of this port within the service This must be a DNS_LABEL All ports within a ServiceSpec must have unique names When considering the endpoints for a Service, this must match the _name_ field in the EndpointPort Optional if only one ServicePort is defined on this service'}
					Integer io_k8s_api_core_v1_ServicePort_nodePort {doc 'The port on each node on which this service is exposed when type is NodePort or LoadBalancer  Usually assigned by the system If a value is specified, in-range, and not in use it will be used, otherwise the operation will fail  If not specified, a port will be allocated if this Service requires one  If this field is specified when creating a Service which does not need it, creation will fail This field will be wiped when updating a Service to no longer need it (eg changing type from NodePort to ClusterIP) More info: https:_kubernetesio/docs/concepts/services-networking/service/#type-nodeport'}
					io_k8s_api_core_v1_ServicePort_protocol {doc 'The IP protocol for this port Supports TCP, UDP, and SCTP Default is TCP'}
						alternative
							io_k8s_api_core_v1_ServicePort_protocol_SCTP {doc 'Specific value: SCTP'}
							io_k8s_api_core_v1_ServicePort_protocol_TCP {default, doc 'Specific value: TCP'}
							io_k8s_api_core_v1_ServicePort_protocol_UDP {doc 'Specific value: UDP'}
					io_k8s_api_core_v1_ServicePort_targetPort {doc 'Number or name of the port to access on the pods targeted by the service Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME If this is a string, it will be looked up as a named port in the target Pod_s container ports If this is not specified, the value of the _port_ field is used (an identity map) This field is ignored for services with clusterIP=None, and should be omitted or set equal to the _port_ field More info: https:_kubernetesio/docs/concepts/services-networking/service/#defining-a-service'}
						alternative
							String io_k8s_api_core_v1_ServicePort_targetPort_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_ServicePort_targetPort_asInteger {doc 'Sub-feature added of type Integer'}
			io_k8s_api_core_v1_ServiceSpec {doc 'ServiceSpec describes the attributes that a user creates on a service'}
				optional
					io_k8s_api_core_v1_ServiceSpec_allocateLoadBalancerNodePorts {default true, doc 'allocateLoadBalancerNodePorts defines if NodePorts will be automatically allocated for services with type LoadBalancer  Default is true It may be set to false if the cluster load-balancer does not rely on NodePorts  If the caller requests specific NodePorts (by specifying a value), those requests will be respected, regardless of this field This field may only be set for services with type LoadBalancer and will be cleared if the type is changed to any other type'}
					io_k8s_api_core_v1_ServiceSpec_clusterIP {doc 'clusterIP is the IP address of the service and is usually assigned randomly If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be blank) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above)  Valid values are None, empty string (), or a valid IP address Setting this to None makes a headless service (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required  Only applies to types ClusterIP, NodePort, and LoadBalancer If this field is specified when creating a Service of type ExternalName, creation will fail This field will be wiped when updating a Service to type ExternalName More info: https:_kubernetesio/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies'}
						alternative
							io_k8s_api_core_v1_ServiceSpec_clusterIP_None {doc 'Specific value: None'}
							io_k8s_api_core_v1_ServiceSpec_clusterIP_headless_service {doc 'Specific value: headless_service'}
					io_k8s_api_core_v1_ServiceSpec_clusterIPs cardinality [1..*] {doc 'ClusterIPs is a list of IP addresses assigned to this service, and are usually assigned randomly  If an address is specified manually, is in-range (as per system configuration), and is not in use, it will be allocated to the service; otherwise creation of the service will fail This field may not be changed through updates unless the type field is also being changed to ExternalName (which requires this field to be empty) or the type field is being changed from ExternalName (in which case this field may optionally be specified, as describe above)  Valid values are None, empty string (), or a valid IP address  Setting this to None makes a headless service (no virtual IP), which is useful when direct endpoint connections are preferred and proxying is not required  Only applies to types ClusterIP, NodePort, and LoadBalancer If this field is specified when creating a Service of type ExternalName, creation will fail This field will be wiped when updating a Service to type ExternalName  If this field is not specified, it will be initialized from the clusterIP field  If this field is specified, clients must ensure that clusterIPs[0] and clusterIP have the same valueThis field may hold a maximum of two entries (dual-stack IPs, in either order) These IPs must correspond to the values of the ipFamilies field Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field More info: https:_kubernetesio/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies'}
						alternative
							io_k8s_api_core_v1_ServiceSpec_clusterIPs_None {doc 'Specific value: None'}
							io_k8s_api_core_v1_ServiceSpec_clusterIPs_headless_service {doc 'Specific value: headless_service'}
					io_k8s_api_core_v1_ServiceSpec_externalIPs cardinality [1..*] {doc 'externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service  These IPs are not managed by Kubernetes  The user is responsible for ensuring that traffic arrives at a node with this IP  A common example is external load-balancers that are not part of the Kubernetes system'}
						mandatory
							String io_k8s_api_core_v1_ServiceSpec_externalIPs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					String io_k8s_api_core_v1_ServiceSpec_externalName {doc 'externalName is the external reference that discovery mechanisms will return as an alias for this service (eg a DNS CNAME record) No proxying will be involved  Must be a lowercase RFC-1123 hostname (https:_toolsietforg/html/rfc1123) and requires type to be ExternalName'}
					String io_k8s_api_core_v1_ServiceSpec_externalTrafficPolicy {doc 'externalTrafficPolicy describes how nodes distribute service traffic they receive on one of the Service_s externally-facing addresses (NodePorts, ExternalIPs, and LoadBalancer IPs) If set to Local, the proxy will configure the service in a way that assumes that external load balancers will take care of balancing the service traffic between nodes, and so each node will deliver traffic only to the node-local endpoints of the service, without masquerading the client source IP (Traffic mistakenly sent to a node with no endpoints will be dropped) The default value, Cluster, uses the standard behavior of routing to all endpoints evenly (possibly modified by topology and other features) Note that traffic sent to an External IP or LoadBalancer IP from within the cluster will always get Cluster semantics, but clients sending to a NodePort from within the cluster may need to take traffic policy into account when picking a node'}
					Integer io_k8s_api_core_v1_ServiceSpec_healthCheckNodePort {doc 'healthCheckNodePort specifies the healthcheck nodePort for the service This only applies when type is set to LoadBalancer and externalTrafficPolicy is set to Local If a value is specified, is in-range, and is not in use, it will be used  If not specified, a value will be automatically allocated  External systems (eg load-balancers) can use this port to determine if a given node holds endpoints for this service or not  If this field is specified when creating a Service which does not need it, creation will fail This field will be wiped when updating a Service to no longer need it (eg changing type) This field cannot be updated once set'}
					String io_k8s_api_core_v1_ServiceSpec_internalTrafficPolicy {doc 'InternalTrafficPolicy describes how nodes distribute service traffic they receive on the ClusterIP If set to Local, the proxy will assume that pods only want to talk to endpoints of the service on the same node as the pod, dropping the traffic if there are no local endpoints The default value, Cluster, uses the standard behavior of routing to all endpoints evenly (possibly modified by topology and other features)'}
					io_k8s_api_core_v1_ServiceSpec_ipFamilies cardinality [1..*] {doc 'IPFamilies is a list of IP families (eg IPv4, IPv6) assigned to this service This field is usually assigned automatically based on cluster configuration and the ipFamilyPolicy field If this field is specified manually, the requested family is available in the cluster, and ipFamilyPolicy allows it, it will be used; otherwise creation of the service will fail This field is conditionally mutable: it allows for adding or removing a secondary IP family, but it does not allow changing the primary IP family of the Service Valid values are IPv4 and IPv6  This field only applies to Services of types ClusterIP, NodePort, and LoadBalancer, and does apply to headless services This field will be wiped when updating a Service to type ExternalNameThis field may hold a maximum of two entries (dual-stack families, in either order)  These families must correspond to the values of the clusterIPs field, if specified Both clusterIPs and ipFamilies are governed by the ipFamilyPolicy field'}
						alternative
							io_k8s_api_core_v1_ServiceSpec_ipFamilies_IPv6 {doc 'Specific value: IPv6'}
							io_k8s_api_core_v1_ServiceSpec_ipFamilies_headless {doc 'Specific value: headless'}
							io_k8s_api_core_v1_ServiceSpec_ipFamilies_IPv4 {doc 'Specific value: IPv4'}
					io_k8s_api_core_v1_ServiceSpec_ipFamilyPolicy {doc 'IPFamilyPolicy represents the dual-stack-ness requested or required by this Service If there is no value provided, then this field will be set to SingleStack Services can be SingleStack (a single IP family), PreferDualStack (two IP families on dual-stack configured clusters or a single IP family on single-stack clusters), or RequireDualStack (two IP families on dual-stack configured clusters, otherwise fail) The ipFamilies and clusterIPs fields depend on the value of this field This field will be wiped when updating a service to type ExternalName'}
						alternative
							io_k8s_api_core_v1_ServiceSpec_ipFamilyPolicy_PreferDualStack {doc 'Specific value: PreferDualStack'}
							io_k8s_api_core_v1_ServiceSpec_ipFamilyPolicy_SingleStack {doc 'Specific value: SingleStack'}
							io_k8s_api_core_v1_ServiceSpec_ipFamilyPolicy_RequireDualStack {doc 'Specific value: RequireDualStack'}
					String io_k8s_api_core_v1_ServiceSpec_loadBalancerClass {doc 'loadBalancerClass is the class of the load balancer implementation this Service belongs to If specified, the value of this field must be a label-style identifier, with an optional prefix, eg internal-vip or examplecom/internal-vip Unprefixed names are reserved for end-users This field can only be set when the Service type is _LoadBalancer_ If not set, the default load balancer implementation is used, today this is typically done through the cloud provider integration, but should apply for any default implementation If set, it is assumed that a load balancer implementation is watching for Services with a matching class Any default load balancer implementation (eg cloud providers) should ignore Services that set this field This field can only be set when creating or updating a Service to type _LoadBalancer_ Once set, it can not be changed This field will be wiped when a service is updated to a non _LoadBalancer_ type'}
					String io_k8s_api_core_v1_ServiceSpec_loadBalancerIP {doc 'Only applies to Service Type: LoadBalancer This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created This field will be ignored if the cloud-provider does not support the feature Deprecated: This field was under-specified and its meaning varies across implementations Using it is non-portable and it may not support dual-stack Users are encouraged to use implementation-specific annotations when available'}
					io_k8s_api_core_v1_ServiceSpec_loadBalancerSourceRanges cardinality [1..*] {doc 'If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs This field will be ignored if the cloud-provider does not support the feature More info: https:_kubernetesio/docs/tasks/access-application-cluster/create-external-load-balancer/'}
						mandatory
							String io_k8s_api_core_v1_ServiceSpec_loadBalancerSourceRanges_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_ServiceSpec_ports cardinality [1..*] {doc 'The list of ports that are exposed by this service More info: https:_kubernetesio/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies'}
						mandatory
							Integer io_k8s_api_core_v1_ServiceSpec_ports_port {doc 'The port that will be exposed by this service'}
						optional
							String io_k8s_api_core_v1_ServiceSpec_ports_appProtocol {doc 'The application protocol for this port This is used as a hint for implementations to offer richer behavior for protocols that they understand This field follows standard Kubernetes label syntax Valid values are either:* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https:_wwwianaorg/assignments/service-names)* Kubernetes-defined prefixed names:  * _kubernetesio/h2c_ - HTTP/2 prior knowledge over cleartext as described in https:_wwwrfc-editororg/rfc/rfc9113html#name-starting-http-2-with-prior-  * _kubernetesio/ws_  - WebSocket over cleartext as described in https:_wwwrfc-editororg/rfc/rfc6455  * _kubernetesio/wss_ - WebSocket over TLS as described in https:_wwwrfc-editororg/rfc/rfc6455* Other protocols should use implementation-defined prefixed names such as mycompanycom/my-custom-protocol'}
							String io_k8s_api_core_v1_ServiceSpec_ports_name {doc 'The name of this port within the service This must be a DNS_LABEL All ports within a ServiceSpec must have unique names When considering the endpoints for a Service, this must match the _name_ field in the EndpointPort Optional if only one ServicePort is defined on this service'}
							Integer io_k8s_api_core_v1_ServiceSpec_ports_nodePort {doc 'The port on each node on which this service is exposed when type is NodePort or LoadBalancer  Usually assigned by the system If a value is specified, in-range, and not in use it will be used, otherwise the operation will fail  If not specified, a port will be allocated if this Service requires one  If this field is specified when creating a Service which does not need it, creation will fail This field will be wiped when updating a Service to no longer need it (eg changing type from NodePort to ClusterIP) More info: https:_kubernetesio/docs/concepts/services-networking/service/#type-nodeport'}
							io_k8s_api_core_v1_ServiceSpec_ports_protocol {doc 'The IP protocol for this port Supports TCP, UDP, and SCTP Default is TCP'}
								alternative
									io_k8s_api_core_v1_ServiceSpec_ports_protocol_SCTP {doc 'Specific value: SCTP'}
									io_k8s_api_core_v1_ServiceSpec_ports_protocol_TCP {default, doc 'Specific value: TCP'}
									io_k8s_api_core_v1_ServiceSpec_ports_protocol_UDP {doc 'Specific value: UDP'}
							io_k8s_api_core_v1_ServiceSpec_ports_targetPort {doc 'Number or name of the port to access on the pods targeted by the service Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME If this is a string, it will be looked up as a named port in the target Pod_s container ports If this is not specified, the value of the _port_ field is used (an identity map) This field is ignored for services with clusterIP=None, and should be omitted or set equal to the _port_ field More info: https:_kubernetesio/docs/concepts/services-networking/service/#defining-a-service'}
								alternative
									String io_k8s_api_core_v1_ServiceSpec_ports_targetPort_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_ServiceSpec_ports_targetPort_asInteger {doc 'Sub-feature added of type Integer'}
					io_k8s_api_core_v1_ServiceSpec_publishNotReadyAddresses {doc 'publishNotReadyAddresses indicates that any agent which deals with endpoints for this Service should disregard any indications of ready/not-ready The primary use case for setting this field is for a StatefulSet_s Headless Service to propagate SRV DNS records for its Pods for the purpose of peer discovery The Kubernetes controllers that generate Endpoints and EndpointSlice resources for Services interpret this to mean that all endpoints are considered ready even if the Pods themselves are not Agents which consume only Kubernetes generated endpoints through the Endpoints or EndpointSlice resources can safely assume this behavior'}
					io_k8s_api_core_v1_ServiceSpec_selector cardinality [1..*] {doc 'Route service traffic to pods with label keys and values matching this selector If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify Only applies to types ClusterIP, NodePort, and LoadBalancer Ignored if type is ExternalName More info: https:_kubernetesio/docs/concepts/services-networking/service/'}
						mandatory
							String io_k8s_api_core_v1_ServiceSpec_selector_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							String io_k8s_api_core_v1_ServiceSpec_selector_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_core_v1_ServiceSpec_sessionAffinity {doc 'Supports ClientIP and None Used to maintain session affinity Enable client IP based session affinity Must be ClientIP or None Defaults to None More info: https:_kubernetesio/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies'}
						alternative
							io_k8s_api_core_v1_ServiceSpec_sessionAffinity_ClientIP {doc 'Specific value: ClientIP'}
							io_k8s_api_core_v1_ServiceSpec_sessionAffinity_None {default, doc 'Specific value: None'}
					io_k8s_api_core_v1_ServiceSpec_sessionAffinityConfig {doc 'sessionAffinityConfig contains the configurations of session affinity'}
						optional
							io_k8s_api_core_v1_ServiceSpec_sessionAffinityConfig_clientIP {doc 'clientIP contains the configurations of Client IP based session affinity'}
								optional
									Integer io_k8s_api_core_v1_ServiceSpec_sessionAffinityConfig_clientIP_timeoutSeconds {default 10800, doc 'timeoutSeconds specifies the seconds of ClientIP type session sticky time The value must be >0 && <=86400(for 1 day) if ServiceAffinity == ClientIP Default value is 10800(for 3 hours)'}
					String io_k8s_api_core_v1_ServiceSpec_trafficDistribution {doc 'TrafficDistribution offers a way to express preferences for how traffic is distributed to Service endpoints Implementations can use this field as a hint, but are not required to guarantee strict adherence If the field is not set, the implementation will apply its default routing strategy If set to PreferClose, implementations should prioritize endpoints that are topologically close (eg, same zone) This is an alpha field and requires enabling ServiceTrafficDistribution feature'}
					io_k8s_api_core_v1_ServiceSpec_type {doc 'type determines how the Service is exposed Defaults to ClusterIP Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer ClusterIP allocates a cluster-internal IP address for load-balancing to endpoints Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object or EndpointSlice objects If clusterIP is None, no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a virtual IP NodePort builds on ClusterIP and allocates a port on every node which routes to the same endpoints as the clusterIP LoadBalancer builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the same endpoints as the clusterIP ExternalName aliases this service to the specified externalName Several other fields do not apply to ExternalName services More info: https:_kubernetesio/docs/concepts/services-networking/service/#publishing-services-service-types'}
						alternative
							io_k8s_api_core_v1_ServiceSpec_type_NodePort {doc 'Specific value: NodePort'}
							io_k8s_api_core_v1_ServiceSpec_type_LoadBalancer {doc 'Specific value: LoadBalancer'}
							io_k8s_api_core_v1_ServiceSpec_type_ClusterIP {default, doc 'Specific value: ClusterIP'}
							io_k8s_api_core_v1_ServiceSpec_type_ExternalName {doc 'Specific value: ExternalName'}
			io_k8s_api_core_v1_ServiceStatus {doc 'ServiceStatus represents the current status of a service'}
				optional
					io_k8s_api_core_v1_ServiceStatus_conditions cardinality [1..*] {doc 'Current service state'}
						mandatory
							io_k8s_api_core_v1_ServiceStatus_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another This should be when the underlying condition changed  If that is not known, then using the time when the API field changed is acceptable'}
								optional
									String io_k8s_api_core_v1_ServiceStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_core_v1_ServiceStatus_conditions_message {doc 'message is a human readable message indicating details about the transition This may be an empty string'}
							String io_k8s_api_core_v1_ServiceStatus_conditions_reason {doc 'reason contains a programmatic identifier indicating the reason for the condition_s last transition Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API The value should be a CamelCase string This field may not be empty'}
							io_k8s_api_core_v1_ServiceStatus_conditions_status {doc 'status of the condition, one of True, False, Unknown'}
								alternative
									io_k8s_api_core_v1_ServiceStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_core_v1_ServiceStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_core_v1_ServiceStatus_conditions_status_True {doc 'Specific value: True'}
							String io_k8s_api_core_v1_ServiceStatus_conditions_type {doc 'type of condition in CamelCase or in fooexamplecom/CamelCase'}
						optional
							Integer io_k8s_api_core_v1_ServiceStatus_conditions_observedGeneration {doc 'observedGeneration represents the metadatageneration that the condition was set based upon For instance, if metadatageneration is currently 12, but the statusconditions[x]observedGeneration is 9, the condition is out of date with respect to the current state of the instance'}
					io_k8s_api_core_v1_ServiceStatus_loadBalancer {doc 'LoadBalancer contains the current status of the load-balancer, if one is present'}
						optional
							io_k8s_api_core_v1_ServiceStatus_loadBalancer_ingress cardinality [1..*] {doc 'Ingress is a list containing ingress points for the load-balancer Traffic intended for the service should be sent to these ingress points'}
								optional
									String io_k8s_api_core_v1_ServiceStatus_loadBalancer_ingress_hostname {doc 'Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)'}
									String io_k8s_api_core_v1_ServiceStatus_loadBalancer_ingress_ip {doc 'IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)'}
									String io_k8s_api_core_v1_ServiceStatus_loadBalancer_ingress_ipMode {doc 'IPMode specifies how the load-balancer IP behaves, and may only be specified when the ip field is specified Setting this to VIP indicates that traffic is delivered to the node with the destination set to the load-balancer_s IP and port Setting this to Proxy indicates that traffic is delivered to the node or pod with the destination set to the node_s IP and node port or the pod_s IP and port Service implementations may use this information to adjust traffic routing'}
									io_k8s_api_core_v1_ServiceStatus_loadBalancer_ingress_ports cardinality [1..*] {doc 'Ports is a list of records of service ports If used, every port defined in the service should have an entry in it'}
										mandatory
											Integer io_k8s_api_core_v1_ServiceStatus_loadBalancer_ingress_ports_port {doc 'Port is the port number of the service port of which status is recorded here'}
											io_k8s_api_core_v1_ServiceStatus_loadBalancer_ingress_ports_protocol {doc 'Protocol is the protocol of the service port of which status is recorded here The supported values are: TCP, UDP, SCTP'}
												alternative
													io_k8s_api_core_v1_ServiceStatus_loadBalancer_ingress_ports_protocol_SCTP {doc 'Specific value: SCTP'}
													io_k8s_api_core_v1_ServiceStatus_loadBalancer_ingress_ports_protocol_TCP {doc 'Specific value: TCP'}
													io_k8s_api_core_v1_ServiceStatus_loadBalancer_ingress_ports_protocol_UDP {doc 'Specific value: UDP'}
										optional
											String io_k8s_api_core_v1_ServiceStatus_loadBalancer_ingress_ports_error {doc 'Error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use  CamelCase names- cloud provider specific error values must have names that comply with the  format fooexamplecom/CamelCase'}
			io_k8s_api_core_v1_SessionAffinityConfig {doc 'SessionAffinityConfig represents the configurations of session affinity'}
				optional
					io_k8s_api_core_v1_SessionAffinityConfig_clientIP {doc 'clientIP contains the configurations of Client IP based session affinity'}
						optional
							Integer io_k8s_api_core_v1_SessionAffinityConfig_clientIP_timeoutSeconds {default 10800, doc 'timeoutSeconds specifies the seconds of ClientIP type session sticky time The value must be >0 && <=86400(for 1 day) if ServiceAffinity == ClientIP Default value is 10800(for 3 hours)'}
			io_k8s_api_core_v1_SleepAction {doc 'SleepAction describes a sleep action'}
				mandatory
					Integer io_k8s_api_core_v1_SleepAction_seconds {doc 'Seconds is the number of seconds to sleep'}
			io_k8s_api_core_v1_StorageOSPersistentVolumeSource {doc 'Represents a StorageOS persistent volume resource'}
				optional
					io_k8s_api_core_v1_StorageOSPersistentVolumeSource_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
						alternative
							io_k8s_api_core_v1_StorageOSPersistentVolumeSource_fsType_xfs {doc 'Specific value: xfs'}
							io_k8s_api_core_v1_StorageOSPersistentVolumeSource_fsType_ext4 {default, doc 'Specific value: ext4'}
							io_k8s_api_core_v1_StorageOSPersistentVolumeSource_fsType_ntfs {doc 'Specific value: ntfs'}
					io_k8s_api_core_v1_StorageOSPersistentVolumeSource_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
					io_k8s_api_core_v1_StorageOSPersistentVolumeSource_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
						optional
							String io_k8s_api_core_v1_StorageOSPersistentVolumeSource_secretRef_apiVersion {doc 'API version of the referent'}
							String io_k8s_api_core_v1_StorageOSPersistentVolumeSource_secretRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
							String io_k8s_api_core_v1_StorageOSPersistentVolumeSource_secretRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							String io_k8s_api_core_v1_StorageOSPersistentVolumeSource_secretRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							String io_k8s_api_core_v1_StorageOSPersistentVolumeSource_secretRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
							String io_k8s_api_core_v1_StorageOSPersistentVolumeSource_secretRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_core_v1_StorageOSPersistentVolumeSource_secretRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
					String io_k8s_api_core_v1_StorageOSPersistentVolumeSource_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
					String io_k8s_api_core_v1_StorageOSPersistentVolumeSource_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
			io_k8s_api_core_v1_StorageOSVolumeSource {doc 'Represents a StorageOS persistent volume resource'}
				optional
					io_k8s_api_core_v1_StorageOSVolumeSource_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
						alternative
							io_k8s_api_core_v1_StorageOSVolumeSource_fsType_xfs {doc 'Specific value: xfs'}
							io_k8s_api_core_v1_StorageOSVolumeSource_fsType_ext4 {default, doc 'Specific value: ext4'}
							io_k8s_api_core_v1_StorageOSVolumeSource_fsType_ntfs {doc 'Specific value: ntfs'}
					io_k8s_api_core_v1_StorageOSVolumeSource_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
					io_k8s_api_core_v1_StorageOSVolumeSource_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
						optional
							String io_k8s_api_core_v1_StorageOSVolumeSource_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
					String io_k8s_api_core_v1_StorageOSVolumeSource_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
					String io_k8s_api_core_v1_StorageOSVolumeSource_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
			io_k8s_api_core_v1_Sysctl {doc 'Sysctl defines a kernel parameter to be set'}
				mandatory
					String io_k8s_api_core_v1_Sysctl_name {doc 'Name of a property to set'}
					String io_k8s_api_core_v1_Sysctl_value {doc 'Value of a property to set'}
			io_k8s_api_core_v1_TCPSocketAction {doc 'TCPSocketAction describes an action based on opening a socket'}
				mandatory
					io_k8s_api_core_v1_TCPSocketAction_port {doc 'Number or name of the port to access on the container Number must be in the range 1 to 65535 Name must be an IANA_SVC_NAME'}
						alternative
							String io_k8s_api_core_v1_TCPSocketAction_port_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_TCPSocketAction_port_asInteger {doc 'Sub-feature added of type Integer'}
				optional
					String io_k8s_api_core_v1_TCPSocketAction_host {doc 'Optional: Host name to connect to, defaults to the pod IP'}
			io_k8s_api_core_v1_Taint {doc 'The node this Taint is attached to has the effect on any pod that does not tolerate the Taint'}
				mandatory
					String io_k8s_api_core_v1_Taint_effect {doc 'Required The effect of the taint on pods that do not tolerate the taint Valid effects are NoSchedule, PreferNoSchedule and NoExecute'}
					String io_k8s_api_core_v1_Taint_key {doc 'Required The taint key to be applied to a node'}
				optional
					io_k8s_api_core_v1_Taint_timeAdded {doc 'TimeAdded represents the time at which the taint was added It is only written for NoExecute taints'}
						optional
							String io_k8s_api_core_v1_Taint_timeAdded_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_api_core_v1_Taint_value {doc 'The taint value corresponding to the taint key'}
			io_k8s_api_core_v1_Toleration {doc 'The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>'}
				optional
					io_k8s_api_core_v1_Toleration_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
						alternative
							io_k8s_api_core_v1_Toleration_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
							io_k8s_api_core_v1_Toleration_effect_NoExecute {doc 'Specific value: NoExecute'}
							io_k8s_api_core_v1_Toleration_effect_NoSchedule {doc 'Specific value: NoSchedule'}
					String io_k8s_api_core_v1_Toleration_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
					io_k8s_api_core_v1_Toleration_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
						alternative
							io_k8s_api_core_v1_Toleration_operator_Exists {doc 'Specific value: Exists'}
							io_k8s_api_core_v1_Toleration_operator_Equal {default, doc 'Specific value: Equal'}
					Integer io_k8s_api_core_v1_Toleration_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
					io_k8s_api_core_v1_Toleration_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
						mandatory
							String io_k8s_api_core_v1_Toleration_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
			io_k8s_api_core_v1_TopologySelectorLabelRequirement {doc 'A topology selector requirement is a selector that matches given label This is an alpha feature and may change in the future'}
				mandatory
					String io_k8s_api_core_v1_TopologySelectorLabelRequirement_key {doc 'The label key that the selector applies to'}
					io_k8s_api_core_v1_TopologySelectorLabelRequirement_values cardinality [1..*] {doc 'An array of string values One value must match the label to be selected Each entry in Values is ORed'}
						mandatory
							String io_k8s_api_core_v1_TopologySelectorLabelRequirement_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_TopologySelectorTerm {doc 'A topology selector term represents the result of label queries A null or empty topology selector term matches no objects The requirements of them are ANDed It provides a subset of functionality as NodeSelectorTerm This is an alpha feature and may change in the future'}
				optional
					io_k8s_api_core_v1_TopologySelectorTerm_matchLabelExpressions cardinality [1..*] {doc 'A list of topology selector requirements by labels'}
						mandatory
							String io_k8s_api_core_v1_TopologySelectorTerm_matchLabelExpressions_key {doc 'The label key that the selector applies to'}
							io_k8s_api_core_v1_TopologySelectorTerm_matchLabelExpressions_values cardinality [1..*] {doc 'An array of string values One value must match the label to be selected Each entry in Values is ORed'}
								mandatory
									String io_k8s_api_core_v1_TopologySelectorTerm_matchLabelExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_TopologySpreadConstraint {doc 'TopologySpreadConstraint specifies how to spread matching pods among the given topology'}
				mandatory
					Integer io_k8s_api_core_v1_TopologySpreadConstraint_maxSkew {default 1, doc 'MaxSkew describes the degree to which pods may be unevenly distributed When whenUnsatisfiable=DoNotSchedule, it is the maximum permitted difference between the number of matching pods in the target topology and the global minimum The global minimum is the minimum number of matching pods in an eligible domain or zero if the number of eligible domains is less than MinDomains For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1 | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1) - if MaxSkew is 2, incoming pod can be scheduled onto any zone When whenUnsatisfiable=ScheduleAnyway, it is used to give higher precedence to topologies that satisfy it It_s a required field Default value is 1 and 0 is not allowed'}
					String io_k8s_api_core_v1_TopologySpreadConstraint_topologyKey {doc 'TopologyKey is the key of node labels Nodes that have a label with this key and identical values are considered to be in the same topology We consider each <key, value> as a bucket, and try to put balanced number of pods into each bucket We define a domain as a particular instance of a topology Also, we define an eligible domain as a domain whose nodes meet the requirements of nodeAffinityPolicy and nodeTaintsPolicy eg If TopologyKey is kubernetesio/hostname, each Node is a domain of that topology And, if TopologyKey is topologykubernetesio/zone, each zone is a domain of that topology It_s a required field'}
					String io_k8s_api_core_v1_TopologySpreadConstraint_whenUnsatisfiable {doc 'WhenUnsatisfiable indicates how to deal with a pod if it doesn_t satisfy the spread constraint - DoNotSchedule (default) tells the scheduler not to schedule it - ScheduleAnyway tells the scheduler to schedule the pod in any location,  but giving higher precedence to topologies that would help reduce the  skewA constraint is considered Unsatisfiable for an incoming pod if and only if every possible node assignment for that pod would violate MaxSkew on some topology For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 3/1/1: | zone1 | zone2 | zone3 | | P P P |   P   |   P   | If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies MaxSkew(1) In other words, the cluster can still be imbalanced, but scheduler won_t make it *more* imbalanced It_s a required field'}
				optional
					io_k8s_api_core_v1_TopologySpreadConstraint_labelSelector {doc 'LabelSelector is used to find matching pods Pods that match this label selector are counted to determine the number of pods in their corresponding topology domain'}
						optional
							io_k8s_api_core_v1_TopologySpreadConstraint_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_core_v1_TopologySpreadConstraint_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_core_v1_TopologySpreadConstraint_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_core_v1_TopologySpreadConstraint_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_core_v1_TopologySpreadConstraint_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_core_v1_TopologySpreadConstraint_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_core_v1_TopologySpreadConstraint_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_core_v1_TopologySpreadConstraint_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_core_v1_TopologySpreadConstraint_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_TopologySpreadConstraint_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_core_v1_TopologySpreadConstraint_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_core_v1_TopologySpreadConstraint_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_core_v1_TopologySpreadConstraint_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated The keys are used to lookup values from the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod The same key is forbidden to exist in both MatchLabelKeys and LabelSelector MatchLabelKeys cannot be set when LabelSelector isn_t set Keys that don_t exist in the incoming pod labels will be ignored A null or empty list means only match against labelSelectorThis is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default)'}
						mandatory
							String io_k8s_api_core_v1_TopologySpreadConstraint_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					Integer io_k8s_api_core_v1_TopologySpreadConstraint_minDomains {doc 'MinDomains indicates a minimum number of eligible domains When the number of eligible domains with matching topology keys is less than minDomains, Pod Topology Spread treats global minimum as 0, and then the calculation of Skew is performed And when the number of eligible domains with matching topology keys equals or greater than minDomains, this value has no effect on scheduling As a result, when the number of eligible domains is less than minDomains, scheduler won_t schedule more than maxSkew Pods to those domains If value is nil, the constraint behaves as if MinDomains is equal to 1 Valid values are integers greater than 0 When value is not nil, WhenUnsatisfiable must be DoNotScheduleFor example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same labelSelector spread as 2/2/2: | zone1 | zone2 | zone3 | |  P P  |  P P  |  P P  | The number of domains is less than 5(MinDomains), so global minimum is treated as 0 In this situation, new pod with the same labelSelector cannot be scheduled, because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, it will violate MaxSkew'}
					String io_k8s_api_core_v1_TopologySpreadConstraint_nodeAffinityPolicy {doc 'NodeAffinityPolicy indicates how we will treat Pod_s nodeAffinity/nodeSelector when calculating pod topology spread skew Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations - Ignore: nodeAffinity/nodeSelector are ignored All nodes are included in the calculationsIf this value is nil, the behavior is equivalent to the Honor policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
					String io_k8s_api_core_v1_TopologySpreadConstraint_nodeTaintsPolicy {doc 'NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included - Ignore: node taints are ignored All nodes are includedIf this value is nil, the behavior is equivalent to the Ignore policy This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag'}
			io_k8s_api_core_v1_TypedLocalObjectReference {doc 'TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace'}
				mandatory
					String io_k8s_api_core_v1_TypedLocalObjectReference_kind {doc 'Kind is the type of resource being referenced'}
					String io_k8s_api_core_v1_TypedLocalObjectReference_name {doc 'Name is the name of resource being referenced'}
				optional
					String io_k8s_api_core_v1_TypedLocalObjectReference_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
			io_k8s_api_core_v1_TypedObjectReference {doc 'Auto doc generate for not add empty Strings No descripcion in schemas JSON'}
				mandatory
					String io_k8s_api_core_v1_TypedObjectReference_kind {doc 'Kind is the type of resource being referenced'}
					String io_k8s_api_core_v1_TypedObjectReference_name {doc 'Name is the name of resource being referenced'}
				optional
					String io_k8s_api_core_v1_TypedObjectReference_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
					String io_k8s_api_core_v1_TypedObjectReference_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
			io_k8s_api_core_v1_Volume {doc 'Volume represents a named volume in a pod that may be accessed by any container in the pod'}
				mandatory
					String io_k8s_api_core_v1_Volume_name {doc 'name of the volume Must be a DNS_LABEL and unique within the pod More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
				optional
					io_k8s_api_core_v1_Volume_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
						mandatory
							String io_k8s_api_core_v1_Volume_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
						optional
							io_k8s_api_core_v1_Volume_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
								alternative
									io_k8s_api_core_v1_Volume_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_Volume_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
									io_k8s_api_core_v1_Volume_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
							Integer io_k8s_api_core_v1_Volume_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
							io_k8s_api_core_v1_Volume_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
					io_k8s_api_core_v1_Volume_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
						mandatory
							String io_k8s_api_core_v1_Volume_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
							String io_k8s_api_core_v1_Volume_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
						optional
							io_k8s_api_core_v1_Volume_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
								alternative
									io_k8s_api_core_v1_Volume_azureDisk_cachingMode_None {doc 'Specific value: None'}
									io_k8s_api_core_v1_Volume_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
									io_k8s_api_core_v1_Volume_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
							io_k8s_api_core_v1_Volume_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
								alternative
									io_k8s_api_core_v1_Volume_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_Volume_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
									io_k8s_api_core_v1_Volume_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
							io_k8s_api_core_v1_Volume_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
								alternative
									io_k8s_api_core_v1_Volume_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
									io_k8s_api_core_v1_Volume_azureDisk_kind_Managed {doc 'Specific value: Managed'}
									io_k8s_api_core_v1_Volume_azureDisk_kind_Shared {doc 'Specific value: Shared'}
							io_k8s_api_core_v1_Volume_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
					io_k8s_api_core_v1_Volume_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
						mandatory
							String io_k8s_api_core_v1_Volume_azureFile_secretName {doc 'secretName is the  name of secret that contains Azure Storage Account Name and Key'}
							String io_k8s_api_core_v1_Volume_azureFile_shareName {doc 'shareName is the azure share Name'}
						optional
							io_k8s_api_core_v1_Volume_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
					io_k8s_api_core_v1_Volume_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
						mandatory
							io_k8s_api_core_v1_Volume_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
								mandatory
									String io_k8s_api_core_v1_Volume_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							String io_k8s_api_core_v1_Volume_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
							io_k8s_api_core_v1_Volume_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
							String io_k8s_api_core_v1_Volume_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
							io_k8s_api_core_v1_Volume_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
								optional
									String io_k8s_api_core_v1_Volume_cephfs_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							String io_k8s_api_core_v1_Volume_cephfs_user {doc 'user is optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
					io_k8s_api_core_v1_Volume_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
						mandatory
							String io_k8s_api_core_v1_Volume_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
						optional
							io_k8s_api_core_v1_Volume_cinder_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
								alternative
									io_k8s_api_core_v1_Volume_cinder_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_Volume_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
									io_k8s_api_core_v1_Volume_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
							io_k8s_api_core_v1_Volume_cinder_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
							io_k8s_api_core_v1_Volume_cinder_secretRef {doc 'secretRef is optional: points to a secret object containing parameters used to connect to OpenStack'}
								optional
									String io_k8s_api_core_v1_Volume_cinder_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
					io_k8s_api_core_v1_Volume_configMap {doc 'configMap represents a configMap that should populate this volume'}
						optional
							Integer io_k8s_api_core_v1_Volume_configMap_defaultMode {default 644, doc 'defaultMode is optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
							io_k8s_api_core_v1_Volume_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
								mandatory
									String io_k8s_api_core_v1_Volume_configMap_items_key {doc 'key is the key to project'}
									String io_k8s_api_core_v1_Volume_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
								optional
									Integer io_k8s_api_core_v1_Volume_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
							String io_k8s_api_core_v1_Volume_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							io_k8s_api_core_v1_Volume_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
					io_k8s_api_core_v1_Volume_csi {doc 'csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers (Beta feature)'}
						mandatory
							String io_k8s_api_core_v1_Volume_csi_driver {doc 'driver is the name of the CSI driver that handles this volume Consult with your admin for the correct name as registered in the cluster'}
						optional
							String io_k8s_api_core_v1_Volume_csi_fsType {doc 'fsType to mount Ex ext4, xfs, ntfs If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply'}
							io_k8s_api_core_v1_Volume_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and  may be empty if no secret is required If the secret object contains more than one secret, all secret references are passed'}
								optional
									String io_k8s_api_core_v1_Volume_csi_nodePublishSecretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							io_k8s_api_core_v1_Volume_csi_readOnly {default false, doc 'readOnly specifies a read-only configuration for the volume Defaults to false (read/write)'}
							io_k8s_api_core_v1_Volume_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes stores driver-specific properties that are passed to the CSI driver Consult your driver_s documentation for supported values'}
								mandatory
									String io_k8s_api_core_v1_Volume_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_Volume_downwardAPI {doc 'downwardAPI represents downward API about the pod that should populate this volume'}
						optional
							Integer io_k8s_api_core_v1_Volume_downwardAPI_defaultMode {default 644, doc 'Optional: mode bits to use on created files by default Must be a Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
							io_k8s_api_core_v1_Volume_downwardAPI_items cardinality [1..*] {doc 'Items is a list of downward API volume file'}
								mandatory
									String io_k8s_api_core_v1_Volume_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
								optional
									io_k8s_api_core_v1_Volume_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
										mandatory
											String io_k8s_api_core_v1_Volume_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
										optional
											String io_k8s_api_core_v1_Volume_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
									Integer io_k8s_api_core_v1_Volume_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
									io_k8s_api_core_v1_Volume_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
										mandatory
											String io_k8s_api_core_v1_Volume_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
										optional
											String io_k8s_api_core_v1_Volume_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
											io_k8s_api_core_v1_Volume_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
												alternative
													String io_k8s_api_core_v1_Volume_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_Volume_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_core_v1_Volume_emptyDir {doc 'emptyDir represents a temporary directory that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
						optional
							String io_k8s_api_core_v1_Volume_emptyDir_medium {doc 'medium represents what type of storage medium should back this directory The default is  which means to use the node_s default medium Must be an empty string (default) or Memory More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
							io_k8s_api_core_v1_Volume_emptyDir_sizeLimit {doc 'sizeLimit is the total amount of local storage required for this EmptyDir volume The size limit is also applicable for memory medium The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod The default is nil which means that the limit is undefined More info: https:_kubernetesio/docs/concepts/storage/volumes#emptydir'}
								alternative
									String io_k8s_api_core_v1_Volume_emptyDir_sizeLimit_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_core_v1_Volume_emptyDir_sizeLimit_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_core_v1_Volume_emptyDir_isEmpty {doc 'Added option to select when emptyDir is empty declared {} '}
					io_k8s_api_core_v1_Volume_ephemeral {doc 'ephemeral represents a volume that is handled by a cluster storage driver The volume_s lifecycle is tied to the pod that defines it - it will be created before the pod starts, and deleted when the pod is removedUse this if: a) the volume is only needed while the pod runs, b) features of normal volumes like restoring from snapshot or capacity   tracking are needed,c) the storage driver is specified through a storage class, and d) the storage driver supports dynamic volume provisioning through   a PersistentVolumeClaim (see EphemeralVolumeSource for more   information on the connection between this volume type   and PersistentVolumeClaim)Use PersistentVolumeClaim or one of the vendor-specific APIs for volumes that persist for longer than the lifecycle of an individual podUse CSI for light-weight local ephemeral volumes if the CSI driver is meant to be used that way - see the documentation of the driver for more informationA pod can use both types of ephemeral volumes and persistent volumes at the same time'}
						optional
							io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate {doc 'Will be used to create a stand-alone PVC to provision the volume The pod in which this EphemeralVolumeSource is embedded will be the owner of the PVC, ie the PVC will be deleted together with the pod  The name of the PVC will be <pod name>-<volume name> where <volume name> is the name from the PodSpecVolumes array entry Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long)An existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake Starting the pod is then blocked until the unrelated PVC is removed If such a pre-created PVC is meant to be used by the pod, the PVC has to updated with an owner reference to the pod once the pod exists Normally this should not be necessary, but it may be useful when manually reconstructing a broken clusterThis field is read-only and no changes will be made by Kubernetes to the PVC after it has been createdRequired, must not be nil'}
								mandatory
									io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec {doc 'The specification for the PersistentVolumeClaim The entire content is copied unchanged into the PVC that gets created from this template The same fields as in a PersistentVolumeClaim are also valid here'}
										optional
											io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_accessModes cardinality [1..*] {doc 'accessModes contains the desired access modes the volume should have More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes-1'}
												mandatory
													String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_dataSource {doc 'dataSource field can be used to specify either: * An existing VolumeSnapshot object (snapshotstoragek8sio/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, and dataSourceRef contents will be copied to dataSource when dataSourceRefnamespace is not specified If the namespace is specified, then dataSourceRef will not be copied to dataSource'}
												mandatory
													String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_dataSource_kind {doc 'Kind is the type of resource being referenced'}
													String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_dataSource_name {doc 'Name is the name of resource being referenced'}
												optional
													String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_dataSource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
											io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_dataSourceRef {doc 'dataSourceRef specifies the object from which to populate the volume with data, if a non-empty volume is desired This may be any object from a non-empty API group (non core object) or a PersistentVolumeClaim object When this field is specified, volume binding will only succeed if the type of the specified object matches some installed volume populator or dynamic provisioner This field will replace the functionality of the dataSource field and as such if both fields are non-empty, they must have the same value For backwards compatibility, when namespace isn_t specified in dataSourceRef, both fields (dataSource and dataSourceRef) will be set to the same value automatically if one of them is empty and the other is non-empty When namespace is specified in dataSourceRef, dataSource isn_t set to the same value and must be empty There are three important differences between dataSource and dataSourceRef: * While dataSource only allows two specific types of objects, dataSourceRef  allows any non-core object, as well as PersistentVolumeClaim objects* While dataSource ignores disallowed values (dropping them), dataSourceRef  preserves all values, and generates an error if a disallowed value is  specified* While dataSource only allows local objects, dataSourceRef allows objects  in any namespaces(Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
												mandatory
													String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_dataSourceRef_kind {doc 'Kind is the type of resource being referenced'}
													String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_dataSourceRef_name {doc 'Name is the name of resource being referenced'}
												optional
													String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_dataSourceRef_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
													String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_dataSourceRef_namespace {doc 'Namespace is the namespace of resource being referenced Note that when a namespace is specified, a gatewaynetworkingk8sio/ReferenceGrant object is required in the referent namespace to allow that namespace_s owner to accept the reference See the ReferenceGrant documentation for details (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled'}
											io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_resources {doc 'resources represents the minimum resources the volume should have If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements that are lower than previous value but must still be higher than capacity recorded in the status field of the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#resources'}
												optional
													io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_resources_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_resources_limits_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_resources_limits_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_resources_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
														alternative
															String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_resources_requests_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_resources_requests_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_selector {doc 'selector is a label query over volumes to consider for binding'}
												optional
													io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_storageClassName {doc 'storageClassName is the name of the StorageClass required by the claim More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#class-1'}
											String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_volumeAttributesClassName {doc 'volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim If specified, the CSI driver will create or update the volume with the attributes defined in the corresponding VolumeAttributesClass This has a different purpose than storageClassName, it can be changed after the claim is created An empty string value means that no VolumeAttributesClass will be applied to the claim but it_s not allowed to reset this field to empty string once it is set If unspecified and the PersistentVolumeClaim is unbound, the default VolumeAttributesClass will be set by the persistentvolume controller if it exists If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource exists More info: https:_kubernetesio/docs/concepts/storage/volume-attributes-classes/ (Alpha) Using this field requires the VolumeAttributesClass feature gate to be enabled'}
											String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_volumeMode {doc 'volumeMode defines what type of volume is required by the claim Value of Filesystem is implied when not included in claim spec'}
											String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_volumeName {doc 'volumeName is the binding reference to the PersistentVolume backing this claim'}
								optional
									io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata {doc 'May contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
										optional
											io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
												optional
													String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
											Integer io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
											io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
											Integer io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
											io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
												mandatory
													String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
												optional
													String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
													String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
													io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
														optional
															io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
															io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
													String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
													io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
														alternative
															io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
															io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
													String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_managedFields_subresource {doc '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'}
													io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_managedFields_time {doc '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'}
														optional
															String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
											io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
													String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
													String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
													String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
												optional
													io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
													io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
											String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
											String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
											String io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_core_v1_Volume_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
						optional
							io_k8s_api_core_v1_Volume_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
								alternative
									io_k8s_api_core_v1_Volume_fc_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_Volume_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
									io_k8s_api_core_v1_Volume_fc_fsType_ntfs {doc 'Specific value: ntfs'}
							Integer io_k8s_api_core_v1_Volume_fc_lun {doc 'lun is Optional: FC target lun number'}
							io_k8s_api_core_v1_Volume_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
							io_k8s_api_core_v1_Volume_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
								mandatory
									String io_k8s_api_core_v1_Volume_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_Volume_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
								mandatory
									String io_k8s_api_core_v1_Volume_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_core_v1_Volume_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
						mandatory
							String io_k8s_api_core_v1_Volume_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
						optional
							io_k8s_api_core_v1_Volume_flexVolume_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
								alternative
									io_k8s_api_core_v1_Volume_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_Volume_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
									io_k8s_api_core_v1_Volume_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
							io_k8s_api_core_v1_Volume_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
								mandatory
									String io_k8s_api_core_v1_Volume_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_Volume_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
							io_k8s_api_core_v1_Volume_flexVolume_secretRef {doc 'secretRef is Optional: secretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
								optional
									String io_k8s_api_core_v1_Volume_flexVolume_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
					io_k8s_api_core_v1_Volume_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine This depends on the Flocker control service being running'}
						optional
							io_k8s_api_core_v1_Volume_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
								mandatory
									String io_k8s_api_core_v1_Volume_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							io_k8s_api_core_v1_Volume_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
								mandatory
									String io_k8s_api_core_v1_Volume_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
					io_k8s_api_core_v1_Volume_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
						mandatory
							String io_k8s_api_core_v1_Volume_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
						optional
							io_k8s_api_core_v1_Volume_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
								alternative
									io_k8s_api_core_v1_Volume_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_Volume_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
									io_k8s_api_core_v1_Volume_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
							Integer io_k8s_api_core_v1_Volume_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
							io_k8s_api_core_v1_Volume_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
					io_k8s_api_core_v1_Volume_gitRepo {deprecated, doc 'gitRepo represents a git repository at a particular revision DEPRECATED: GitRepo is deprecated To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod_s container'}
						mandatory
							String io_k8s_api_core_v1_Volume_gitRepo_repository {doc 'repository is the URL'}
						optional
							String io_k8s_api_core_v1_Volume_gitRepo_directory {doc 'directory is the target directory name Must not contain or start with __  If __ is supplied, the volume directory will be the git repository  Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name'}
							String io_k8s_api_core_v1_Volume_gitRepo_revision {doc 'revision is the commit hash for the specified revision'}
					io_k8s_api_core_v1_Volume_glusterfs {doc 'glusterfs represents a Glusterfs mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
						mandatory
							String io_k8s_api_core_v1_Volume_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
							String io_k8s_api_core_v1_Volume_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
						optional
							io_k8s_api_core_v1_Volume_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
					io_k8s_api_core_v1_Volume_hostPath {doc 'hostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container This is generally used for system agents or other privileged things that are allowed to see the host machine Most containers will NOT need this More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
						mandatory
							String io_k8s_api_core_v1_Volume_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
						optional
							String io_k8s_api_core_v1_Volume_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
					io_k8s_api_core_v1_Volume_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_examplesk8sio/volumes/iscsi/READMEmd'}
						mandatory
							String io_k8s_api_core_v1_Volume_iscsi_iqn {doc 'iqn is the target iSCSI Qualified Name'}
							Integer io_k8s_api_core_v1_Volume_iscsi_lun {doc 'lun represents iSCSI Target Lun number'}
							String io_k8s_api_core_v1_Volume_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
						optional
							io_k8s_api_core_v1_Volume_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
							io_k8s_api_core_v1_Volume_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
							io_k8s_api_core_v1_Volume_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
								alternative
									io_k8s_api_core_v1_Volume_iscsi_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_Volume_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
									io_k8s_api_core_v1_Volume_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
							String io_k8s_api_core_v1_Volume_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
							String io_k8s_api_core_v1_Volume_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
							io_k8s_api_core_v1_Volume_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
								mandatory
									String io_k8s_api_core_v1_Volume_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_Volume_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
							io_k8s_api_core_v1_Volume_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
								optional
									String io_k8s_api_core_v1_Volume_iscsi_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
					io_k8s_api_core_v1_Volume_nfs {doc 'nfs represents an NFS mount on the host that shares a pod_s lifetime More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
						mandatory
							String io_k8s_api_core_v1_Volume_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
							String io_k8s_api_core_v1_Volume_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
						optional
							io_k8s_api_core_v1_Volume_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
					io_k8s_api_core_v1_Volume_persistentVolumeClaim {doc 'persistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
						mandatory
							String io_k8s_api_core_v1_Volume_persistentVolumeClaim_claimName {doc 'claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#persistentvolumeclaims'}
						optional
							io_k8s_api_core_v1_Volume_persistentVolumeClaim_readOnly {default false, doc 'readOnly Will force the ReadOnly setting in VolumeMounts Default false'}
					io_k8s_api_core_v1_Volume_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
						mandatory
							String io_k8s_api_core_v1_Volume_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
						optional
							io_k8s_api_core_v1_Volume_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
								alternative
									io_k8s_api_core_v1_Volume_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_Volume_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
									io_k8s_api_core_v1_Volume_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
					io_k8s_api_core_v1_Volume_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
						mandatory
							String io_k8s_api_core_v1_Volume_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
						optional
							io_k8s_api_core_v1_Volume_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
								alternative
									io_k8s_api_core_v1_Volume_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_Volume_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
							io_k8s_api_core_v1_Volume_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
					io_k8s_api_core_v1_Volume_projected {doc 'projected items for all in one resources secrets, configmaps, and downward API'}
						optional
							Integer io_k8s_api_core_v1_Volume_projected_defaultMode {doc 'defaultMode are the mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
							io_k8s_api_core_v1_Volume_projected_sources cardinality [1..*] {doc 'sources is the list of volume projections'}
								optional
									io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
										mandatory
											String io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
										optional
											io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
												optional
													io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
											io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
											String io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
									io_k8s_api_core_v1_Volume_projected_sources_configMap {doc 'configMap information about the configMap data to project'}
										optional
											io_k8s_api_core_v1_Volume_projected_sources_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
												mandatory
													String io_k8s_api_core_v1_Volume_projected_sources_configMap_items_key {doc 'key is the key to project'}
													String io_k8s_api_core_v1_Volume_projected_sources_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
												optional
													Integer io_k8s_api_core_v1_Volume_projected_sources_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
											String io_k8s_api_core_v1_Volume_projected_sources_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_Volume_projected_sources_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
									io_k8s_api_core_v1_Volume_projected_sources_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
										optional
											io_k8s_api_core_v1_Volume_projected_sources_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
												mandatory
													String io_k8s_api_core_v1_Volume_projected_sources_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
												optional
													io_k8s_api_core_v1_Volume_projected_sources_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
														mandatory
															String io_k8s_api_core_v1_Volume_projected_sources_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
														optional
															String io_k8s_api_core_v1_Volume_projected_sources_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
													Integer io_k8s_api_core_v1_Volume_projected_sources_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
													io_k8s_api_core_v1_Volume_projected_sources_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
														mandatory
															String io_k8s_api_core_v1_Volume_projected_sources_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
														optional
															String io_k8s_api_core_v1_Volume_projected_sources_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
															io_k8s_api_core_v1_Volume_projected_sources_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
																alternative
																	String io_k8s_api_core_v1_Volume_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
																	Integer io_k8s_api_core_v1_Volume_projected_sources_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_core_v1_Volume_projected_sources_secret {doc 'secret information about the secret data to project'}
										optional
											io_k8s_api_core_v1_Volume_projected_sources_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
												mandatory
													String io_k8s_api_core_v1_Volume_projected_sources_secret_items_key {doc 'key is the key to project'}
													String io_k8s_api_core_v1_Volume_projected_sources_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
												optional
													Integer io_k8s_api_core_v1_Volume_projected_sources_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
											String io_k8s_api_core_v1_Volume_projected_sources_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											io_k8s_api_core_v1_Volume_projected_sources_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
									io_k8s_api_core_v1_Volume_projected_sources_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
										mandatory
											String io_k8s_api_core_v1_Volume_projected_sources_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
										optional
											String io_k8s_api_core_v1_Volume_projected_sources_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
											Integer io_k8s_api_core_v1_Volume_projected_sources_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
					io_k8s_api_core_v1_Volume_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
						mandatory
							String io_k8s_api_core_v1_Volume_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
							String io_k8s_api_core_v1_Volume_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
						optional
							String io_k8s_api_core_v1_Volume_quobyte_group {doc 'group to map volume access to Default is no group'}
							io_k8s_api_core_v1_Volume_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
							String io_k8s_api_core_v1_Volume_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
							String io_k8s_api_core_v1_Volume_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
					io_k8s_api_core_v1_Volume_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
						mandatory
							String io_k8s_api_core_v1_Volume_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
							io_k8s_api_core_v1_Volume_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
								mandatory
									String io_k8s_api_core_v1_Volume_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							io_k8s_api_core_v1_Volume_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
								alternative
									io_k8s_api_core_v1_Volume_rbd_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_Volume_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
									io_k8s_api_core_v1_Volume_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
							String io_k8s_api_core_v1_Volume_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
							String io_k8s_api_core_v1_Volume_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
							io_k8s_api_core_v1_Volume_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
							io_k8s_api_core_v1_Volume_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
								optional
									String io_k8s_api_core_v1_Volume_rbd_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							String io_k8s_api_core_v1_Volume_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
					io_k8s_api_core_v1_Volume_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
						mandatory
							String io_k8s_api_core_v1_Volume_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
							io_k8s_api_core_v1_Volume_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
								optional
									String io_k8s_api_core_v1_Volume_scaleIO_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							String io_k8s_api_core_v1_Volume_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
						optional
							io_k8s_api_core_v1_Volume_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
								alternative
									io_k8s_api_core_v1_Volume_scaleIO_fsType_xfs {default, doc 'Specific value: xfs'}
									io_k8s_api_core_v1_Volume_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
									io_k8s_api_core_v1_Volume_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
							String io_k8s_api_core_v1_Volume_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
							io_k8s_api_core_v1_Volume_scaleIO_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
							io_k8s_api_core_v1_Volume_scaleIO_sslEnabled {default false, doc 'sslEnabled Flag enable/disable SSL communication with Gateway, default false'}
							io_k8s_api_core_v1_Volume_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
								alternative
									io_k8s_api_core_v1_Volume_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
									io_k8s_api_core_v1_Volume_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
							String io_k8s_api_core_v1_Volume_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
							String io_k8s_api_core_v1_Volume_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
					io_k8s_api_core_v1_Volume_secret {doc 'secret represents a secret that should populate this volume More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
						optional
							Integer io_k8s_api_core_v1_Volume_secret_defaultMode {default 644, doc 'defaultMode is Optional: mode bits used to set permissions on created files by default Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits Defaults to 0644 Directories within the path are not affected by this setting This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
							io_k8s_api_core_v1_Volume_secret_items cardinality [1..*] {doc 'items If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
								mandatory
									String io_k8s_api_core_v1_Volume_secret_items_key {doc 'key is the key to project'}
									String io_k8s_api_core_v1_Volume_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
								optional
									Integer io_k8s_api_core_v1_Volume_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
							io_k8s_api_core_v1_Volume_secret_optional {doc 'optional field specify whether the Secret or its keys must be defined'}
							String io_k8s_api_core_v1_Volume_secret_secretName {doc 'secretName is the name of the secret in the pod_s namespace to use More info: https:_kubernetesio/docs/concepts/storage/volumes#secret'}
					io_k8s_api_core_v1_Volume_storageos {doc 'storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes'}
						optional
							io_k8s_api_core_v1_Volume_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
								alternative
									io_k8s_api_core_v1_Volume_storageos_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_Volume_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
									io_k8s_api_core_v1_Volume_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
							io_k8s_api_core_v1_Volume_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
							io_k8s_api_core_v1_Volume_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
								optional
									String io_k8s_api_core_v1_Volume_storageos_secretRef_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							String io_k8s_api_core_v1_Volume_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
							String io_k8s_api_core_v1_Volume_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
					io_k8s_api_core_v1_Volume_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
						mandatory
							String io_k8s_api_core_v1_Volume_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
						optional
							io_k8s_api_core_v1_Volume_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
								alternative
									io_k8s_api_core_v1_Volume_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
									io_k8s_api_core_v1_Volume_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
									io_k8s_api_core_v1_Volume_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
							String io_k8s_api_core_v1_Volume_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
							String io_k8s_api_core_v1_Volume_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
			io_k8s_api_core_v1_VolumeDevice {doc 'volumeDevice describes a mapping of a raw block device within a container'}
				mandatory
					String io_k8s_api_core_v1_VolumeDevice_devicePath {doc 'devicePath is the path inside of the container that the device will be mapped to'}
					String io_k8s_api_core_v1_VolumeDevice_name {doc 'name must match the name of a persistentVolumeClaim in the pod'}
			io_k8s_api_core_v1_VolumeMount {doc 'VolumeMount describes a mounting of a Volume within a container'}
				mandatory
					String io_k8s_api_core_v1_VolumeMount_mountPath {doc 'Path within the container at which the volume should be mounted  Must not contain _:_'}
					String io_k8s_api_core_v1_VolumeMount_name {doc 'This must match the Name of a Volume'}
				optional
					String io_k8s_api_core_v1_VolumeMount_mountPropagation {doc 'mountPropagation determines how mounts are propagated from the host to container and the other way around When not set, MountPropagationNone is used This field is beta in 110 When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified (which defaults to None)'}
					io_k8s_api_core_v1_VolumeMount_readOnly {default false, doc 'Mounted read-only if true, read-write otherwise (false or unspecified) Defaults to false'}
					String io_k8s_api_core_v1_VolumeMount_recursiveReadOnly {doc 'RecursiveReadOnly specifies whether read-only mounts should be handled recursivelyIf ReadOnly is false, this field has no meaning and must be unspecifiedIf ReadOnly is true, and this field is set to Disabled, the mount is not made recursively read-only  If this field is set to IfPossible, the mount is made recursively read-only, if it is supported by the container runtime  If this field is set to Enabled, the mount is made recursively read-only if it is supported by the container runtime, otherwise the pod will not be started and an error will be generated to indicate the reasonIf this field is set to IfPossible or Enabled, MountPropagation must be set to None (or be unspecified, which defaults to None)If this field is not specified, it is treated as an equivalent of Disabled'}
					String io_k8s_api_core_v1_VolumeMount_subPath {doc 'Path within the volume from which the container_s volume should be mounted Defaults to  (volume_s root)'}
					String io_k8s_api_core_v1_VolumeMount_subPathExpr {doc 'Expanded path within the volume from which the container_s volume should be mounted Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container_s environment Defaults to  (volume_s root) SubPathExpr and SubPath are mutually exclusive'}
			io_k8s_api_core_v1_VolumeMountStatus {doc 'VolumeMountStatus shows status of volume mounts'}
				mandatory
					String io_k8s_api_core_v1_VolumeMountStatus_mountPath {doc 'MountPath corresponds to the original VolumeMount'}
					String io_k8s_api_core_v1_VolumeMountStatus_name {doc 'Name corresponds to the name of the original VolumeMount'}
				optional
					io_k8s_api_core_v1_VolumeMountStatus_readOnly {doc 'ReadOnly corresponds to the original VolumeMount'}
					String io_k8s_api_core_v1_VolumeMountStatus_recursiveReadOnly {doc 'RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts) An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result'}
			io_k8s_api_core_v1_VolumeNodeAffinity {doc 'VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from'}
				optional
					io_k8s_api_core_v1_VolumeNodeAffinity_required {doc 'required specifies hard node constraints that must be met'}
						mandatory
							io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
								optional
									io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
										mandatory
											String io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
											io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
												alternative
													io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
													io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
													io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
										mandatory
											String io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
											io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
												alternative
													io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
													io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
													io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
													io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_core_v1_VolumeProjection {doc 'Projection that may be projected along with other supported volume types'}
				optional
					io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle {doc 'ClusterTrustBundle allows a pod to access the spectrustBundle field of ClusterTrustBundle objects in an auto-updating fileAlpha, gated by the ClusterTrustBundleProjection feature gateClusterTrustBundle objects can either be selected by name, or by the combination of signer name and a label selectorKubelet performs aggressive normalization of the PEM contents written into the pod filesystem  Esoteric PEM features such as inter-block comments and block headers are stripped  Certificates are deduplicated The ordering of certificates within the file is arbitrary, and Kubelet may change the order over time'}
						mandatory
							String io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle_path {doc 'Relative path from the volume root to write the bundle'}
						optional
							io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle_labelSelector {doc 'Select all ClusterTrustBundles that match this label selector  Only has effect if signerName is set  Mutually-exclusive with name  If unset, interpreted as match nothing  If set but empty, interpreted as match everything'}
								optional
									io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							String io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle_name {doc 'Select a single ClusterTrustBundle by object name  Mutually-exclusive with signerName and labelSelector'}
							io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle_optional {doc 'If true, don_t block pod startup if the referenced ClusterTrustBundle(s) aren_t available  If using name, then the named ClusterTrustBundle is allowed not to exist  If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles'}
							String io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle_signerName {doc 'Select all ClusterTrustBundles that match this signer name Mutually-exclusive with name  The contents of all selected ClusterTrustBundles will be unified and deduplicated'}
					io_k8s_api_core_v1_VolumeProjection_configMap {doc 'configMap information about the configMap data to project'}
						optional
							io_k8s_api_core_v1_VolumeProjection_configMap_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
								mandatory
									String io_k8s_api_core_v1_VolumeProjection_configMap_items_key {doc 'key is the key to project'}
									String io_k8s_api_core_v1_VolumeProjection_configMap_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
								optional
									Integer io_k8s_api_core_v1_VolumeProjection_configMap_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
							String io_k8s_api_core_v1_VolumeProjection_configMap_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							io_k8s_api_core_v1_VolumeProjection_configMap_optional {doc 'optional specify whether the ConfigMap or its keys must be defined'}
					io_k8s_api_core_v1_VolumeProjection_downwardAPI {doc 'downwardAPI information about the downwardAPI data to project'}
						optional
							io_k8s_api_core_v1_VolumeProjection_downwardAPI_items cardinality [1..*] {doc 'Items is a list of DownwardAPIVolume file'}
								mandatory
									String io_k8s_api_core_v1_VolumeProjection_downwardAPI_items_path {doc 'Required: Path is  the relative path name of the file to be created Must not be absolute or contain the __ path Must be utf-8 encoded The first item of the relative path must not start with __'}
								optional
									io_k8s_api_core_v1_VolumeProjection_downwardAPI_items_fieldRef {doc 'Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported'}
										mandatory
											String io_k8s_api_core_v1_VolumeProjection_downwardAPI_items_fieldRef_fieldPath {doc 'Path of the field to select in the specified API version'}
										optional
											String io_k8s_api_core_v1_VolumeProjection_downwardAPI_items_fieldRef_apiVersion {doc 'Version of the schema the FieldPath is written in terms of, defaults to v1'}
									Integer io_k8s_api_core_v1_VolumeProjection_downwardAPI_items_mode {doc 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
									io_k8s_api_core_v1_VolumeProjection_downwardAPI_items_resourceFieldRef {doc 'Selects a resource of the container: only resources limits and requests (limitscpu, limitsmemory, requestscpu and requestsmemory) are currently supported'}
										mandatory
											String io_k8s_api_core_v1_VolumeProjection_downwardAPI_items_resourceFieldRef_resource {doc 'Required: resource to select'}
										optional
											String io_k8s_api_core_v1_VolumeProjection_downwardAPI_items_resourceFieldRef_containerName {doc 'Container name: required for volumes, optional for env vars'}
											io_k8s_api_core_v1_VolumeProjection_downwardAPI_items_resourceFieldRef_divisor {doc 'Specifies the output format of the exposed resources, defaults to 1'}
												alternative
													String io_k8s_api_core_v1_VolumeProjection_downwardAPI_items_resourceFieldRef_divisor_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_core_v1_VolumeProjection_downwardAPI_items_resourceFieldRef_divisor_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_core_v1_VolumeProjection_secret {doc 'secret information about the secret data to project'}
						optional
							io_k8s_api_core_v1_VolumeProjection_secret_items cardinality [1..*] {doc 'items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional Paths must be relative and may not contain the __ path or start with __'}
								mandatory
									String io_k8s_api_core_v1_VolumeProjection_secret_items_key {doc 'key is the key to project'}
									String io_k8s_api_core_v1_VolumeProjection_secret_items_path {doc 'path is the relative path of the file to map the key to May not be an absolute path May not contain the path element __ May not start with the string __'}
								optional
									Integer io_k8s_api_core_v1_VolumeProjection_secret_items_mode {doc 'mode is Optional: mode bits used to set permissions on this file Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511 YAML accepts both octal and decimal values, JSON requires decimal values for mode bits If not specified, the volume defaultMode will be used This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set'}
							String io_k8s_api_core_v1_VolumeProjection_secret_name {doc 'Name of the referent This field is effectively required, but due to backwards compatibility is allowed to be empty Instances of this type with an empty value here are almost certainly wrong More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							io_k8s_api_core_v1_VolumeProjection_secret_optional {doc 'optional field specify whether the Secret or its key must be defined'}
					io_k8s_api_core_v1_VolumeProjection_serviceAccountToken {doc 'serviceAccountToken is information about the serviceAccountToken data to project'}
						mandatory
							String io_k8s_api_core_v1_VolumeProjection_serviceAccountToken_path {doc 'path is the path relative to the mount point of the file to project the token into'}
						optional
							String io_k8s_api_core_v1_VolumeProjection_serviceAccountToken_audience {doc 'audience is the intended audience of the token A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token The audience defaults to the identifier of the apiserver'}
							Integer io_k8s_api_core_v1_VolumeProjection_serviceAccountToken_expirationSeconds {default 1, doc 'expirationSeconds is the requested duration of validity of the service account token As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hoursDefaults to 1 hour and must be at least 10 minutes'}
			io_k8s_api_core_v1_VolumeResourceRequirements {doc 'VolumeResourceRequirements describes the storage resource requirements for a volume'}
				optional
					io_k8s_api_core_v1_VolumeResourceRequirements_limits cardinality [1..*] {doc 'Limits describes the maximum amount of compute resources allowed More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
						alternative
							String io_k8s_api_core_v1_VolumeResourceRequirements_limits_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_VolumeResourceRequirements_limits_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_core_v1_VolumeResourceRequirements_requests cardinality [1..*] {doc 'Requests describes the minimum amount of compute resources required If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value Requests cannot exceed Limits More info: https:_kubernetesio/docs/concepts/configuration/manage-resources-containers/'}
						alternative
							String io_k8s_api_core_v1_VolumeResourceRequirements_requests_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_core_v1_VolumeResourceRequirements_requests_asNumber {doc 'Sub-feature added of type Number'}
			io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource {doc 'Represents a vSphere volume resource'}
				mandatory
					String io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
				optional
					io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
						alternative
							io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource_fsType_xfs {doc 'Specific value: xfs'}
							io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource_fsType_ext4 {default, doc 'Specific value: ext4'}
							io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource_fsType_ntfs {doc 'Specific value: ntfs'}
					String io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
					String io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
			io_k8s_api_core_v1_WeightedPodAffinityTerm {doc 'The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)'}
				mandatory
					io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm {doc 'Required A pod affinity term, associated with the corresponding weight'}
						mandatory
							String io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_topologyKey {doc 'This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running Empty topologyKey is not allowed'}
						optional
							io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_labelSelector {doc 'A label query over a set of resources, in this case pods If it_s null, this PodAffinityTerm matches with no Pods'}
								optional
									io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_labelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_labelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_labelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_labelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_labelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_labelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_labelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_labelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_labelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_labelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_matchLabelKeys cardinality [1..*] {doc 'MatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key in (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both matchLabelKeys and labelSelector Also, matchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
								mandatory
									String io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_matchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_mismatchLabelKeys cardinality [1..*] {doc 'MismatchLabelKeys is a set of pod label keys to select which pods will be taken into consideration The keys are used to lookup values from the incoming pod labels, those key-value labels are merged with labelSelector as key notin (value) to select the group of existing pods which pods will be taken into consideration for the incoming pod_s pod (anti) affinity Keys that don_t exist in the incoming pod labels will be ignored The default value is empty The same key is forbidden to exist in both mismatchLabelKeys and labelSelector Also, mismatchLabelKeys cannot be set when labelSelector isn_t set This is an alpha field and requires enabling MatchLabelKeysInPodAffinity feature gate'}
								mandatory
									String io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_mismatchLabelKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_namespaceSelector {doc 'A label query over the set of namespaces that the term applies to The term is applied to the union of the namespaces selected by this field and the ones listed in the namespaces field null selector and null or empty namespaces list means this pod_s namespace An empty selector () matches all namespaces'}
								optional
									io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_namespaces cardinality [1..*] {doc 'namespaces specifies a static list of namespace names that the term applies to The term is applied to the union of the namespaces listed in this field and the ones selected by namespaceSelector null or empty namespaces list and null namespaceSelector means this pod_s namespace'}
								mandatory
									String io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					Integer io_k8s_api_core_v1_WeightedPodAffinityTerm_weight {doc 'weight associated with matching the corresponding podAffinityTerm, in the range 1-100'}
			io_k8s_api_core_v1_WindowsSecurityContextOptions {doc 'WindowsSecurityContextOptions contain Windows-specific options and credentials'}
				optional
					String io_k8s_api_core_v1_WindowsSecurityContextOptions_gmsaCredentialSpec {doc 'GMSACredentialSpec is where the GMSA admission webhook (https:_githubcom/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field'}
					String io_k8s_api_core_v1_WindowsSecurityContextOptions_gmsaCredentialSpecName {doc 'GMSACredentialSpecName is the name of the GMSA credential spec to use'}
					io_k8s_api_core_v1_WindowsSecurityContextOptions_hostProcess {doc 'HostProcess determines if a container should be run as a _Host Process_ container All of a Pod_s containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers) In addition, if HostProcess is true then HostNetwork must also be set to true'}
					String io_k8s_api_core_v1_WindowsSecurityContextOptions_runAsUserName {doc 'The UserName in Windows to run the entrypoint of the container process Defaults to the user specified in image metadata if unspecified May also be set in PodSecurityContext If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence'}
			io_k8s_api_discovery_v1_Endpoint {doc 'Endpoint represents a single logical backend implementing a service'}
				mandatory
					io_k8s_api_discovery_v1_Endpoint_addresses cardinality [1..*] {doc 'addresses of this endpoint The contents of this field are interpreted according to the corresponding EndpointSlice addressType field Consumers must handle different types of addresses in the context of their own capabilities This must contain at least one address but no more than 100 These are all assumed to be fungible and clients may choose to only use the first element Refer to: https:_issuek8sio/106267'}
						mandatory
							String io_k8s_api_discovery_v1_Endpoint_addresses_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					io_k8s_api_discovery_v1_Endpoint_conditions {doc 'conditions contains information about the current status of the endpoint'}
						optional
							io_k8s_api_discovery_v1_Endpoint_conditions_ready {doc 'ready indicates that this endpoint is prepared to receive traffic, according to whatever system is managing the endpoint A nil value indicates an unknown state In most cases consumers should interpret this unknown state as ready For compatibility reasons, ready should never be true for terminating endpoints, except when the normal readiness behavior is being explicitly overridden, for example when the associated Service has set the publishNotReadyAddresses flag'}
							io_k8s_api_discovery_v1_Endpoint_conditions_serving {doc 'serving is identical to ready except that it is set regardless of the terminating state of endpoints This condition should be set to true for a ready endpoint that is terminating If nil, consumers should defer to the ready condition'}
							io_k8s_api_discovery_v1_Endpoint_conditions_terminating {doc 'terminating indicates that this endpoint is terminating A nil value indicates an unknown state Consumers should interpret this unknown state to mean that the endpoint is not terminating'}
					io_k8s_api_discovery_v1_Endpoint_deprecatedTopology cardinality [1..*] {deprecated, doc 'deprecatedTopology contains topology information part of the v1beta1 API This field is deprecated, and will be removed when the v1beta1 API is removed (no sooner than kubernetes v124)  While this field can hold values, it is not writable through the v1 API, and any attempts to write to it will be silently ignored Topology information can be found in the zone and nodeName fields instead'}
						mandatory
							String io_k8s_api_discovery_v1_Endpoint_deprecatedTopology_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_discovery_v1_Endpoint_hints {doc 'hints contains information associated with how an endpoint should be consumed'}
						optional
							io_k8s_api_discovery_v1_Endpoint_hints_forZones cardinality [1..*] {doc 'forZones indicates the zone(s) this endpoint should be consumed by to enable topology aware routing'}
								mandatory
									String io_k8s_api_discovery_v1_Endpoint_hints_forZones_name {doc 'name represents the name of the zone'}
					String io_k8s_api_discovery_v1_Endpoint_hostname {doc 'hostname of this endpoint This field may be used by consumers of endpoints to distinguish endpoints from each other (eg in DNS names) Multiple endpoints which use the same hostname should be considered fungible (eg multiple A values in DNS) Must be lowercase and pass DNS Label (RFC 1123) validation'}
					String io_k8s_api_discovery_v1_Endpoint_nodeName {doc 'nodeName represents the name of the Node hosting this endpoint This can be used to determine endpoints local to a Node'}
					io_k8s_api_discovery_v1_Endpoint_targetRef {doc 'targetRef is a reference to a Kubernetes object that represents this endpoint'}
						optional
							String io_k8s_api_discovery_v1_Endpoint_targetRef_apiVersion {doc 'API version of the referent'}
							String io_k8s_api_discovery_v1_Endpoint_targetRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
							String io_k8s_api_discovery_v1_Endpoint_targetRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							String io_k8s_api_discovery_v1_Endpoint_targetRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							String io_k8s_api_discovery_v1_Endpoint_targetRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
							String io_k8s_api_discovery_v1_Endpoint_targetRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_discovery_v1_Endpoint_targetRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
					String io_k8s_api_discovery_v1_Endpoint_zone {doc 'zone is the name of the Zone this endpoint exists in'}
			io_k8s_api_discovery_v1_EndpointConditions {doc 'EndpointConditions represents the current condition of an endpoint'}
				optional
					io_k8s_api_discovery_v1_EndpointConditions_ready {doc 'ready indicates that this endpoint is prepared to receive traffic, according to whatever system is managing the endpoint A nil value indicates an unknown state In most cases consumers should interpret this unknown state as ready For compatibility reasons, ready should never be true for terminating endpoints, except when the normal readiness behavior is being explicitly overridden, for example when the associated Service has set the publishNotReadyAddresses flag'}
					io_k8s_api_discovery_v1_EndpointConditions_serving {doc 'serving is identical to ready except that it is set regardless of the terminating state of endpoints This condition should be set to true for a ready endpoint that is terminating If nil, consumers should defer to the ready condition'}
					io_k8s_api_discovery_v1_EndpointConditions_terminating {doc 'terminating indicates that this endpoint is terminating A nil value indicates an unknown state Consumers should interpret this unknown state to mean that the endpoint is not terminating'}
			io_k8s_api_discovery_v1_EndpointHints {doc 'EndpointHints provides hints describing how an endpoint should be consumed'}
				optional
					io_k8s_api_discovery_v1_EndpointHints_forZones cardinality [1..*] {doc 'forZones indicates the zone(s) this endpoint should be consumed by to enable topology aware routing'}
						mandatory
							String io_k8s_api_discovery_v1_EndpointHints_forZones_name {doc 'name represents the name of the zone'}
			io_k8s_api_discovery_v1_EndpointPort {doc 'EndpointPort represents a Port used by an EndpointSlice'}
				optional
					String io_k8s_api_discovery_v1_EndpointPort_appProtocol {doc 'The application protocol for this port This is used as a hint for implementations to offer richer behavior for protocols that they understand This field follows standard Kubernetes label syntax Valid values are either:* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https:_wwwianaorg/assignments/service-names)* Kubernetes-defined prefixed names:  * _kubernetesio/h2c_ - HTTP/2 prior knowledge over cleartext as described in https:_wwwrfc-editororg/rfc/rfc9113html#name-starting-http-2-with-prior-  * _kubernetesio/ws_  - WebSocket over cleartext as described in https:_wwwrfc-editororg/rfc/rfc6455  * _kubernetesio/wss_ - WebSocket over TLS as described in https:_wwwrfc-editororg/rfc/rfc6455* Other protocols should use implementation-defined prefixed names such as mycompanycom/my-custom-protocol'}
					String io_k8s_api_discovery_v1_EndpointPort_name {doc 'name represents the name of this port All ports in an EndpointSlice must have a unique name If the EndpointSlice is derived from a Kubernetes service, this corresponds to the Serviceports[]name Name must either be an empty string or pass DNS_LABEL validation: * must be no more than 63 characters long * must consist of lower case alphanumeric characters or _-_ * must start and end with an alphanumeric character Default is empty string'}
					Integer io_k8s_api_discovery_v1_EndpointPort_port {doc 'port represents the port number of the endpoint If this is not specified, ports are not restricted and must be interpreted in the context of the specific consumer'}
					io_k8s_api_discovery_v1_EndpointPort_protocol {doc 'protocol represents the IP protocol for this port Must be UDP, TCP, or SCTP Default is TCP'}
						alternative
							io_k8s_api_discovery_v1_EndpointPort_protocol_SCTP {doc 'Specific value: SCTP'}
							io_k8s_api_discovery_v1_EndpointPort_protocol_TCP {default, doc 'Specific value: TCP'}
							io_k8s_api_discovery_v1_EndpointPort_protocol_UDP {doc 'Specific value: UDP'}
			io_k8s_api_discovery_v1_EndpointSlice {doc 'EndpointSlice represents a subset of the endpoints that implement a service For a given service there may be multiple EndpointSlice objects, selected by labels, which must be joined to produce the full set of endpoints'}
				mandatory
					String io_k8s_api_discovery_v1_EndpointSlice_addressType {doc 'addressType specifies the type of address carried by this EndpointSlice All addresses in this slice must be the same type This field is immutable after creation The following address types are currently supported: * IPv4: Represents an IPv4 Address * IPv6: Represents an IPv6 Address * FQDN: Represents a Fully Qualified Domain Name'}
					io_k8s_api_discovery_v1_EndpointSlice_endpoints cardinality [1..*] {doc 'endpoints is a list of unique endpoints in this slice Each slice may include a maximum of 1000 endpoints'}
						mandatory
							io_k8s_api_discovery_v1_EndpointSlice_endpoints_addresses cardinality [1..*] {doc 'addresses of this endpoint The contents of this field are interpreted according to the corresponding EndpointSlice addressType field Consumers must handle different types of addresses in the context of their own capabilities This must contain at least one address but no more than 100 These are all assumed to be fungible and clients may choose to only use the first element Refer to: https:_issuek8sio/106267'}
								mandatory
									String io_k8s_api_discovery_v1_EndpointSlice_endpoints_addresses_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							io_k8s_api_discovery_v1_EndpointSlice_endpoints_conditions {doc 'conditions contains information about the current status of the endpoint'}
								optional
									io_k8s_api_discovery_v1_EndpointSlice_endpoints_conditions_ready {doc 'ready indicates that this endpoint is prepared to receive traffic, according to whatever system is managing the endpoint A nil value indicates an unknown state In most cases consumers should interpret this unknown state as ready For compatibility reasons, ready should never be true for terminating endpoints, except when the normal readiness behavior is being explicitly overridden, for example when the associated Service has set the publishNotReadyAddresses flag'}
									io_k8s_api_discovery_v1_EndpointSlice_endpoints_conditions_serving {doc 'serving is identical to ready except that it is set regardless of the terminating state of endpoints This condition should be set to true for a ready endpoint that is terminating If nil, consumers should defer to the ready condition'}
									io_k8s_api_discovery_v1_EndpointSlice_endpoints_conditions_terminating {doc 'terminating indicates that this endpoint is terminating A nil value indicates an unknown state Consumers should interpret this unknown state to mean that the endpoint is not terminating'}
							io_k8s_api_discovery_v1_EndpointSlice_endpoints_deprecatedTopology cardinality [1..*] {deprecated, doc 'deprecatedTopology contains topology information part of the v1beta1 API This field is deprecated, and will be removed when the v1beta1 API is removed (no sooner than kubernetes v124)  While this field can hold values, it is not writable through the v1 API, and any attempts to write to it will be silently ignored Topology information can be found in the zone and nodeName fields instead'}
								mandatory
									String io_k8s_api_discovery_v1_EndpointSlice_endpoints_deprecatedTopology_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_discovery_v1_EndpointSlice_endpoints_hints {doc 'hints contains information associated with how an endpoint should be consumed'}
								optional
									io_k8s_api_discovery_v1_EndpointSlice_endpoints_hints_forZones cardinality [1..*] {doc 'forZones indicates the zone(s) this endpoint should be consumed by to enable topology aware routing'}
										mandatory
											String io_k8s_api_discovery_v1_EndpointSlice_endpoints_hints_forZones_name {doc 'name represents the name of the zone'}
							String io_k8s_api_discovery_v1_EndpointSlice_endpoints_hostname {doc 'hostname of this endpoint This field may be used by consumers of endpoints to distinguish endpoints from each other (eg in DNS names) Multiple endpoints which use the same hostname should be considered fungible (eg multiple A values in DNS) Must be lowercase and pass DNS Label (RFC 1123) validation'}
							String io_k8s_api_discovery_v1_EndpointSlice_endpoints_nodeName {doc 'nodeName represents the name of the Node hosting this endpoint This can be used to determine endpoints local to a Node'}
							io_k8s_api_discovery_v1_EndpointSlice_endpoints_targetRef {doc 'targetRef is a reference to a Kubernetes object that represents this endpoint'}
								optional
									String io_k8s_api_discovery_v1_EndpointSlice_endpoints_targetRef_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_discovery_v1_EndpointSlice_endpoints_targetRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
									String io_k8s_api_discovery_v1_EndpointSlice_endpoints_targetRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_discovery_v1_EndpointSlice_endpoints_targetRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									String io_k8s_api_discovery_v1_EndpointSlice_endpoints_targetRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
									String io_k8s_api_discovery_v1_EndpointSlice_endpoints_targetRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_discovery_v1_EndpointSlice_endpoints_targetRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
							String io_k8s_api_discovery_v1_EndpointSlice_endpoints_zone {doc 'zone is the name of the Zone this endpoint exists in'}
				optional
					String io_k8s_api_discovery_v1_EndpointSlice_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_discovery_v1_EndpointSlice_kind {default 'EndpointSlice', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_discovery_v1_EndpointSlice_metadata {doc 'Standard object_s metadata'}
						optional
							io_k8s_api_discovery_v1_EndpointSlice_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_discovery_v1_EndpointSlice_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_discovery_v1_EndpointSlice_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_discovery_v1_EndpointSlice_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_discovery_v1_EndpointSlice_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_discovery_v1_EndpointSlice_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_discovery_v1_EndpointSlice_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_discovery_v1_EndpointSlice_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_discovery_v1_EndpointSlice_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_discovery_v1_EndpointSlice_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_discovery_v1_EndpointSlice_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_discovery_v1_EndpointSlice_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_discovery_v1_EndpointSlice_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_discovery_v1_EndpointSlice_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_discovery_v1_EndpointSlice_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_discovery_v1_EndpointSlice_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_discovery_v1_EndpointSlice_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_discovery_v1_EndpointSlice_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_discovery_v1_EndpointSlice_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_discovery_v1_EndpointSlice_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_discovery_v1_EndpointSlice_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_discovery_v1_EndpointSlice_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_discovery_v1_EndpointSlice_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_discovery_v1_EndpointSlice_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_discovery_v1_EndpointSlice_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_discovery_v1_EndpointSlice_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_discovery_v1_EndpointSlice_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_discovery_v1_EndpointSlice_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_discovery_v1_EndpointSlice_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_discovery_v1_EndpointSlice_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_discovery_v1_EndpointSlice_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_discovery_v1_EndpointSlice_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_discovery_v1_EndpointSlice_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_discovery_v1_EndpointSlice_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_discovery_v1_EndpointSlice_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_discovery_v1_EndpointSlice_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_discovery_v1_EndpointSlice_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_discovery_v1_EndpointSlice_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_discovery_v1_EndpointSlice_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_discovery_v1_EndpointSlice_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_discovery_v1_EndpointSlice_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_discovery_v1_EndpointSlice_ports cardinality [1..*] {doc 'ports specifies the list of network ports exposed by each endpoint in this slice Each port must have a unique name When ports is empty, it indicates that there are no defined ports When a port is defined with a nil port value, it indicates all ports Each slice may include a maximum of 100 ports'}
						optional
							String io_k8s_api_discovery_v1_EndpointSlice_ports_appProtocol {doc 'The application protocol for this port This is used as a hint for implementations to offer richer behavior for protocols that they understand This field follows standard Kubernetes label syntax Valid values are either:* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https:_wwwianaorg/assignments/service-names)* Kubernetes-defined prefixed names:  * _kubernetesio/h2c_ - HTTP/2 prior knowledge over cleartext as described in https:_wwwrfc-editororg/rfc/rfc9113html#name-starting-http-2-with-prior-  * _kubernetesio/ws_  - WebSocket over cleartext as described in https:_wwwrfc-editororg/rfc/rfc6455  * _kubernetesio/wss_ - WebSocket over TLS as described in https:_wwwrfc-editororg/rfc/rfc6455* Other protocols should use implementation-defined prefixed names such as mycompanycom/my-custom-protocol'}
							String io_k8s_api_discovery_v1_EndpointSlice_ports_name {doc 'name represents the name of this port All ports in an EndpointSlice must have a unique name If the EndpointSlice is derived from a Kubernetes service, this corresponds to the Serviceports[]name Name must either be an empty string or pass DNS_LABEL validation: * must be no more than 63 characters long * must consist of lower case alphanumeric characters or _-_ * must start and end with an alphanumeric character Default is empty string'}
							Integer io_k8s_api_discovery_v1_EndpointSlice_ports_port {doc 'port represents the port number of the endpoint If this is not specified, ports are not restricted and must be interpreted in the context of the specific consumer'}
							io_k8s_api_discovery_v1_EndpointSlice_ports_protocol {doc 'protocol represents the IP protocol for this port Must be UDP, TCP, or SCTP Default is TCP'}
								alternative
									io_k8s_api_discovery_v1_EndpointSlice_ports_protocol_SCTP {doc 'Specific value: SCTP'}
									io_k8s_api_discovery_v1_EndpointSlice_ports_protocol_TCP {default, doc 'Specific value: TCP'}
									io_k8s_api_discovery_v1_EndpointSlice_ports_protocol_UDP {doc 'Specific value: UDP'}
			io_k8s_api_discovery_v1_EndpointSliceList {doc 'EndpointSliceList represents a list of endpoint slices'}
				mandatory
					io_k8s_api_discovery_v1_EndpointSliceList_items cardinality [1..*] {doc 'items is the list of endpoint slices'}
						mandatory
							String io_k8s_api_discovery_v1_EndpointSliceList_items_addressType {doc 'addressType specifies the type of address carried by this EndpointSlice All addresses in this slice must be the same type This field is immutable after creation The following address types are currently supported: * IPv4: Represents an IPv4 Address * IPv6: Represents an IPv6 Address * FQDN: Represents a Fully Qualified Domain Name'}
							io_k8s_api_discovery_v1_EndpointSliceList_items_endpoints cardinality [1..*] {doc 'endpoints is a list of unique endpoints in this slice Each slice may include a maximum of 1000 endpoints'}
								mandatory
									io_k8s_api_discovery_v1_EndpointSliceList_items_endpoints_addresses cardinality [1..*] {doc 'addresses of this endpoint The contents of this field are interpreted according to the corresponding EndpointSlice addressType field Consumers must handle different types of addresses in the context of their own capabilities This must contain at least one address but no more than 100 These are all assumed to be fungible and clients may choose to only use the first element Refer to: https:_issuek8sio/106267'}
										mandatory
											String io_k8s_api_discovery_v1_EndpointSliceList_items_endpoints_addresses_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_discovery_v1_EndpointSliceList_items_endpoints_conditions {doc 'conditions contains information about the current status of the endpoint'}
										optional
											io_k8s_api_discovery_v1_EndpointSliceList_items_endpoints_conditions_ready {doc 'ready indicates that this endpoint is prepared to receive traffic, according to whatever system is managing the endpoint A nil value indicates an unknown state In most cases consumers should interpret this unknown state as ready For compatibility reasons, ready should never be true for terminating endpoints, except when the normal readiness behavior is being explicitly overridden, for example when the associated Service has set the publishNotReadyAddresses flag'}
											io_k8s_api_discovery_v1_EndpointSliceList_items_endpoints_conditions_serving {doc 'serving is identical to ready except that it is set regardless of the terminating state of endpoints This condition should be set to true for a ready endpoint that is terminating If nil, consumers should defer to the ready condition'}
											io_k8s_api_discovery_v1_EndpointSliceList_items_endpoints_conditions_terminating {doc 'terminating indicates that this endpoint is terminating A nil value indicates an unknown state Consumers should interpret this unknown state to mean that the endpoint is not terminating'}
									io_k8s_api_discovery_v1_EndpointSliceList_items_endpoints_deprecatedTopology cardinality [1..*] {deprecated, doc 'deprecatedTopology contains topology information part of the v1beta1 API This field is deprecated, and will be removed when the v1beta1 API is removed (no sooner than kubernetes v124)  While this field can hold values, it is not writable through the v1 API, and any attempts to write to it will be silently ignored Topology information can be found in the zone and nodeName fields instead'}
										mandatory
											String io_k8s_api_discovery_v1_EndpointSliceList_items_endpoints_deprecatedTopology_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_discovery_v1_EndpointSliceList_items_endpoints_hints {doc 'hints contains information associated with how an endpoint should be consumed'}
										optional
											io_k8s_api_discovery_v1_EndpointSliceList_items_endpoints_hints_forZones cardinality [1..*] {doc 'forZones indicates the zone(s) this endpoint should be consumed by to enable topology aware routing'}
												mandatory
													String io_k8s_api_discovery_v1_EndpointSliceList_items_endpoints_hints_forZones_name {doc 'name represents the name of the zone'}
									String io_k8s_api_discovery_v1_EndpointSliceList_items_endpoints_hostname {doc 'hostname of this endpoint This field may be used by consumers of endpoints to distinguish endpoints from each other (eg in DNS names) Multiple endpoints which use the same hostname should be considered fungible (eg multiple A values in DNS) Must be lowercase and pass DNS Label (RFC 1123) validation'}
									String io_k8s_api_discovery_v1_EndpointSliceList_items_endpoints_nodeName {doc 'nodeName represents the name of the Node hosting this endpoint This can be used to determine endpoints local to a Node'}
									io_k8s_api_discovery_v1_EndpointSliceList_items_endpoints_targetRef {doc 'targetRef is a reference to a Kubernetes object that represents this endpoint'}
										optional
											String io_k8s_api_discovery_v1_EndpointSliceList_items_endpoints_targetRef_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_discovery_v1_EndpointSliceList_items_endpoints_targetRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
											String io_k8s_api_discovery_v1_EndpointSliceList_items_endpoints_targetRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_discovery_v1_EndpointSliceList_items_endpoints_targetRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											String io_k8s_api_discovery_v1_EndpointSliceList_items_endpoints_targetRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
											String io_k8s_api_discovery_v1_EndpointSliceList_items_endpoints_targetRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
											String io_k8s_api_discovery_v1_EndpointSliceList_items_endpoints_targetRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
									String io_k8s_api_discovery_v1_EndpointSliceList_items_endpoints_zone {doc 'zone is the name of the Zone this endpoint exists in'}
						optional
							String io_k8s_api_discovery_v1_EndpointSliceList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_discovery_v1_EndpointSliceList_items_kind {default 'EndpointSlice', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_discovery_v1_EndpointSliceList_items_metadata {doc 'Standard object_s metadata'}
								optional
									io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_discovery_v1_EndpointSliceList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_discovery_v1_EndpointSliceList_items_ports cardinality [1..*] {doc 'ports specifies the list of network ports exposed by each endpoint in this slice Each port must have a unique name When ports is empty, it indicates that there are no defined ports When a port is defined with a nil port value, it indicates all ports Each slice may include a maximum of 100 ports'}
								optional
									String io_k8s_api_discovery_v1_EndpointSliceList_items_ports_appProtocol {doc 'The application protocol for this port This is used as a hint for implementations to offer richer behavior for protocols that they understand This field follows standard Kubernetes label syntax Valid values are either:* Un-prefixed protocol names - reserved for IANA standard service names (as per RFC-6335 and https:_wwwianaorg/assignments/service-names)* Kubernetes-defined prefixed names:  * _kubernetesio/h2c_ - HTTP/2 prior knowledge over cleartext as described in https:_wwwrfc-editororg/rfc/rfc9113html#name-starting-http-2-with-prior-  * _kubernetesio/ws_  - WebSocket over cleartext as described in https:_wwwrfc-editororg/rfc/rfc6455  * _kubernetesio/wss_ - WebSocket over TLS as described in https:_wwwrfc-editororg/rfc/rfc6455* Other protocols should use implementation-defined prefixed names such as mycompanycom/my-custom-protocol'}
									String io_k8s_api_discovery_v1_EndpointSliceList_items_ports_name {doc 'name represents the name of this port All ports in an EndpointSlice must have a unique name If the EndpointSlice is derived from a Kubernetes service, this corresponds to the Serviceports[]name Name must either be an empty string or pass DNS_LABEL validation: * must be no more than 63 characters long * must consist of lower case alphanumeric characters or _-_ * must start and end with an alphanumeric character Default is empty string'}
									Integer io_k8s_api_discovery_v1_EndpointSliceList_items_ports_port {doc 'port represents the port number of the endpoint If this is not specified, ports are not restricted and must be interpreted in the context of the specific consumer'}
									io_k8s_api_discovery_v1_EndpointSliceList_items_ports_protocol {doc 'protocol represents the IP protocol for this port Must be UDP, TCP, or SCTP Default is TCP'}
										alternative
											io_k8s_api_discovery_v1_EndpointSliceList_items_ports_protocol_SCTP {doc 'Specific value: SCTP'}
											io_k8s_api_discovery_v1_EndpointSliceList_items_ports_protocol_TCP {default, doc 'Specific value: TCP'}
											io_k8s_api_discovery_v1_EndpointSliceList_items_ports_protocol_UDP {doc 'Specific value: UDP'}
				optional
					String io_k8s_api_discovery_v1_EndpointSliceList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_discovery_v1_EndpointSliceList_kind {default 'EndpointSliceList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_discovery_v1_EndpointSliceList_metadata {doc 'Standard list metadata'}
						optional
							String io_k8s_api_discovery_v1_EndpointSliceList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_discovery_v1_EndpointSliceList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_discovery_v1_EndpointSliceList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_discovery_v1_EndpointSliceList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_discovery_v1_ForZone {doc 'ForZone provides information about which zones should consume this endpoint'}
				mandatory
					String io_k8s_api_discovery_v1_ForZone_name {doc 'name represents the name of the zone'}
			io_k8s_api_events_v1_Event {doc 'Event is a report of an event somewhere in the cluster It generally denotes some state change in the system Events have a limited retention time and triggers and messages may evolve with time  Event consumers should not rely on the timing of an event with a given Reason reflecting a consistent underlying trigger, or the continued existence of events with that Reason  Events should be treated as informative, best-effort, supplemental data'}
				mandatory
					io_k8s_api_events_v1_Event_eventTime {doc 'eventTime is the time when this Event was first observed It is required'}
						optional
							String io_k8s_api_events_v1_Event_eventTime_MicroTime {doc 'MicroTime is version of Time with microsecond level precision'}
				optional
					String io_k8s_api_events_v1_Event_action {doc 'action is what action was taken/failed regarding to the regarding object It is machine-readable This field cannot be empty for new Events and it can have at most 128 characters'}
					String io_k8s_api_events_v1_Event_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					Integer io_k8s_api_events_v1_Event_deprecatedCount {deprecated, doc 'deprecatedCount is the deprecated field assuring backward compatibility with corev1 Event type'}
					io_k8s_api_events_v1_Event_deprecatedFirstTimestamp {deprecated, doc 'deprecatedFirstTimestamp is the deprecated field assuring backward compatibility with corev1 Event type'}
						optional
							String io_k8s_api_events_v1_Event_deprecatedFirstTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					io_k8s_api_events_v1_Event_deprecatedLastTimestamp {deprecated, doc 'deprecatedLastTimestamp is the deprecated field assuring backward compatibility with corev1 Event type'}
						optional
							String io_k8s_api_events_v1_Event_deprecatedLastTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					io_k8s_api_events_v1_Event_deprecatedSource {deprecated, doc 'deprecatedSource is the deprecated field assuring backward compatibility with corev1 Event type'}
						optional
							String io_k8s_api_events_v1_Event_deprecatedSource_component {doc 'Component from which the event is generated'}
							String io_k8s_api_events_v1_Event_deprecatedSource_host {doc 'Node name on which the event is generated'}
					String io_k8s_api_events_v1_Event_kind {default 'Event', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_events_v1_Event_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_events_v1_Event_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_events_v1_Event_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_events_v1_Event_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_events_v1_Event_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_events_v1_Event_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_events_v1_Event_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_events_v1_Event_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_events_v1_Event_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_events_v1_Event_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_events_v1_Event_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_events_v1_Event_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_events_v1_Event_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_events_v1_Event_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_events_v1_Event_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_events_v1_Event_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_events_v1_Event_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_events_v1_Event_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_events_v1_Event_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_events_v1_Event_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_events_v1_Event_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_events_v1_Event_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_events_v1_Event_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_events_v1_Event_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_events_v1_Event_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_events_v1_Event_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_events_v1_Event_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_events_v1_Event_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_events_v1_Event_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_events_v1_Event_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_events_v1_Event_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_events_v1_Event_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_events_v1_Event_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_events_v1_Event_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_events_v1_Event_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_events_v1_Event_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_events_v1_Event_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_events_v1_Event_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_events_v1_Event_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_events_v1_Event_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_events_v1_Event_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_events_v1_Event_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					String io_k8s_api_events_v1_Event_note {doc 'note is a human-readable description of the status of this operation Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB'}
					String io_k8s_api_events_v1_Event_reason {doc 'reason is why the action was taken It is human-readable This field cannot be empty for new Events and it can have at most 128 characters'}
					io_k8s_api_events_v1_Event_regarding {doc 'regarding contains the object this Event is about In most cases it_s an Object reporting controller implements, eg ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object'}
						optional
							String io_k8s_api_events_v1_Event_regarding_apiVersion {doc 'API version of the referent'}
							String io_k8s_api_events_v1_Event_regarding_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
							String io_k8s_api_events_v1_Event_regarding_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							String io_k8s_api_events_v1_Event_regarding_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							String io_k8s_api_events_v1_Event_regarding_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
							String io_k8s_api_events_v1_Event_regarding_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_events_v1_Event_regarding_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
					io_k8s_api_events_v1_Event_related {doc 'related is the optional secondary object for more complex actions Eg when regarding object triggers a creation or deletion of related object'}
						optional
							String io_k8s_api_events_v1_Event_related_apiVersion {doc 'API version of the referent'}
							String io_k8s_api_events_v1_Event_related_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
							String io_k8s_api_events_v1_Event_related_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							String io_k8s_api_events_v1_Event_related_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
							String io_k8s_api_events_v1_Event_related_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
							String io_k8s_api_events_v1_Event_related_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_events_v1_Event_related_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
					String io_k8s_api_events_v1_Event_reportingController {doc 'reportingController is the name of the controller that emitted this Event, eg kubernetesio/kubelet This field cannot be empty for new Events'}
					String io_k8s_api_events_v1_Event_reportingInstance {doc 'reportingInstance is the ID of the controller instance, eg kubelet-xyzf This field cannot be empty for new Events and it can have at most 128 characters'}
					io_k8s_api_events_v1_Event_series {doc 'series is data about the Event series this event represents or nil if it_s a singleton Event'}
						mandatory
							Integer io_k8s_api_events_v1_Event_series_count {doc 'count is the number of occurrences in this series up to the last heartbeat time'}
							io_k8s_api_events_v1_Event_series_lastObservedTime {doc 'lastObservedTime is the time when last Event from the series was seen before last heartbeat'}
								optional
									String io_k8s_api_events_v1_Event_series_lastObservedTime_MicroTime {doc 'MicroTime is version of Time with microsecond level precision'}
					String io_k8s_api_events_v1_Event_type {doc 'type is the type of this event (Normal, Warning), new types could be added in the future It is machine-readable This field cannot be empty for new Events'}
			io_k8s_api_events_v1_EventList {doc 'EventList is a list of Event objects'}
				mandatory
					io_k8s_api_events_v1_EventList_items cardinality [1..*] {doc 'items is a list of schema objects'}
						mandatory
							io_k8s_api_events_v1_EventList_items_eventTime {doc 'eventTime is the time when this Event was first observed It is required'}
								optional
									String io_k8s_api_events_v1_EventList_items_eventTime_MicroTime {doc 'MicroTime is version of Time with microsecond level precision'}
						optional
							String io_k8s_api_events_v1_EventList_items_action {doc 'action is what action was taken/failed regarding to the regarding object It is machine-readable This field cannot be empty for new Events and it can have at most 128 characters'}
							String io_k8s_api_events_v1_EventList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							Integer io_k8s_api_events_v1_EventList_items_deprecatedCount {deprecated, doc 'deprecatedCount is the deprecated field assuring backward compatibility with corev1 Event type'}
							io_k8s_api_events_v1_EventList_items_deprecatedFirstTimestamp {deprecated, doc 'deprecatedFirstTimestamp is the deprecated field assuring backward compatibility with corev1 Event type'}
								optional
									String io_k8s_api_events_v1_EventList_items_deprecatedFirstTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_events_v1_EventList_items_deprecatedLastTimestamp {deprecated, doc 'deprecatedLastTimestamp is the deprecated field assuring backward compatibility with corev1 Event type'}
								optional
									String io_k8s_api_events_v1_EventList_items_deprecatedLastTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_events_v1_EventList_items_deprecatedSource {deprecated, doc 'deprecatedSource is the deprecated field assuring backward compatibility with corev1 Event type'}
								optional
									String io_k8s_api_events_v1_EventList_items_deprecatedSource_component {doc 'Component from which the event is generated'}
									String io_k8s_api_events_v1_EventList_items_deprecatedSource_host {doc 'Node name on which the event is generated'}
							String io_k8s_api_events_v1_EventList_items_kind {default 'Event', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_events_v1_EventList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_events_v1_EventList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_events_v1_EventList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_events_v1_EventList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_events_v1_EventList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_events_v1_EventList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_events_v1_EventList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_events_v1_EventList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_events_v1_EventList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_events_v1_EventList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_events_v1_EventList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_events_v1_EventList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_events_v1_EventList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_events_v1_EventList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_events_v1_EventList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_events_v1_EventList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_events_v1_EventList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_events_v1_EventList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_events_v1_EventList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_events_v1_EventList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_events_v1_EventList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_events_v1_EventList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_events_v1_EventList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_events_v1_EventList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_events_v1_EventList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_events_v1_EventList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_events_v1_EventList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_events_v1_EventList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_events_v1_EventList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_events_v1_EventList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_events_v1_EventList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_events_v1_EventList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_events_v1_EventList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_events_v1_EventList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_events_v1_EventList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_events_v1_EventList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_events_v1_EventList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_events_v1_EventList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_events_v1_EventList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_events_v1_EventList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_events_v1_EventList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_events_v1_EventList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							String io_k8s_api_events_v1_EventList_items_note {doc 'note is a human-readable description of the status of this operation Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB'}
							String io_k8s_api_events_v1_EventList_items_reason {doc 'reason is why the action was taken It is human-readable This field cannot be empty for new Events and it can have at most 128 characters'}
							io_k8s_api_events_v1_EventList_items_regarding {doc 'regarding contains the object this Event is about In most cases it_s an Object reporting controller implements, eg ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object'}
								optional
									String io_k8s_api_events_v1_EventList_items_regarding_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_events_v1_EventList_items_regarding_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
									String io_k8s_api_events_v1_EventList_items_regarding_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_events_v1_EventList_items_regarding_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									String io_k8s_api_events_v1_EventList_items_regarding_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
									String io_k8s_api_events_v1_EventList_items_regarding_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_events_v1_EventList_items_regarding_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
							io_k8s_api_events_v1_EventList_items_related {doc 'related is the optional secondary object for more complex actions Eg when regarding object triggers a creation or deletion of related object'}
								optional
									String io_k8s_api_events_v1_EventList_items_related_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_events_v1_EventList_items_related_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
									String io_k8s_api_events_v1_EventList_items_related_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_events_v1_EventList_items_related_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									String io_k8s_api_events_v1_EventList_items_related_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
									String io_k8s_api_events_v1_EventList_items_related_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_events_v1_EventList_items_related_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
							String io_k8s_api_events_v1_EventList_items_reportingController {doc 'reportingController is the name of the controller that emitted this Event, eg kubernetesio/kubelet This field cannot be empty for new Events'}
							String io_k8s_api_events_v1_EventList_items_reportingInstance {doc 'reportingInstance is the ID of the controller instance, eg kubelet-xyzf This field cannot be empty for new Events and it can have at most 128 characters'}
							io_k8s_api_events_v1_EventList_items_series {doc 'series is data about the Event series this event represents or nil if it_s a singleton Event'}
								mandatory
									Integer io_k8s_api_events_v1_EventList_items_series_count {doc 'count is the number of occurrences in this series up to the last heartbeat time'}
									io_k8s_api_events_v1_EventList_items_series_lastObservedTime {doc 'lastObservedTime is the time when last Event from the series was seen before last heartbeat'}
										optional
											String io_k8s_api_events_v1_EventList_items_series_lastObservedTime_MicroTime {doc 'MicroTime is version of Time with microsecond level precision'}
							String io_k8s_api_events_v1_EventList_items_type {doc 'type is the type of this event (Normal, Warning), new types could be added in the future It is machine-readable This field cannot be empty for new Events'}
				optional
					String io_k8s_api_events_v1_EventList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_events_v1_EventList_kind {default 'EventList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_events_v1_EventList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_events_v1_EventList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_events_v1_EventList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_events_v1_EventList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_events_v1_EventList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_events_v1_EventSeries {doc 'EventSeries contain information on series of events, ie thing that was/is happening continuously for some time How often to update the EventSeries is up to the event reporters The default event reporter in k8sio/client-go/tools/events/event_broadcastergo shows how this struct is updated on heartbeats and can guide customized reporter implementations'}
				mandatory
					Integer io_k8s_api_events_v1_EventSeries_count {doc 'count is the number of occurrences in this series up to the last heartbeat time'}
					io_k8s_api_events_v1_EventSeries_lastObservedTime {doc 'lastObservedTime is the time when last Event from the series was seen before last heartbeat'}
						optional
							String io_k8s_api_events_v1_EventSeries_lastObservedTime_MicroTime {doc 'MicroTime is version of Time with microsecond level precision'}
			io_k8s_api_flowcontrol_v1_ExemptPriorityLevelConfiguration {doc 'ExemptPriorityLevelConfiguration describes the configurable aspects of the handling of exempt requests In the mandatory exempt configuration object the values in the fields here can be modified by authorized users, unlike the rest of the spec'}
				optional
					Integer io_k8s_api_flowcontrol_v1_ExemptPriorityLevelConfiguration_lendablePercent {default 0, doc 'lendablePercent prescribes the fraction of the level_s NominalCL that can be borrowed by other priority levels  This value of this field must be between 0 and 100, inclusive, and it defaults to 0 The number of seats that other levels can borrow from this level, known as this level_s LendableConcurrencyLimit (LendableCL), is defined as followsLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/1000 )'}
					Integer io_k8s_api_flowcontrol_v1_ExemptPriorityLevelConfiguration_nominalConcurrencyShares {doc 'nominalConcurrencyShares (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level This is the number of execution seats nominally reserved for this priority level This DOES NOT limit the dispatching from this priority level but affects the other priority levels through the borrowing mechanism The server_s concurrency limit (ServerCL) is divided among all the priority levels in proportion to their NCS values:NominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)Bigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level This field has a default value of zero'}
			io_k8s_api_flowcontrol_v1_FlowDistinguisherMethod {doc 'FlowDistinguisherMethod specifies the method of a flow distinguisher'}
				mandatory
					io_k8s_api_flowcontrol_v1_FlowDistinguisherMethod_type {doc 'type is the type of flow distinguisher method The supported types are ByUser and ByNamespace Required'}
						alternative
							io_k8s_api_flowcontrol_v1_FlowDistinguisherMethod_type_ByNamespace {doc 'Specific value: ByNamespace'}
							io_k8s_api_flowcontrol_v1_FlowDistinguisherMethod_type_ByUser {doc 'Specific value: ByUser'}
			io_k8s_api_flowcontrol_v1_FlowSchema {doc 'FlowSchema defines the schema of a group of flows Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a flow distinguisher'}
				optional
					String io_k8s_api_flowcontrol_v1_FlowSchema_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_flowcontrol_v1_FlowSchema_kind {default 'FlowSchema', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_flowcontrol_v1_FlowSchema_metadata {doc 'metadata is the standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_flowcontrol_v1_FlowSchema_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_flowcontrol_v1_FlowSchema_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_flowcontrol_v1_FlowSchema_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_flowcontrol_v1_FlowSchema_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_flowcontrol_v1_FlowSchema_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_flowcontrol_v1_FlowSchema_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_flowcontrol_v1_FlowSchema_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_flowcontrol_v1_FlowSchema_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_flowcontrol_v1_FlowSchema_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_flowcontrol_v1_FlowSchema_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_flowcontrol_v1_FlowSchema_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_flowcontrol_v1_FlowSchema_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_flowcontrol_v1_FlowSchema_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_flowcontrol_v1_FlowSchema_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_flowcontrol_v1_FlowSchema_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_flowcontrol_v1_FlowSchema_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_flowcontrol_v1_FlowSchema_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_flowcontrol_v1_FlowSchema_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_flowcontrol_v1_FlowSchema_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_flowcontrol_v1_FlowSchema_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_flowcontrol_v1_FlowSchema_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_flowcontrol_v1_FlowSchema_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_flowcontrol_v1_FlowSchema_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_flowcontrol_v1_FlowSchema_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_flowcontrol_v1_FlowSchema_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_flowcontrol_v1_FlowSchema_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_flowcontrol_v1_FlowSchema_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_flowcontrol_v1_FlowSchema_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_flowcontrol_v1_FlowSchema_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_flowcontrol_v1_FlowSchema_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_flowcontrol_v1_FlowSchema_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_flowcontrol_v1_FlowSchema_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_flowcontrol_v1_FlowSchema_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_flowcontrol_v1_FlowSchema_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_flowcontrol_v1_FlowSchema_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_flowcontrol_v1_FlowSchema_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_flowcontrol_v1_FlowSchema_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_flowcontrol_v1_FlowSchema_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_flowcontrol_v1_FlowSchema_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_flowcontrol_v1_FlowSchema_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_flowcontrol_v1_FlowSchema_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_flowcontrol_v1_FlowSchema_spec {doc 'spec is the specification of the desired behavior of a FlowSchema More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						mandatory
							io_k8s_api_flowcontrol_v1_FlowSchema_spec_priorityLevelConfiguration {doc 'priorityLevelConfiguration should reference a PriorityLevelConfiguration in the cluster If the reference cannot be resolved, the FlowSchema will be ignored and marked as invalid in its status Required'}
								mandatory
									String io_k8s_api_flowcontrol_v1_FlowSchema_spec_priorityLevelConfiguration_name {doc 'name is the name of the priority level configuration being referenced Required'}
						optional
							io_k8s_api_flowcontrol_v1_FlowSchema_spec_distinguisherMethod {doc 'distinguisherMethod defines how to compute the flow distinguisher for requests that match this schema nil specifies that the distinguisher is disabled and thus will always be the empty string'}
								mandatory
									io_k8s_api_flowcontrol_v1_FlowSchema_spec_distinguisherMethod_type {doc 'type is the type of flow distinguisher method The supported types are ByUser and ByNamespace Required'}
										alternative
											io_k8s_api_flowcontrol_v1_FlowSchema_spec_distinguisherMethod_type_ByNamespace {doc 'Specific value: ByNamespace'}
											io_k8s_api_flowcontrol_v1_FlowSchema_spec_distinguisherMethod_type_ByUser {doc 'Specific value: ByUser'}
							Integer io_k8s_api_flowcontrol_v1_FlowSchema_spec_matchingPrecedence {doc 'matchingPrecedence is used to choose among the FlowSchemas that match a given request The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence  Each MatchingPrecedence value must be ranged in [1,10000] Note that if the precedence is not specified, it will be set to 1000 as default'}
							io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules cardinality [1..*] {doc 'rules describes which requests will match this flow schema This FlowSchema matches a request if and only if at least one member of rules matches the request if it is an empty slice, there will be no requests matching the FlowSchema'}
								mandatory
									io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_subjects cardinality [1..*] {doc 'subjects is the list of normal user, serviceaccount, or group that this rule cares about There must be at least one member in this slice A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request Required'}
										mandatory
											String io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_subjects_kind {doc 'kind indicates which one of the other fields is non-empty Required'}
										optional
											io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_subjects_group {doc 'group matches based on user group name'}
												mandatory
													String io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_subjects_group_name {doc 'name is the user group that matches, or * to match all user groups See https:_githubcom/kubernetes/apiserver/blob/master/pkg/authentication/user/usergo for some well-known group names Required'}
											io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_subjects_serviceAccount {doc 'serviceAccount matches ServiceAccounts'}
												mandatory
													String io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_subjects_serviceAccount_name {doc 'name is the name of matching ServiceAccount objects, or * to match regardless of name Required'}
													String io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_subjects_serviceAccount_namespace {doc 'namespace is the namespace of matching ServiceAccount objects Required'}
											io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_subjects_user {doc 'user matches based on username'}
												mandatory
													String io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_subjects_user_name {doc 'name is the username that matches, or * to match all usernames Required'}
								optional
									io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_nonResourceRules cardinality [1..*] {doc 'nonResourceRules is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL'}
										mandatory
											io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_nonResourceRules_nonResourceURLs cardinality [1..*] {doc 'nonResourceURLs is a set of url prefixes that a user should have access to and may not be empty For example:  - /healthz is legal  - /hea* is illegal  - /hea is legal but matches nothing  - /hea/* also matches nothing  - /healthz/* matches all per-component health checks* matches all non-resource urls if it is present, it must be the only entry Required'}
												mandatory
													String io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_nonResourceRules_nonResourceURLs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_nonResourceRules_verbs cardinality [1..*] {doc 'verbs is a list of matching verbs and may not be empty * matches all verbs If it is present, it must be the only entry Required'}
												mandatory
													String io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_nonResourceRules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_resourceRules cardinality [1..*] {doc 'resourceRules is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource At least one of resourceRules and nonResourceRules has to be non-empty'}
										mandatory
											io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_resourceRules_apiGroups cardinality [1..*] {doc 'apiGroups is a list of matching API groups and may not be empty * matches all API groups and, if present, must be the only entry Required'}
												mandatory
													String io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_resourceRules_resources cardinality [1..*] {doc 'resources is a list of matching resources (ie, lowercase and plural) with, if desired, subresource  For example, [ services, nodes/status ]  This list may not be empty * matches all resources and, if present, must be the only entry Required'}
												mandatory
													String io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_resourceRules_verbs cardinality [1..*] {doc 'verbs is a list of matching verbs and may not be empty * matches all verbs and, if present, must be the only entry Required'}
												mandatory
													String io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_resourceRules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_resourceRules_clusterScope {doc 'clusterScope indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces) If this field is omitted or false then the namespaces field must contain a non-empty list'}
											io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_resourceRules_namespaces cardinality [1..*] {doc 'namespaces is a list of target namespaces that restricts matches  A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains *  Note that * matches any specified namespace but does not match a request that _does not specify_ a namespace (see the clusterScope field for that) This list may be empty, but only if clusterScope is true'}
												mandatory
													String io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_resourceRules_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_flowcontrol_v1_FlowSchema_status {doc 'status is the current status of a FlowSchema More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							io_k8s_api_flowcontrol_v1_FlowSchema_status_conditions cardinality [1..*] {doc 'conditions is a list of the current states of FlowSchema'}
								mandatory
									io_k8s_api_flowcontrol_v1_FlowSchema_status_conditions_status {doc 'status is the status of the condition Can be True, False, Unknown Required'}
										alternative
											io_k8s_api_flowcontrol_v1_FlowSchema_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_flowcontrol_v1_FlowSchema_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_flowcontrol_v1_FlowSchema_status_conditions_status_True {doc 'Specific value: True'}
									String io_k8s_api_flowcontrol_v1_FlowSchema_status_conditions_type {doc 'type is the type of the condition Required'}
								optional
									io_k8s_api_flowcontrol_v1_FlowSchema_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another'}
										optional
											String io_k8s_api_flowcontrol_v1_FlowSchema_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_flowcontrol_v1_FlowSchema_status_conditions_message {doc 'message is a human-readable message indicating details about last transition'}
									String io_k8s_api_flowcontrol_v1_FlowSchema_status_conditions_reason {doc 'reason is a unique, one-word, CamelCase reason for the condition_s last transition'}
			io_k8s_api_flowcontrol_v1_FlowSchemaCondition {doc 'FlowSchemaCondition describes conditions for a FlowSchema'}
				mandatory
					io_k8s_api_flowcontrol_v1_FlowSchemaCondition_status {doc 'status is the status of the condition Can be True, False, Unknown Required'}
						alternative
							io_k8s_api_flowcontrol_v1_FlowSchemaCondition_status_Unknown {doc 'Specific value: Unknown'}
							io_k8s_api_flowcontrol_v1_FlowSchemaCondition_status_False {doc 'Specific value: False'}
							io_k8s_api_flowcontrol_v1_FlowSchemaCondition_status_True {doc 'Specific value: True'}
					String io_k8s_api_flowcontrol_v1_FlowSchemaCondition_type {doc 'type is the type of the condition Required'}
				optional
					io_k8s_api_flowcontrol_v1_FlowSchemaCondition_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another'}
						optional
							String io_k8s_api_flowcontrol_v1_FlowSchemaCondition_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_api_flowcontrol_v1_FlowSchemaCondition_message {doc 'message is a human-readable message indicating details about last transition'}
					String io_k8s_api_flowcontrol_v1_FlowSchemaCondition_reason {doc 'reason is a unique, one-word, CamelCase reason for the condition_s last transition'}
			io_k8s_api_flowcontrol_v1_FlowSchemaList {doc 'FlowSchemaList is a list of FlowSchema objects'}
				mandatory
					io_k8s_api_flowcontrol_v1_FlowSchemaList_items cardinality [1..*] {doc 'items is a list of FlowSchemas'}
						optional
							String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_kind {default 'FlowSchema', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata {doc 'metadata is the standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec {doc 'spec is the specification of the desired behavior of a FlowSchema More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_priorityLevelConfiguration {doc 'priorityLevelConfiguration should reference a PriorityLevelConfiguration in the cluster If the reference cannot be resolved, the FlowSchema will be ignored and marked as invalid in its status Required'}
										mandatory
											String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_priorityLevelConfiguration_name {doc 'name is the name of the priority level configuration being referenced Required'}
								optional
									io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_distinguisherMethod {doc 'distinguisherMethod defines how to compute the flow distinguisher for requests that match this schema nil specifies that the distinguisher is disabled and thus will always be the empty string'}
										mandatory
											io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_distinguisherMethod_type {doc 'type is the type of flow distinguisher method The supported types are ByUser and ByNamespace Required'}
												alternative
													io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_distinguisherMethod_type_ByNamespace {doc 'Specific value: ByNamespace'}
													io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_distinguisherMethod_type_ByUser {doc 'Specific value: ByUser'}
									Integer io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_matchingPrecedence {doc 'matchingPrecedence is used to choose among the FlowSchemas that match a given request The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence  Each MatchingPrecedence value must be ranged in [1,10000] Note that if the precedence is not specified, it will be set to 1000 as default'}
									io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules cardinality [1..*] {doc 'rules describes which requests will match this flow schema This FlowSchema matches a request if and only if at least one member of rules matches the request if it is an empty slice, there will be no requests matching the FlowSchema'}
										mandatory
											io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_subjects cardinality [1..*] {doc 'subjects is the list of normal user, serviceaccount, or group that this rule cares about There must be at least one member in this slice A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request Required'}
												mandatory
													String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_subjects_kind {doc 'kind indicates which one of the other fields is non-empty Required'}
												optional
													io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_subjects_group {doc 'group matches based on user group name'}
														mandatory
															String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_subjects_group_name {doc 'name is the user group that matches, or * to match all user groups See https:_githubcom/kubernetes/apiserver/blob/master/pkg/authentication/user/usergo for some well-known group names Required'}
													io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_subjects_serviceAccount {doc 'serviceAccount matches ServiceAccounts'}
														mandatory
															String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_subjects_serviceAccount_name {doc 'name is the name of matching ServiceAccount objects, or * to match regardless of name Required'}
															String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_subjects_serviceAccount_namespace {doc 'namespace is the namespace of matching ServiceAccount objects Required'}
													io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_subjects_user {doc 'user matches based on username'}
														mandatory
															String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_subjects_user_name {doc 'name is the username that matches, or * to match all usernames Required'}
										optional
											io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_nonResourceRules cardinality [1..*] {doc 'nonResourceRules is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL'}
												mandatory
													io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_nonResourceRules_nonResourceURLs cardinality [1..*] {doc 'nonResourceURLs is a set of url prefixes that a user should have access to and may not be empty For example:  - /healthz is legal  - /hea* is illegal  - /hea is legal but matches nothing  - /hea/* also matches nothing  - /healthz/* matches all per-component health checks* matches all non-resource urls if it is present, it must be the only entry Required'}
														mandatory
															String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_nonResourceRules_nonResourceURLs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_nonResourceRules_verbs cardinality [1..*] {doc 'verbs is a list of matching verbs and may not be empty * matches all verbs If it is present, it must be the only entry Required'}
														mandatory
															String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_nonResourceRules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_resourceRules cardinality [1..*] {doc 'resourceRules is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource At least one of resourceRules and nonResourceRules has to be non-empty'}
												mandatory
													io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_resourceRules_apiGroups cardinality [1..*] {doc 'apiGroups is a list of matching API groups and may not be empty * matches all API groups and, if present, must be the only entry Required'}
														mandatory
															String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_resourceRules_resources cardinality [1..*] {doc 'resources is a list of matching resources (ie, lowercase and plural) with, if desired, subresource  For example, [ services, nodes/status ]  This list may not be empty * matches all resources and, if present, must be the only entry Required'}
														mandatory
															String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_resourceRules_verbs cardinality [1..*] {doc 'verbs is a list of matching verbs and may not be empty * matches all verbs and, if present, must be the only entry Required'}
														mandatory
															String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_resourceRules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_resourceRules_clusterScope {doc 'clusterScope indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces) If this field is omitted or false then the namespaces field must contain a non-empty list'}
													io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_resourceRules_namespaces cardinality [1..*] {doc 'namespaces is a list of target namespaces that restricts matches  A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains *  Note that * matches any specified namespace but does not match a request that _does not specify_ a namespace (see the clusterScope field for that) This list may be empty, but only if clusterScope is true'}
														mandatory
															String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_resourceRules_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_flowcontrol_v1_FlowSchemaList_items_status {doc 'status is the current status of a FlowSchema More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								optional
									io_k8s_api_flowcontrol_v1_FlowSchemaList_items_status_conditions cardinality [1..*] {doc 'conditions is a list of the current states of FlowSchema'}
										mandatory
											io_k8s_api_flowcontrol_v1_FlowSchemaList_items_status_conditions_status {doc 'status is the status of the condition Can be True, False, Unknown Required'}
												alternative
													io_k8s_api_flowcontrol_v1_FlowSchemaList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_api_flowcontrol_v1_FlowSchemaList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_api_flowcontrol_v1_FlowSchemaList_items_status_conditions_status_True {doc 'Specific value: True'}
											String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_status_conditions_type {doc 'type is the type of the condition Required'}
										optional
											io_k8s_api_flowcontrol_v1_FlowSchemaList_items_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another'}
												optional
													String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_status_conditions_message {doc 'message is a human-readable message indicating details about last transition'}
											String io_k8s_api_flowcontrol_v1_FlowSchemaList_items_status_conditions_reason {doc 'reason is a unique, one-word, CamelCase reason for the condition_s last transition'}
				optional
					String io_k8s_api_flowcontrol_v1_FlowSchemaList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_flowcontrol_v1_FlowSchemaList_kind {default 'FlowSchemaList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_flowcontrol_v1_FlowSchemaList_metadata {doc 'metadata is the standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_flowcontrol_v1_FlowSchemaList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_flowcontrol_v1_FlowSchemaList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_flowcontrol_v1_FlowSchemaList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_flowcontrol_v1_FlowSchemaList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_flowcontrol_v1_FlowSchemaSpec {doc 'FlowSchemaSpec describes how the FlowSchema_s specification looks like'}
				mandatory
					io_k8s_api_flowcontrol_v1_FlowSchemaSpec_priorityLevelConfiguration {doc 'priorityLevelConfiguration should reference a PriorityLevelConfiguration in the cluster If the reference cannot be resolved, the FlowSchema will be ignored and marked as invalid in its status Required'}
						mandatory
							String io_k8s_api_flowcontrol_v1_FlowSchemaSpec_priorityLevelConfiguration_name {doc 'name is the name of the priority level configuration being referenced Required'}
				optional
					io_k8s_api_flowcontrol_v1_FlowSchemaSpec_distinguisherMethod {doc 'distinguisherMethod defines how to compute the flow distinguisher for requests that match this schema nil specifies that the distinguisher is disabled and thus will always be the empty string'}
						mandatory
							io_k8s_api_flowcontrol_v1_FlowSchemaSpec_distinguisherMethod_type {doc 'type is the type of flow distinguisher method The supported types are ByUser and ByNamespace Required'}
								alternative
									io_k8s_api_flowcontrol_v1_FlowSchemaSpec_distinguisherMethod_type_ByNamespace {doc 'Specific value: ByNamespace'}
									io_k8s_api_flowcontrol_v1_FlowSchemaSpec_distinguisherMethod_type_ByUser {doc 'Specific value: ByUser'}
					Integer io_k8s_api_flowcontrol_v1_FlowSchemaSpec_matchingPrecedence {doc 'matchingPrecedence is used to choose among the FlowSchemas that match a given request The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence  Each MatchingPrecedence value must be ranged in [1,10000] Note that if the precedence is not specified, it will be set to 1000 as default'}
					io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules cardinality [1..*] {doc 'rules describes which requests will match this flow schema This FlowSchema matches a request if and only if at least one member of rules matches the request if it is an empty slice, there will be no requests matching the FlowSchema'}
						mandatory
							io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_subjects cardinality [1..*] {doc 'subjects is the list of normal user, serviceaccount, or group that this rule cares about There must be at least one member in this slice A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request Required'}
								mandatory
									String io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_subjects_kind {doc 'kind indicates which one of the other fields is non-empty Required'}
								optional
									io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_subjects_group {doc 'group matches based on user group name'}
										mandatory
											String io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_subjects_group_name {doc 'name is the user group that matches, or * to match all user groups See https:_githubcom/kubernetes/apiserver/blob/master/pkg/authentication/user/usergo for some well-known group names Required'}
									io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_subjects_serviceAccount {doc 'serviceAccount matches ServiceAccounts'}
										mandatory
											String io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_subjects_serviceAccount_name {doc 'name is the name of matching ServiceAccount objects, or * to match regardless of name Required'}
											String io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_subjects_serviceAccount_namespace {doc 'namespace is the namespace of matching ServiceAccount objects Required'}
									io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_subjects_user {doc 'user matches based on username'}
										mandatory
											String io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_subjects_user_name {doc 'name is the username that matches, or * to match all usernames Required'}
						optional
							io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_nonResourceRules cardinality [1..*] {doc 'nonResourceRules is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL'}
								mandatory
									io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_nonResourceRules_nonResourceURLs cardinality [1..*] {doc 'nonResourceURLs is a set of url prefixes that a user should have access to and may not be empty For example:  - /healthz is legal  - /hea* is illegal  - /hea is legal but matches nothing  - /hea/* also matches nothing  - /healthz/* matches all per-component health checks* matches all non-resource urls if it is present, it must be the only entry Required'}
										mandatory
											String io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_nonResourceRules_nonResourceURLs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_nonResourceRules_verbs cardinality [1..*] {doc 'verbs is a list of matching verbs and may not be empty * matches all verbs If it is present, it must be the only entry Required'}
										mandatory
											String io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_nonResourceRules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_resourceRules cardinality [1..*] {doc 'resourceRules is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource At least one of resourceRules and nonResourceRules has to be non-empty'}
								mandatory
									io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_resourceRules_apiGroups cardinality [1..*] {doc 'apiGroups is a list of matching API groups and may not be empty * matches all API groups and, if present, must be the only entry Required'}
										mandatory
											String io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_resourceRules_resources cardinality [1..*] {doc 'resources is a list of matching resources (ie, lowercase and plural) with, if desired, subresource  For example, [ services, nodes/status ]  This list may not be empty * matches all resources and, if present, must be the only entry Required'}
										mandatory
											String io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_resourceRules_verbs cardinality [1..*] {doc 'verbs is a list of matching verbs and may not be empty * matches all verbs and, if present, must be the only entry Required'}
										mandatory
											String io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_resourceRules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_resourceRules_clusterScope {doc 'clusterScope indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces) If this field is omitted or false then the namespaces field must contain a non-empty list'}
									io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_resourceRules_namespaces cardinality [1..*] {doc 'namespaces is a list of target namespaces that restricts matches  A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains *  Note that * matches any specified namespace but does not match a request that _does not specify_ a namespace (see the clusterScope field for that) This list may be empty, but only if clusterScope is true'}
										mandatory
											String io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_resourceRules_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_flowcontrol_v1_FlowSchemaStatus {doc 'FlowSchemaStatus represents the current state of a FlowSchema'}
				optional
					io_k8s_api_flowcontrol_v1_FlowSchemaStatus_conditions cardinality [1..*] {doc 'conditions is a list of the current states of FlowSchema'}
						mandatory
							io_k8s_api_flowcontrol_v1_FlowSchemaStatus_conditions_status {doc 'status is the status of the condition Can be True, False, Unknown Required'}
								alternative
									io_k8s_api_flowcontrol_v1_FlowSchemaStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_flowcontrol_v1_FlowSchemaStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_flowcontrol_v1_FlowSchemaStatus_conditions_status_True {doc 'Specific value: True'}
							String io_k8s_api_flowcontrol_v1_FlowSchemaStatus_conditions_type {doc 'type is the type of the condition Required'}
						optional
							io_k8s_api_flowcontrol_v1_FlowSchemaStatus_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another'}
								optional
									String io_k8s_api_flowcontrol_v1_FlowSchemaStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_flowcontrol_v1_FlowSchemaStatus_conditions_message {doc 'message is a human-readable message indicating details about last transition'}
							String io_k8s_api_flowcontrol_v1_FlowSchemaStatus_conditions_reason {doc 'reason is a unique, one-word, CamelCase reason for the condition_s last transition'}
			io_k8s_api_flowcontrol_v1_GroupSubject {doc 'GroupSubject holds detailed information for group-kind subject'}
				mandatory
					String io_k8s_api_flowcontrol_v1_GroupSubject_name {doc 'name is the user group that matches, or * to match all user groups See https:_githubcom/kubernetes/apiserver/blob/master/pkg/authentication/user/usergo for some well-known group names Required'}
			io_k8s_api_flowcontrol_v1_LimitResponse {doc 'LimitResponse defines how to handle requests that can not be executed right now'}
				mandatory
					io_k8s_api_flowcontrol_v1_LimitResponse_type {doc 'type is Queue or Reject Queue means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached Reject means that requests that can not be executed upon arrival are rejected Required'}
						alternative
							io_k8s_api_flowcontrol_v1_LimitResponse_type_Reject {doc 'Specific value: Reject'}
							io_k8s_api_flowcontrol_v1_LimitResponse_type_Queue {doc 'Specific value: Queue'}
				optional
					io_k8s_api_flowcontrol_v1_LimitResponse_queuing {doc 'queuing holds the configuration parameters for queuing This field may be non-empty only if type is Queue'}
						optional
							Integer io_k8s_api_flowcontrol_v1_LimitResponse_queuing_handSize {doc 'handSize is a small positive number that configures the shuffle sharding of requests into queues  When enqueuing a request at this priority level the request_s flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here  The request is put into one of the shortest queues in that hand handSize must be no larger than queues, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues)  See the user-facing documentation for more extensive guidance on setting this field  This field has a default value of 8'}
							Integer io_k8s_api_flowcontrol_v1_LimitResponse_queuing_queueLengthLimit {doc 'queueLengthLimit is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected  This value must be positive  If not specified, it will be defaulted to 50'}
							Integer io_k8s_api_flowcontrol_v1_LimitResponse_queuing_queues {doc 'queues is the number of queues for this priority level The queues exist independently at each apiserver The value must be positive  Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant  This field has a default value of 64'}
			io_k8s_api_flowcontrol_v1_LimitedPriorityLevelConfiguration {doc 'LimitedPriorityLevelConfiguration specifies how to handle requests that are subject to limits It addresses two issues:  - How are requests for this priority level limited?  - What should be done with requests that exceed the limit?'}
				optional
					Integer io_k8s_api_flowcontrol_v1_LimitedPriorityLevelConfiguration_borrowingLimitPercent {doc 'borrowingLimitPercent, if present, configures a limit on how many seats this priority level can borrow from other priority levels The limit is known as this level_s BorrowingConcurrencyLimit (BorrowingCL) and is a limit on the total number of seats that this level may borrow at any one time This field holds the ratio of that limit to the level_s nominal concurrency limit When this field is non-nil, it must hold a non-negative integer and the limit is calculated as followsBorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/1000 )The value of this field can be more than 100, implying that this priority level can borrow a number of seats that is greater than its own nominal concurrency limit (NominalCL) When this field is left nil, the limit is effectively infinite'}
					Integer io_k8s_api_flowcontrol_v1_LimitedPriorityLevelConfiguration_lendablePercent {default 0, doc 'lendablePercent prescribes the fraction of the level_s NominalCL that can be borrowed by other priority levels The value of this field must be between 0 and 100, inclusive, and it defaults to 0 The number of seats that other levels can borrow from this level, known as this level_s LendableConcurrencyLimit (LendableCL), is defined as followsLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/1000 )'}
					io_k8s_api_flowcontrol_v1_LimitedPriorityLevelConfiguration_limitResponse {doc 'limitResponse indicates what to do with requests that can not be executed right now'}
						mandatory
							io_k8s_api_flowcontrol_v1_LimitedPriorityLevelConfiguration_limitResponse_type {doc 'type is Queue or Reject Queue means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached Reject means that requests that can not be executed upon arrival are rejected Required'}
								alternative
									io_k8s_api_flowcontrol_v1_LimitedPriorityLevelConfiguration_limitResponse_type_Reject {doc 'Specific value: Reject'}
									io_k8s_api_flowcontrol_v1_LimitedPriorityLevelConfiguration_limitResponse_type_Queue {doc 'Specific value: Queue'}
						optional
							io_k8s_api_flowcontrol_v1_LimitedPriorityLevelConfiguration_limitResponse_queuing {doc 'queuing holds the configuration parameters for queuing This field may be non-empty only if type is Queue'}
								optional
									Integer io_k8s_api_flowcontrol_v1_LimitedPriorityLevelConfiguration_limitResponse_queuing_handSize {doc 'handSize is a small positive number that configures the shuffle sharding of requests into queues  When enqueuing a request at this priority level the request_s flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here  The request is put into one of the shortest queues in that hand handSize must be no larger than queues, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues)  See the user-facing documentation for more extensive guidance on setting this field  This field has a default value of 8'}
									Integer io_k8s_api_flowcontrol_v1_LimitedPriorityLevelConfiguration_limitResponse_queuing_queueLengthLimit {doc 'queueLengthLimit is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected  This value must be positive  If not specified, it will be defaulted to 50'}
									Integer io_k8s_api_flowcontrol_v1_LimitedPriorityLevelConfiguration_limitResponse_queuing_queues {doc 'queues is the number of queues for this priority level The queues exist independently at each apiserver The value must be positive  Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant  This field has a default value of 64'}
					Integer io_k8s_api_flowcontrol_v1_LimitedPriorityLevelConfiguration_nominalConcurrencyShares {doc 'nominalConcurrencyShares (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level This is the number of execution seats available at this priority level This is used both for requests dispatched from this priority level as well as requests dispatched from other priority levels borrowing seats from this level The server_s concurrency limit (ServerCL) is divided among the Limited priority levels in proportion to their NCS values:NominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)Bigger numbers mean a larger nominal concurrency limit, at the expense of every other priority levelIf not specified, this field defaults to a value of 30Setting this field to zero supports the construction of a jail for this priority level that is used to hold some request(s)'}
			io_k8s_api_flowcontrol_v1_NonResourcePolicyRule {doc 'NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request'}
				mandatory
					io_k8s_api_flowcontrol_v1_NonResourcePolicyRule_nonResourceURLs cardinality [1..*] {doc 'nonResourceURLs is a set of url prefixes that a user should have access to and may not be empty For example:  - /healthz is legal  - /hea* is illegal  - /hea is legal but matches nothing  - /hea/* also matches nothing  - /healthz/* matches all per-component health checks* matches all non-resource urls if it is present, it must be the only entry Required'}
						mandatory
							String io_k8s_api_flowcontrol_v1_NonResourcePolicyRule_nonResourceURLs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_flowcontrol_v1_NonResourcePolicyRule_verbs cardinality [1..*] {doc 'verbs is a list of matching verbs and may not be empty * matches all verbs If it is present, it must be the only entry Required'}
						mandatory
							String io_k8s_api_flowcontrol_v1_NonResourcePolicyRule_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects {doc 'PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver The test considers the subject making the request, the verb being requested, and the resource to be acted upon This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request'}
				mandatory
					io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_subjects cardinality [1..*] {doc 'subjects is the list of normal user, serviceaccount, or group that this rule cares about There must be at least one member in this slice A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request Required'}
						mandatory
							String io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_subjects_kind {doc 'kind indicates which one of the other fields is non-empty Required'}
						optional
							io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_subjects_group {doc 'group matches based on user group name'}
								mandatory
									String io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_subjects_group_name {doc 'name is the user group that matches, or * to match all user groups See https:_githubcom/kubernetes/apiserver/blob/master/pkg/authentication/user/usergo for some well-known group names Required'}
							io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_subjects_serviceAccount {doc 'serviceAccount matches ServiceAccounts'}
								mandatory
									String io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_subjects_serviceAccount_name {doc 'name is the name of matching ServiceAccount objects, or * to match regardless of name Required'}
									String io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_subjects_serviceAccount_namespace {doc 'namespace is the namespace of matching ServiceAccount objects Required'}
							io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_subjects_user {doc 'user matches based on username'}
								mandatory
									String io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_subjects_user_name {doc 'name is the username that matches, or * to match all usernames Required'}
				optional
					io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_nonResourceRules cardinality [1..*] {doc 'nonResourceRules is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL'}
						mandatory
							io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_nonResourceRules_nonResourceURLs cardinality [1..*] {doc 'nonResourceURLs is a set of url prefixes that a user should have access to and may not be empty For example:  - /healthz is legal  - /hea* is illegal  - /hea is legal but matches nothing  - /hea/* also matches nothing  - /healthz/* matches all per-component health checks* matches all non-resource urls if it is present, it must be the only entry Required'}
								mandatory
									String io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_nonResourceRules_nonResourceURLs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_nonResourceRules_verbs cardinality [1..*] {doc 'verbs is a list of matching verbs and may not be empty * matches all verbs If it is present, it must be the only entry Required'}
								mandatory
									String io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_nonResourceRules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_resourceRules cardinality [1..*] {doc 'resourceRules is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource At least one of resourceRules and nonResourceRules has to be non-empty'}
						mandatory
							io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_resourceRules_apiGroups cardinality [1..*] {doc 'apiGroups is a list of matching API groups and may not be empty * matches all API groups and, if present, must be the only entry Required'}
								mandatory
									String io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_resourceRules_resources cardinality [1..*] {doc 'resources is a list of matching resources (ie, lowercase and plural) with, if desired, subresource  For example, [ services, nodes/status ]  This list may not be empty * matches all resources and, if present, must be the only entry Required'}
								mandatory
									String io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_resourceRules_verbs cardinality [1..*] {doc 'verbs is a list of matching verbs and may not be empty * matches all verbs and, if present, must be the only entry Required'}
								mandatory
									String io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_resourceRules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_resourceRules_clusterScope {doc 'clusterScope indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces) If this field is omitted or false then the namespaces field must contain a non-empty list'}
							io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_resourceRules_namespaces cardinality [1..*] {doc 'namespaces is a list of target namespaces that restricts matches  A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains *  Note that * matches any specified namespace but does not match a request that _does not specify_ a namespace (see the clusterScope field for that) This list may be empty, but only if clusterScope is true'}
								mandatory
									String io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_resourceRules_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration {doc 'PriorityLevelConfiguration represents the configuration of a priority level'}
				optional
					String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_kind {default 'PriorityLevelConfiguration', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata {doc 'metadata is the standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec {doc 'spec is the specification of the desired behavior of a request-priority More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						mandatory
							io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_type {doc 'type indicates whether this priority level is subject to limitation on request execution  A value of Exempt means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels  A value of Limited means that (a) requests of this priority level _are_ subject to limits and (b) some of the server_s limited capacity is made available exclusively to this priority level Required'}
								alternative
									io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_type_Exempt {doc 'Specific value: Exempt'}
									io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_type_Limited {doc 'Specific value: Limited'}
						optional
							io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_exempt {doc 'exempt specifies how requests are handled for an exempt priority level This field MUST be empty if type is Limited This field MAY be non-empty if type is Exempt If empty and type is Exempt then the default values for ExemptPriorityLevelConfiguration apply'}
								optional
									Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_exempt_lendablePercent {default 0, doc 'lendablePercent prescribes the fraction of the level_s NominalCL that can be borrowed by other priority levels  This value of this field must be between 0 and 100, inclusive, and it defaults to 0 The number of seats that other levels can borrow from this level, known as this level_s LendableConcurrencyLimit (LendableCL), is defined as followsLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/1000 )'}
									Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_exempt_nominalConcurrencyShares {doc 'nominalConcurrencyShares (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level This is the number of execution seats nominally reserved for this priority level This DOES NOT limit the dispatching from this priority level but affects the other priority levels through the borrowing mechanism The server_s concurrency limit (ServerCL) is divided among all the priority levels in proportion to their NCS values:NominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)Bigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level This field has a default value of zero'}
							io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_limited {doc 'limited specifies how requests are handled for a Limited priority level This field must be non-empty if and only if type is Limited'}
								optional
									Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_limited_borrowingLimitPercent {doc 'borrowingLimitPercent, if present, configures a limit on how many seats this priority level can borrow from other priority levels The limit is known as this level_s BorrowingConcurrencyLimit (BorrowingCL) and is a limit on the total number of seats that this level may borrow at any one time This field holds the ratio of that limit to the level_s nominal concurrency limit When this field is non-nil, it must hold a non-negative integer and the limit is calculated as followsBorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/1000 )The value of this field can be more than 100, implying that this priority level can borrow a number of seats that is greater than its own nominal concurrency limit (NominalCL) When this field is left nil, the limit is effectively infinite'}
									Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_limited_lendablePercent {default 0, doc 'lendablePercent prescribes the fraction of the level_s NominalCL that can be borrowed by other priority levels The value of this field must be between 0 and 100, inclusive, and it defaults to 0 The number of seats that other levels can borrow from this level, known as this level_s LendableConcurrencyLimit (LendableCL), is defined as followsLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/1000 )'}
									io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_limited_limitResponse {doc 'limitResponse indicates what to do with requests that can not be executed right now'}
										mandatory
											io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_limited_limitResponse_type {doc 'type is Queue or Reject Queue means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached Reject means that requests that can not be executed upon arrival are rejected Required'}
												alternative
													io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_limited_limitResponse_type_Reject {doc 'Specific value: Reject'}
													io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_limited_limitResponse_type_Queue {doc 'Specific value: Queue'}
										optional
											io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_limited_limitResponse_queuing {doc 'queuing holds the configuration parameters for queuing This field may be non-empty only if type is Queue'}
												optional
													Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_limited_limitResponse_queuing_handSize {doc 'handSize is a small positive number that configures the shuffle sharding of requests into queues  When enqueuing a request at this priority level the request_s flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here  The request is put into one of the shortest queues in that hand handSize must be no larger than queues, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues)  See the user-facing documentation for more extensive guidance on setting this field  This field has a default value of 8'}
													Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_limited_limitResponse_queuing_queueLengthLimit {doc 'queueLengthLimit is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected  This value must be positive  If not specified, it will be defaulted to 50'}
													Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_limited_limitResponse_queuing_queues {doc 'queues is the number of queues for this priority level The queues exist independently at each apiserver The value must be positive  Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant  This field has a default value of 64'}
									Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_limited_nominalConcurrencyShares {doc 'nominalConcurrencyShares (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level This is the number of execution seats available at this priority level This is used both for requests dispatched from this priority level as well as requests dispatched from other priority levels borrowing seats from this level The server_s concurrency limit (ServerCL) is divided among the Limited priority levels in proportion to their NCS values:NominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)Bigger numbers mean a larger nominal concurrency limit, at the expense of every other priority levelIf not specified, this field defaults to a value of 30Setting this field to zero supports the construction of a jail for this priority level that is used to hold some request(s)'}
					io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_status {doc 'status is the current status of a request-priority More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_status_conditions cardinality [1..*] {doc 'conditions is the current state of request-priority'}
								mandatory
									io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_status_conditions_status {doc 'status is the status of the condition Can be True, False, Unknown Required'}
										alternative
											io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_status_conditions_status_True {doc 'Specific value: True'}
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_status_conditions_type {doc 'type is the type of the condition Required'}
								optional
									io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another'}
										optional
											String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_status_conditions_message {doc 'message is a human-readable message indicating details about last transition'}
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_status_conditions_reason {doc 'reason is a unique, one-word, CamelCase reason for the condition_s last transition'}
			io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationCondition {doc 'PriorityLevelConfigurationCondition defines the condition of priority level'}
				mandatory
					io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationCondition_status {doc 'status is the status of the condition Can be True, False, Unknown Required'}
						alternative
							io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationCondition_status_Unknown {doc 'Specific value: Unknown'}
							io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationCondition_status_False {doc 'Specific value: False'}
							io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationCondition_status_True {doc 'Specific value: True'}
					String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationCondition_type {doc 'type is the type of the condition Required'}
				optional
					io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationCondition_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another'}
						optional
							String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationCondition_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationCondition_message {doc 'message is a human-readable message indicating details about last transition'}
					String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationCondition_reason {doc 'reason is a unique, one-word, CamelCase reason for the condition_s last transition'}
			io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList {doc 'PriorityLevelConfigurationList is a list of PriorityLevelConfiguration objects'}
				mandatory
					io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items cardinality [1..*] {doc 'items is a list of request-priorities'}
						optional
							String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_kind {default 'PriorityLevelConfiguration', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata {doc 'metadata is the standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec {doc 'spec is the specification of the desired behavior of a request-priority More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_type {doc 'type indicates whether this priority level is subject to limitation on request execution  A value of Exempt means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels  A value of Limited means that (a) requests of this priority level _are_ subject to limits and (b) some of the server_s limited capacity is made available exclusively to this priority level Required'}
										alternative
											io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_type_Exempt {doc 'Specific value: Exempt'}
											io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_type_Limited {doc 'Specific value: Limited'}
								optional
									io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_exempt {doc 'exempt specifies how requests are handled for an exempt priority level This field MUST be empty if type is Limited This field MAY be non-empty if type is Exempt If empty and type is Exempt then the default values for ExemptPriorityLevelConfiguration apply'}
										optional
											Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_exempt_lendablePercent {default 0, doc 'lendablePercent prescribes the fraction of the level_s NominalCL that can be borrowed by other priority levels  This value of this field must be between 0 and 100, inclusive, and it defaults to 0 The number of seats that other levels can borrow from this level, known as this level_s LendableConcurrencyLimit (LendableCL), is defined as followsLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/1000 )'}
											Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_exempt_nominalConcurrencyShares {doc 'nominalConcurrencyShares (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level This is the number of execution seats nominally reserved for this priority level This DOES NOT limit the dispatching from this priority level but affects the other priority levels through the borrowing mechanism The server_s concurrency limit (ServerCL) is divided among all the priority levels in proportion to their NCS values:NominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)Bigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level This field has a default value of zero'}
									io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_limited {doc 'limited specifies how requests are handled for a Limited priority level This field must be non-empty if and only if type is Limited'}
										optional
											Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_limited_borrowingLimitPercent {doc 'borrowingLimitPercent, if present, configures a limit on how many seats this priority level can borrow from other priority levels The limit is known as this level_s BorrowingConcurrencyLimit (BorrowingCL) and is a limit on the total number of seats that this level may borrow at any one time This field holds the ratio of that limit to the level_s nominal concurrency limit When this field is non-nil, it must hold a non-negative integer and the limit is calculated as followsBorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/1000 )The value of this field can be more than 100, implying that this priority level can borrow a number of seats that is greater than its own nominal concurrency limit (NominalCL) When this field is left nil, the limit is effectively infinite'}
											Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_limited_lendablePercent {default 0, doc 'lendablePercent prescribes the fraction of the level_s NominalCL that can be borrowed by other priority levels The value of this field must be between 0 and 100, inclusive, and it defaults to 0 The number of seats that other levels can borrow from this level, known as this level_s LendableConcurrencyLimit (LendableCL), is defined as followsLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/1000 )'}
											io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_limited_limitResponse {doc 'limitResponse indicates what to do with requests that can not be executed right now'}
												mandatory
													io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_limited_limitResponse_type {doc 'type is Queue or Reject Queue means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached Reject means that requests that can not be executed upon arrival are rejected Required'}
														alternative
															io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_limited_limitResponse_type_Reject {doc 'Specific value: Reject'}
															io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_limited_limitResponse_type_Queue {doc 'Specific value: Queue'}
												optional
													io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_limited_limitResponse_queuing {doc 'queuing holds the configuration parameters for queuing This field may be non-empty only if type is Queue'}
														optional
															Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_limited_limitResponse_queuing_handSize {doc 'handSize is a small positive number that configures the shuffle sharding of requests into queues  When enqueuing a request at this priority level the request_s flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here  The request is put into one of the shortest queues in that hand handSize must be no larger than queues, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues)  See the user-facing documentation for more extensive guidance on setting this field  This field has a default value of 8'}
															Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_limited_limitResponse_queuing_queueLengthLimit {doc 'queueLengthLimit is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected  This value must be positive  If not specified, it will be defaulted to 50'}
															Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_limited_limitResponse_queuing_queues {doc 'queues is the number of queues for this priority level The queues exist independently at each apiserver The value must be positive  Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant  This field has a default value of 64'}
											Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_limited_nominalConcurrencyShares {doc 'nominalConcurrencyShares (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level This is the number of execution seats available at this priority level This is used both for requests dispatched from this priority level as well as requests dispatched from other priority levels borrowing seats from this level The server_s concurrency limit (ServerCL) is divided among the Limited priority levels in proportion to their NCS values:NominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)Bigger numbers mean a larger nominal concurrency limit, at the expense of every other priority levelIf not specified, this field defaults to a value of 30Setting this field to zero supports the construction of a jail for this priority level that is used to hold some request(s)'}
							io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_status {doc 'status is the current status of a request-priority More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								optional
									io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_status_conditions cardinality [1..*] {doc 'conditions is the current state of request-priority'}
										mandatory
											io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_status_conditions_status {doc 'status is the status of the condition Can be True, False, Unknown Required'}
												alternative
													io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_status_conditions_status_True {doc 'Specific value: True'}
											String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_status_conditions_type {doc 'type is the type of the condition Required'}
										optional
											io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another'}
												optional
													String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_status_conditions_message {doc 'message is a human-readable message indicating details about last transition'}
											String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_status_conditions_reason {doc 'reason is a unique, one-word, CamelCase reason for the condition_s last transition'}
				optional
					String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_kind {default 'PriorityLevelConfigurationList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_metadata {doc 'metadata is the standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationReference {doc 'PriorityLevelConfigurationReference contains information that points to the request-priority being used'}
				mandatory
					String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationReference_name {doc 'name is the name of the priority level configuration being referenced Required'}
			io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec {doc 'PriorityLevelConfigurationSpec specifies the configuration of a priority level'}
				mandatory
					io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_type {doc 'type indicates whether this priority level is subject to limitation on request execution  A value of Exempt means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels  A value of Limited means that (a) requests of this priority level _are_ subject to limits and (b) some of the server_s limited capacity is made available exclusively to this priority level Required'}
						alternative
							io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_type_Exempt {doc 'Specific value: Exempt'}
							io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_type_Limited {doc 'Specific value: Limited'}
				optional
					io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_exempt {doc 'exempt specifies how requests are handled for an exempt priority level This field MUST be empty if type is Limited This field MAY be non-empty if type is Exempt If empty and type is Exempt then the default values for ExemptPriorityLevelConfiguration apply'}
						optional
							Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_exempt_lendablePercent {default 0, doc 'lendablePercent prescribes the fraction of the level_s NominalCL that can be borrowed by other priority levels  This value of this field must be between 0 and 100, inclusive, and it defaults to 0 The number of seats that other levels can borrow from this level, known as this level_s LendableConcurrencyLimit (LendableCL), is defined as followsLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/1000 )'}
							Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_exempt_nominalConcurrencyShares {doc 'nominalConcurrencyShares (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level This is the number of execution seats nominally reserved for this priority level This DOES NOT limit the dispatching from this priority level but affects the other priority levels through the borrowing mechanism The server_s concurrency limit (ServerCL) is divided among all the priority levels in proportion to their NCS values:NominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)Bigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level This field has a default value of zero'}
					io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_limited {doc 'limited specifies how requests are handled for a Limited priority level This field must be non-empty if and only if type is Limited'}
						optional
							Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_limited_borrowingLimitPercent {doc 'borrowingLimitPercent, if present, configures a limit on how many seats this priority level can borrow from other priority levels The limit is known as this level_s BorrowingConcurrencyLimit (BorrowingCL) and is a limit on the total number of seats that this level may borrow at any one time This field holds the ratio of that limit to the level_s nominal concurrency limit When this field is non-nil, it must hold a non-negative integer and the limit is calculated as followsBorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/1000 )The value of this field can be more than 100, implying that this priority level can borrow a number of seats that is greater than its own nominal concurrency limit (NominalCL) When this field is left nil, the limit is effectively infinite'}
							Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_limited_lendablePercent {default 0, doc 'lendablePercent prescribes the fraction of the level_s NominalCL that can be borrowed by other priority levels The value of this field must be between 0 and 100, inclusive, and it defaults to 0 The number of seats that other levels can borrow from this level, known as this level_s LendableConcurrencyLimit (LendableCL), is defined as followsLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/1000 )'}
							io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_limited_limitResponse {doc 'limitResponse indicates what to do with requests that can not be executed right now'}
								mandatory
									io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_limited_limitResponse_type {doc 'type is Queue or Reject Queue means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached Reject means that requests that can not be executed upon arrival are rejected Required'}
										alternative
											io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_limited_limitResponse_type_Reject {doc 'Specific value: Reject'}
											io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_limited_limitResponse_type_Queue {doc 'Specific value: Queue'}
								optional
									io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_limited_limitResponse_queuing {doc 'queuing holds the configuration parameters for queuing This field may be non-empty only if type is Queue'}
										optional
											Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_limited_limitResponse_queuing_handSize {doc 'handSize is a small positive number that configures the shuffle sharding of requests into queues  When enqueuing a request at this priority level the request_s flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here  The request is put into one of the shortest queues in that hand handSize must be no larger than queues, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues)  See the user-facing documentation for more extensive guidance on setting this field  This field has a default value of 8'}
											Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_limited_limitResponse_queuing_queueLengthLimit {doc 'queueLengthLimit is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected  This value must be positive  If not specified, it will be defaulted to 50'}
											Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_limited_limitResponse_queuing_queues {doc 'queues is the number of queues for this priority level The queues exist independently at each apiserver The value must be positive  Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant  This field has a default value of 64'}
							Integer io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_limited_nominalConcurrencyShares {doc 'nominalConcurrencyShares (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level This is the number of execution seats available at this priority level This is used both for requests dispatched from this priority level as well as requests dispatched from other priority levels borrowing seats from this level The server_s concurrency limit (ServerCL) is divided among the Limited priority levels in proportion to their NCS values:NominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)Bigger numbers mean a larger nominal concurrency limit, at the expense of every other priority levelIf not specified, this field defaults to a value of 30Setting this field to zero supports the construction of a jail for this priority level that is used to hold some request(s)'}
			io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationStatus {doc 'PriorityLevelConfigurationStatus represents the current state of a request-priority'}
				optional
					io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationStatus_conditions cardinality [1..*] {doc 'conditions is the current state of request-priority'}
						mandatory
							io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationStatus_conditions_status {doc 'status is the status of the condition Can be True, False, Unknown Required'}
								alternative
									io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationStatus_conditions_status_True {doc 'Specific value: True'}
							String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationStatus_conditions_type {doc 'type is the type of the condition Required'}
						optional
							io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationStatus_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another'}
								optional
									String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationStatus_conditions_message {doc 'message is a human-readable message indicating details about last transition'}
							String io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationStatus_conditions_reason {doc 'reason is a unique, one-word, CamelCase reason for the condition_s last transition'}
			io_k8s_api_flowcontrol_v1_QueuingConfiguration {doc 'QueuingConfiguration holds the configuration parameters for queuing'}
				optional
					Integer io_k8s_api_flowcontrol_v1_QueuingConfiguration_handSize {doc 'handSize is a small positive number that configures the shuffle sharding of requests into queues  When enqueuing a request at this priority level the request_s flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here  The request is put into one of the shortest queues in that hand handSize must be no larger than queues, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues)  See the user-facing documentation for more extensive guidance on setting this field  This field has a default value of 8'}
					Integer io_k8s_api_flowcontrol_v1_QueuingConfiguration_queueLengthLimit {doc 'queueLengthLimit is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected  This value must be positive  If not specified, it will be defaulted to 50'}
					Integer io_k8s_api_flowcontrol_v1_QueuingConfiguration_queues {doc 'queues is the number of queues for this priority level The queues exist independently at each apiserver The value must be positive  Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant  This field has a default value of 64'}
			io_k8s_api_flowcontrol_v1_ResourcePolicyRule {doc 'ResourcePolicyRule is a predicate that matches some resource requests, testing the request_s verb and the target resource A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) either (d1) the request does not specify a namespace (ie, Namespace==) and clusterScope is true or (d2) the request specifies a namespace and least one member of namespaces matches the request_s namespace'}
				mandatory
					io_k8s_api_flowcontrol_v1_ResourcePolicyRule_apiGroups cardinality [1..*] {doc 'apiGroups is a list of matching API groups and may not be empty * matches all API groups and, if present, must be the only entry Required'}
						mandatory
							String io_k8s_api_flowcontrol_v1_ResourcePolicyRule_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_flowcontrol_v1_ResourcePolicyRule_resources cardinality [1..*] {doc 'resources is a list of matching resources (ie, lowercase and plural) with, if desired, subresource  For example, [ services, nodes/status ]  This list may not be empty * matches all resources and, if present, must be the only entry Required'}
						mandatory
							String io_k8s_api_flowcontrol_v1_ResourcePolicyRule_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_flowcontrol_v1_ResourcePolicyRule_verbs cardinality [1..*] {doc 'verbs is a list of matching verbs and may not be empty * matches all verbs and, if present, must be the only entry Required'}
						mandatory
							String io_k8s_api_flowcontrol_v1_ResourcePolicyRule_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					io_k8s_api_flowcontrol_v1_ResourcePolicyRule_clusterScope {doc 'clusterScope indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces) If this field is omitted or false then the namespaces field must contain a non-empty list'}
					io_k8s_api_flowcontrol_v1_ResourcePolicyRule_namespaces cardinality [1..*] {doc 'namespaces is a list of target namespaces that restricts matches  A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains *  Note that * matches any specified namespace but does not match a request that _does not specify_ a namespace (see the clusterScope field for that) This list may be empty, but only if clusterScope is true'}
						mandatory
							String io_k8s_api_flowcontrol_v1_ResourcePolicyRule_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_flowcontrol_v1_ServiceAccountSubject {doc 'ServiceAccountSubject holds detailed information for service-account-kind subject'}
				mandatory
					String io_k8s_api_flowcontrol_v1_ServiceAccountSubject_name {doc 'name is the name of matching ServiceAccount objects, or * to match regardless of name Required'}
					String io_k8s_api_flowcontrol_v1_ServiceAccountSubject_namespace {doc 'namespace is the namespace of matching ServiceAccount objects Required'}
			io_k8s_api_flowcontrol_v1_Subject {doc 'Subject matches the originator of a request, as identified by the request authentication system There are three ways of matching an originator; by user, group, or service account'}
				mandatory
					String io_k8s_api_flowcontrol_v1_Subject_kind {doc 'kind indicates which one of the other fields is non-empty Required'}
				optional
					io_k8s_api_flowcontrol_v1_Subject_group {doc 'group matches based on user group name'}
						mandatory
							String io_k8s_api_flowcontrol_v1_Subject_group_name {doc 'name is the user group that matches, or * to match all user groups See https:_githubcom/kubernetes/apiserver/blob/master/pkg/authentication/user/usergo for some well-known group names Required'}
					io_k8s_api_flowcontrol_v1_Subject_serviceAccount {doc 'serviceAccount matches ServiceAccounts'}
						mandatory
							String io_k8s_api_flowcontrol_v1_Subject_serviceAccount_name {doc 'name is the name of matching ServiceAccount objects, or * to match regardless of name Required'}
							String io_k8s_api_flowcontrol_v1_Subject_serviceAccount_namespace {doc 'namespace is the namespace of matching ServiceAccount objects Required'}
					io_k8s_api_flowcontrol_v1_Subject_user {doc 'user matches based on username'}
						mandatory
							String io_k8s_api_flowcontrol_v1_Subject_user_name {doc 'name is the username that matches, or * to match all usernames Required'}
			io_k8s_api_flowcontrol_v1_UserSubject {doc 'UserSubject holds detailed information for user-kind subject'}
				mandatory
					String io_k8s_api_flowcontrol_v1_UserSubject_name {doc 'name is the username that matches, or * to match all usernames Required'}
			io_k8s_api_flowcontrol_v1beta3_ExemptPriorityLevelConfiguration {doc 'ExemptPriorityLevelConfiguration describes the configurable aspects of the handling of exempt requests In the mandatory exempt configuration object the values in the fields here can be modified by authorized users, unlike the rest of the spec'}
				optional
					Integer io_k8s_api_flowcontrol_v1beta3_ExemptPriorityLevelConfiguration_lendablePercent {default 0, doc 'lendablePercent prescribes the fraction of the level_s NominalCL that can be borrowed by other priority levels  This value of this field must be between 0 and 100, inclusive, and it defaults to 0 The number of seats that other levels can borrow from this level, known as this level_s LendableConcurrencyLimit (LendableCL), is defined as followsLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/1000 )'}
					Integer io_k8s_api_flowcontrol_v1beta3_ExemptPriorityLevelConfiguration_nominalConcurrencyShares {doc 'nominalConcurrencyShares (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level This is the number of execution seats nominally reserved for this priority level This DOES NOT limit the dispatching from this priority level but affects the other priority levels through the borrowing mechanism The server_s concurrency limit (ServerCL) is divided among all the priority levels in proportion to their NCS values:NominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)Bigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level This field has a default value of zero'}
			io_k8s_api_flowcontrol_v1beta3_FlowDistinguisherMethod {doc 'FlowDistinguisherMethod specifies the method of a flow distinguisher'}
				mandatory
					io_k8s_api_flowcontrol_v1beta3_FlowDistinguisherMethod_type {doc 'type is the type of flow distinguisher method The supported types are ByUser and ByNamespace Required'}
						alternative
							io_k8s_api_flowcontrol_v1beta3_FlowDistinguisherMethod_type_ByNamespace {doc 'Specific value: ByNamespace'}
							io_k8s_api_flowcontrol_v1beta3_FlowDistinguisherMethod_type_ByUser {doc 'Specific value: ByUser'}
			io_k8s_api_flowcontrol_v1beta3_FlowSchema {doc 'FlowSchema defines the schema of a group of flows Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a flow distinguisher'}
				optional
					String io_k8s_api_flowcontrol_v1beta3_FlowSchema_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_flowcontrol_v1beta3_FlowSchema_kind {default 'FlowSchema', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata {doc 'metadata is the standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_flowcontrol_v1beta3_FlowSchema_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec {doc 'spec is the specification of the desired behavior of a FlowSchema More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						mandatory
							io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_priorityLevelConfiguration {doc 'priorityLevelConfiguration should reference a PriorityLevelConfiguration in the cluster If the reference cannot be resolved, the FlowSchema will be ignored and marked as invalid in its status Required'}
								mandatory
									String io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_priorityLevelConfiguration_name {doc 'name is the name of the priority level configuration being referenced Required'}
						optional
							io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_distinguisherMethod {doc 'distinguisherMethod defines how to compute the flow distinguisher for requests that match this schema nil specifies that the distinguisher is disabled and thus will always be the empty string'}
								mandatory
									io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_distinguisherMethod_type {doc 'type is the type of flow distinguisher method The supported types are ByUser and ByNamespace Required'}
										alternative
											io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_distinguisherMethod_type_ByNamespace {doc 'Specific value: ByNamespace'}
											io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_distinguisherMethod_type_ByUser {doc 'Specific value: ByUser'}
							Integer io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_matchingPrecedence {doc 'matchingPrecedence is used to choose among the FlowSchemas that match a given request The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence  Each MatchingPrecedence value must be ranged in [1,10000] Note that if the precedence is not specified, it will be set to 1000 as default'}
							io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules cardinality [1..*] {doc 'rules describes which requests will match this flow schema This FlowSchema matches a request if and only if at least one member of rules matches the request if it is an empty slice, there will be no requests matching the FlowSchema'}
								mandatory
									io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_subjects cardinality [1..*] {doc 'subjects is the list of normal user, serviceaccount, or group that this rule cares about There must be at least one member in this slice A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request Required'}
										mandatory
											String io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_subjects_kind {doc 'kind indicates which one of the other fields is non-empty Required'}
										optional
											io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_subjects_group {doc 'group matches based on user group name'}
												mandatory
													String io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_subjects_group_name {doc 'name is the user group that matches, or * to match all user groups See https:_githubcom/kubernetes/apiserver/blob/master/pkg/authentication/user/usergo for some well-known group names Required'}
											io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_subjects_serviceAccount {doc 'serviceAccount matches ServiceAccounts'}
												mandatory
													String io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_subjects_serviceAccount_name {doc 'name is the name of matching ServiceAccount objects, or * to match regardless of name Required'}
													String io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_subjects_serviceAccount_namespace {doc 'namespace is the namespace of matching ServiceAccount objects Required'}
											io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_subjects_user {doc 'user matches based on username'}
												mandatory
													String io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_subjects_user_name {doc 'name is the username that matches, or * to match all usernames Required'}
								optional
									io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_nonResourceRules cardinality [1..*] {doc 'nonResourceRules is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL'}
										mandatory
											io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_nonResourceRules_nonResourceURLs cardinality [1..*] {doc 'nonResourceURLs is a set of url prefixes that a user should have access to and may not be empty For example:  - /healthz is legal  - /hea* is illegal  - /hea is legal but matches nothing  - /hea/* also matches nothing  - /healthz/* matches all per-component health checks* matches all non-resource urls if it is present, it must be the only entry Required'}
												mandatory
													String io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_nonResourceRules_nonResourceURLs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_nonResourceRules_verbs cardinality [1..*] {doc 'verbs is a list of matching verbs and may not be empty * matches all verbs If it is present, it must be the only entry Required'}
												mandatory
													String io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_nonResourceRules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_resourceRules cardinality [1..*] {doc 'resourceRules is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource At least one of resourceRules and nonResourceRules has to be non-empty'}
										mandatory
											io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_resourceRules_apiGroups cardinality [1..*] {doc 'apiGroups is a list of matching API groups and may not be empty * matches all API groups and, if present, must be the only entry Required'}
												mandatory
													String io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_resourceRules_resources cardinality [1..*] {doc 'resources is a list of matching resources (ie, lowercase and plural) with, if desired, subresource  For example, [ services, nodes/status ]  This list may not be empty * matches all resources and, if present, must be the only entry Required'}
												mandatory
													String io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_resourceRules_verbs cardinality [1..*] {doc 'verbs is a list of matching verbs and may not be empty * matches all verbs and, if present, must be the only entry Required'}
												mandatory
													String io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_resourceRules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_resourceRules_clusterScope {doc 'clusterScope indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces) If this field is omitted or false then the namespaces field must contain a non-empty list'}
											io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_resourceRules_namespaces cardinality [1..*] {doc 'namespaces is a list of target namespaces that restricts matches  A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains *  Note that * matches any specified namespace but does not match a request that _does not specify_ a namespace (see the clusterScope field for that) This list may be empty, but only if clusterScope is true'}
												mandatory
													String io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_resourceRules_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_flowcontrol_v1beta3_FlowSchema_status {doc 'status is the current status of a FlowSchema More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							io_k8s_api_flowcontrol_v1beta3_FlowSchema_status_conditions cardinality [1..*] {doc 'conditions is a list of the current states of FlowSchema'}
								mandatory
									io_k8s_api_flowcontrol_v1beta3_FlowSchema_status_conditions_status {doc 'status is the status of the condition Can be True, False, Unknown Required'}
										alternative
											io_k8s_api_flowcontrol_v1beta3_FlowSchema_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_flowcontrol_v1beta3_FlowSchema_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_flowcontrol_v1beta3_FlowSchema_status_conditions_status_True {doc 'Specific value: True'}
									String io_k8s_api_flowcontrol_v1beta3_FlowSchema_status_conditions_type {doc 'type is the type of the condition Required'}
								optional
									io_k8s_api_flowcontrol_v1beta3_FlowSchema_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another'}
										optional
											String io_k8s_api_flowcontrol_v1beta3_FlowSchema_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_flowcontrol_v1beta3_FlowSchema_status_conditions_message {doc 'message is a human-readable message indicating details about last transition'}
									String io_k8s_api_flowcontrol_v1beta3_FlowSchema_status_conditions_reason {doc 'reason is a unique, one-word, CamelCase reason for the condition_s last transition'}
			io_k8s_api_flowcontrol_v1beta3_FlowSchemaCondition {doc 'FlowSchemaCondition describes conditions for a FlowSchema'}
				mandatory
					io_k8s_api_flowcontrol_v1beta3_FlowSchemaCondition_status {doc 'status is the status of the condition Can be True, False, Unknown Required'}
						alternative
							io_k8s_api_flowcontrol_v1beta3_FlowSchemaCondition_status_Unknown {doc 'Specific value: Unknown'}
							io_k8s_api_flowcontrol_v1beta3_FlowSchemaCondition_status_False {doc 'Specific value: False'}
							io_k8s_api_flowcontrol_v1beta3_FlowSchemaCondition_status_True {doc 'Specific value: True'}
					String io_k8s_api_flowcontrol_v1beta3_FlowSchemaCondition_type {doc 'type is the type of the condition Required'}
				optional
					io_k8s_api_flowcontrol_v1beta3_FlowSchemaCondition_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another'}
						optional
							String io_k8s_api_flowcontrol_v1beta3_FlowSchemaCondition_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_api_flowcontrol_v1beta3_FlowSchemaCondition_message {doc 'message is a human-readable message indicating details about last transition'}
					String io_k8s_api_flowcontrol_v1beta3_FlowSchemaCondition_reason {doc 'reason is a unique, one-word, CamelCase reason for the condition_s last transition'}
			io_k8s_api_flowcontrol_v1beta3_FlowSchemaList {doc 'FlowSchemaList is a list of FlowSchema objects'}
				mandatory
					io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items cardinality [1..*] {doc 'items is a list of FlowSchemas'}
						optional
							String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_kind {default 'FlowSchema', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata {doc 'metadata is the standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec {doc 'spec is the specification of the desired behavior of a FlowSchema More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_priorityLevelConfiguration {doc 'priorityLevelConfiguration should reference a PriorityLevelConfiguration in the cluster If the reference cannot be resolved, the FlowSchema will be ignored and marked as invalid in its status Required'}
										mandatory
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_priorityLevelConfiguration_name {doc 'name is the name of the priority level configuration being referenced Required'}
								optional
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_distinguisherMethod {doc 'distinguisherMethod defines how to compute the flow distinguisher for requests that match this schema nil specifies that the distinguisher is disabled and thus will always be the empty string'}
										mandatory
											io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_distinguisherMethod_type {doc 'type is the type of flow distinguisher method The supported types are ByUser and ByNamespace Required'}
												alternative
													io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_distinguisherMethod_type_ByNamespace {doc 'Specific value: ByNamespace'}
													io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_distinguisherMethod_type_ByUser {doc 'Specific value: ByUser'}
									Integer io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_matchingPrecedence {doc 'matchingPrecedence is used to choose among the FlowSchemas that match a given request The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence  Each MatchingPrecedence value must be ranged in [1,10000] Note that if the precedence is not specified, it will be set to 1000 as default'}
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules cardinality [1..*] {doc 'rules describes which requests will match this flow schema This FlowSchema matches a request if and only if at least one member of rules matches the request if it is an empty slice, there will be no requests matching the FlowSchema'}
										mandatory
											io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_subjects cardinality [1..*] {doc 'subjects is the list of normal user, serviceaccount, or group that this rule cares about There must be at least one member in this slice A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request Required'}
												mandatory
													String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_subjects_kind {doc 'kind indicates which one of the other fields is non-empty Required'}
												optional
													io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_subjects_group {doc 'group matches based on user group name'}
														mandatory
															String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_subjects_group_name {doc 'name is the user group that matches, or * to match all user groups See https:_githubcom/kubernetes/apiserver/blob/master/pkg/authentication/user/usergo for some well-known group names Required'}
													io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_subjects_serviceAccount {doc 'serviceAccount matches ServiceAccounts'}
														mandatory
															String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_subjects_serviceAccount_name {doc 'name is the name of matching ServiceAccount objects, or * to match regardless of name Required'}
															String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_subjects_serviceAccount_namespace {doc 'namespace is the namespace of matching ServiceAccount objects Required'}
													io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_subjects_user {doc 'user matches based on username'}
														mandatory
															String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_subjects_user_name {doc 'name is the username that matches, or * to match all usernames Required'}
										optional
											io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_nonResourceRules cardinality [1..*] {doc 'nonResourceRules is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL'}
												mandatory
													io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_nonResourceRules_nonResourceURLs cardinality [1..*] {doc 'nonResourceURLs is a set of url prefixes that a user should have access to and may not be empty For example:  - /healthz is legal  - /hea* is illegal  - /hea is legal but matches nothing  - /hea/* also matches nothing  - /healthz/* matches all per-component health checks* matches all non-resource urls if it is present, it must be the only entry Required'}
														mandatory
															String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_nonResourceRules_nonResourceURLs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_nonResourceRules_verbs cardinality [1..*] {doc 'verbs is a list of matching verbs and may not be empty * matches all verbs If it is present, it must be the only entry Required'}
														mandatory
															String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_nonResourceRules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_resourceRules cardinality [1..*] {doc 'resourceRules is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource At least one of resourceRules and nonResourceRules has to be non-empty'}
												mandatory
													io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_resourceRules_apiGroups cardinality [1..*] {doc 'apiGroups is a list of matching API groups and may not be empty * matches all API groups and, if present, must be the only entry Required'}
														mandatory
															String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_resourceRules_resources cardinality [1..*] {doc 'resources is a list of matching resources (ie, lowercase and plural) with, if desired, subresource  For example, [ services, nodes/status ]  This list may not be empty * matches all resources and, if present, must be the only entry Required'}
														mandatory
															String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_resourceRules_verbs cardinality [1..*] {doc 'verbs is a list of matching verbs and may not be empty * matches all verbs and, if present, must be the only entry Required'}
														mandatory
															String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_resourceRules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_resourceRules_clusterScope {doc 'clusterScope indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces) If this field is omitted or false then the namespaces field must contain a non-empty list'}
													io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_resourceRules_namespaces cardinality [1..*] {doc 'namespaces is a list of target namespaces that restricts matches  A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains *  Note that * matches any specified namespace but does not match a request that _does not specify_ a namespace (see the clusterScope field for that) This list may be empty, but only if clusterScope is true'}
														mandatory
															String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_resourceRules_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_status {doc 'status is the current status of a FlowSchema More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								optional
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_status_conditions cardinality [1..*] {doc 'conditions is a list of the current states of FlowSchema'}
										mandatory
											io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_status_conditions_status {doc 'status is the status of the condition Can be True, False, Unknown Required'}
												alternative
													io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_status_conditions_status_True {doc 'Specific value: True'}
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_status_conditions_type {doc 'type is the type of the condition Required'}
										optional
											io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another'}
												optional
													String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_status_conditions_message {doc 'message is a human-readable message indicating details about last transition'}
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_status_conditions_reason {doc 'reason is a unique, one-word, CamelCase reason for the condition_s last transition'}
				optional
					String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_kind {default 'FlowSchemaList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_metadata {doc 'metadata is the standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec {doc 'FlowSchemaSpec describes how the FlowSchema_s specification looks like'}
				mandatory
					io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_priorityLevelConfiguration {doc 'priorityLevelConfiguration should reference a PriorityLevelConfiguration in the cluster If the reference cannot be resolved, the FlowSchema will be ignored and marked as invalid in its status Required'}
						mandatory
							String io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_priorityLevelConfiguration_name {doc 'name is the name of the priority level configuration being referenced Required'}
				optional
					io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_distinguisherMethod {doc 'distinguisherMethod defines how to compute the flow distinguisher for requests that match this schema nil specifies that the distinguisher is disabled and thus will always be the empty string'}
						mandatory
							io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_distinguisherMethod_type {doc 'type is the type of flow distinguisher method The supported types are ByUser and ByNamespace Required'}
								alternative
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_distinguisherMethod_type_ByNamespace {doc 'Specific value: ByNamespace'}
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_distinguisherMethod_type_ByUser {doc 'Specific value: ByUser'}
					Integer io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_matchingPrecedence {doc 'matchingPrecedence is used to choose among the FlowSchemas that match a given request The chosen FlowSchema is among those with the numerically lowest (which we take to be logically highest) MatchingPrecedence  Each MatchingPrecedence value must be ranged in [1,10000] Note that if the precedence is not specified, it will be set to 1000 as default'}
					io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules cardinality [1..*] {doc 'rules describes which requests will match this flow schema This FlowSchema matches a request if and only if at least one member of rules matches the request if it is an empty slice, there will be no requests matching the FlowSchema'}
						mandatory
							io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_subjects cardinality [1..*] {doc 'subjects is the list of normal user, serviceaccount, or group that this rule cares about There must be at least one member in this slice A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request Required'}
								mandatory
									String io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_subjects_kind {doc 'kind indicates which one of the other fields is non-empty Required'}
								optional
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_subjects_group {doc 'group matches based on user group name'}
										mandatory
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_subjects_group_name {doc 'name is the user group that matches, or * to match all user groups See https:_githubcom/kubernetes/apiserver/blob/master/pkg/authentication/user/usergo for some well-known group names Required'}
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_subjects_serviceAccount {doc 'serviceAccount matches ServiceAccounts'}
										mandatory
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_subjects_serviceAccount_name {doc 'name is the name of matching ServiceAccount objects, or * to match regardless of name Required'}
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_subjects_serviceAccount_namespace {doc 'namespace is the namespace of matching ServiceAccount objects Required'}
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_subjects_user {doc 'user matches based on username'}
										mandatory
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_subjects_user_name {doc 'name is the username that matches, or * to match all usernames Required'}
						optional
							io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_nonResourceRules cardinality [1..*] {doc 'nonResourceRules is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL'}
								mandatory
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_nonResourceRules_nonResourceURLs cardinality [1..*] {doc 'nonResourceURLs is a set of url prefixes that a user should have access to and may not be empty For example:  - /healthz is legal  - /hea* is illegal  - /hea is legal but matches nothing  - /hea/* also matches nothing  - /healthz/* matches all per-component health checks* matches all non-resource urls if it is present, it must be the only entry Required'}
										mandatory
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_nonResourceRules_nonResourceURLs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_nonResourceRules_verbs cardinality [1..*] {doc 'verbs is a list of matching verbs and may not be empty * matches all verbs If it is present, it must be the only entry Required'}
										mandatory
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_nonResourceRules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_resourceRules cardinality [1..*] {doc 'resourceRules is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource At least one of resourceRules and nonResourceRules has to be non-empty'}
								mandatory
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_resourceRules_apiGroups cardinality [1..*] {doc 'apiGroups is a list of matching API groups and may not be empty * matches all API groups and, if present, must be the only entry Required'}
										mandatory
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_resourceRules_resources cardinality [1..*] {doc 'resources is a list of matching resources (ie, lowercase and plural) with, if desired, subresource  For example, [ services, nodes/status ]  This list may not be empty * matches all resources and, if present, must be the only entry Required'}
										mandatory
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_resourceRules_verbs cardinality [1..*] {doc 'verbs is a list of matching verbs and may not be empty * matches all verbs and, if present, must be the only entry Required'}
										mandatory
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_resourceRules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_resourceRules_clusterScope {doc 'clusterScope indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces) If this field is omitted or false then the namespaces field must contain a non-empty list'}
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_resourceRules_namespaces cardinality [1..*] {doc 'namespaces is a list of target namespaces that restricts matches  A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains *  Note that * matches any specified namespace but does not match a request that _does not specify_ a namespace (see the clusterScope field for that) This list may be empty, but only if clusterScope is true'}
										mandatory
											String io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_resourceRules_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_flowcontrol_v1beta3_FlowSchemaStatus {doc 'FlowSchemaStatus represents the current state of a FlowSchema'}
				optional
					io_k8s_api_flowcontrol_v1beta3_FlowSchemaStatus_conditions cardinality [1..*] {doc 'conditions is a list of the current states of FlowSchema'}
						mandatory
							io_k8s_api_flowcontrol_v1beta3_FlowSchemaStatus_conditions_status {doc 'status is the status of the condition Can be True, False, Unknown Required'}
								alternative
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_flowcontrol_v1beta3_FlowSchemaStatus_conditions_status_True {doc 'Specific value: True'}
							String io_k8s_api_flowcontrol_v1beta3_FlowSchemaStatus_conditions_type {doc 'type is the type of the condition Required'}
						optional
							io_k8s_api_flowcontrol_v1beta3_FlowSchemaStatus_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another'}
								optional
									String io_k8s_api_flowcontrol_v1beta3_FlowSchemaStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_flowcontrol_v1beta3_FlowSchemaStatus_conditions_message {doc 'message is a human-readable message indicating details about last transition'}
							String io_k8s_api_flowcontrol_v1beta3_FlowSchemaStatus_conditions_reason {doc 'reason is a unique, one-word, CamelCase reason for the condition_s last transition'}
			io_k8s_api_flowcontrol_v1beta3_GroupSubject {doc 'GroupSubject holds detailed information for group-kind subject'}
				mandatory
					String io_k8s_api_flowcontrol_v1beta3_GroupSubject_name {doc 'name is the user group that matches, or * to match all user groups See https:_githubcom/kubernetes/apiserver/blob/master/pkg/authentication/user/usergo for some well-known group names Required'}
			io_k8s_api_flowcontrol_v1beta3_LimitResponse {doc 'LimitResponse defines how to handle requests that can not be executed right now'}
				mandatory
					io_k8s_api_flowcontrol_v1beta3_LimitResponse_type {doc 'type is Queue or Reject Queue means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached Reject means that requests that can not be executed upon arrival are rejected Required'}
						alternative
							io_k8s_api_flowcontrol_v1beta3_LimitResponse_type_Reject {doc 'Specific value: Reject'}
							io_k8s_api_flowcontrol_v1beta3_LimitResponse_type_Queue {doc 'Specific value: Queue'}
				optional
					io_k8s_api_flowcontrol_v1beta3_LimitResponse_queuing {doc 'queuing holds the configuration parameters for queuing This field may be non-empty only if type is Queue'}
						optional
							Integer io_k8s_api_flowcontrol_v1beta3_LimitResponse_queuing_handSize {doc 'handSize is a small positive number that configures the shuffle sharding of requests into queues  When enqueuing a request at this priority level the request_s flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here  The request is put into one of the shortest queues in that hand handSize must be no larger than queues, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues)  See the user-facing documentation for more extensive guidance on setting this field  This field has a default value of 8'}
							Integer io_k8s_api_flowcontrol_v1beta3_LimitResponse_queuing_queueLengthLimit {doc 'queueLengthLimit is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected  This value must be positive  If not specified, it will be defaulted to 50'}
							Integer io_k8s_api_flowcontrol_v1beta3_LimitResponse_queuing_queues {doc 'queues is the number of queues for this priority level The queues exist independently at each apiserver The value must be positive  Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant  This field has a default value of 64'}
			io_k8s_api_flowcontrol_v1beta3_LimitedPriorityLevelConfiguration {doc 'LimitedPriorityLevelConfiguration specifies how to handle requests that are subject to limits It addresses two issues:  - How are requests for this priority level limited?  - What should be done with requests that exceed the limit?'}
				optional
					Integer io_k8s_api_flowcontrol_v1beta3_LimitedPriorityLevelConfiguration_borrowingLimitPercent {doc 'borrowingLimitPercent, if present, configures a limit on how many seats this priority level can borrow from other priority levels The limit is known as this level_s BorrowingConcurrencyLimit (BorrowingCL) and is a limit on the total number of seats that this level may borrow at any one time This field holds the ratio of that limit to the level_s nominal concurrency limit When this field is non-nil, it must hold a non-negative integer and the limit is calculated as followsBorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/1000 )The value of this field can be more than 100, implying that this priority level can borrow a number of seats that is greater than its own nominal concurrency limit (NominalCL) When this field is left nil, the limit is effectively infinite'}
					Integer io_k8s_api_flowcontrol_v1beta3_LimitedPriorityLevelConfiguration_lendablePercent {default 0, doc 'lendablePercent prescribes the fraction of the level_s NominalCL that can be borrowed by other priority levels The value of this field must be between 0 and 100, inclusive, and it defaults to 0 The number of seats that other levels can borrow from this level, known as this level_s LendableConcurrencyLimit (LendableCL), is defined as followsLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/1000 )'}
					io_k8s_api_flowcontrol_v1beta3_LimitedPriorityLevelConfiguration_limitResponse {doc 'limitResponse indicates what to do with requests that can not be executed right now'}
						mandatory
							io_k8s_api_flowcontrol_v1beta3_LimitedPriorityLevelConfiguration_limitResponse_type {doc 'type is Queue or Reject Queue means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached Reject means that requests that can not be executed upon arrival are rejected Required'}
								alternative
									io_k8s_api_flowcontrol_v1beta3_LimitedPriorityLevelConfiguration_limitResponse_type_Reject {doc 'Specific value: Reject'}
									io_k8s_api_flowcontrol_v1beta3_LimitedPriorityLevelConfiguration_limitResponse_type_Queue {doc 'Specific value: Queue'}
						optional
							io_k8s_api_flowcontrol_v1beta3_LimitedPriorityLevelConfiguration_limitResponse_queuing {doc 'queuing holds the configuration parameters for queuing This field may be non-empty only if type is Queue'}
								optional
									Integer io_k8s_api_flowcontrol_v1beta3_LimitedPriorityLevelConfiguration_limitResponse_queuing_handSize {doc 'handSize is a small positive number that configures the shuffle sharding of requests into queues  When enqueuing a request at this priority level the request_s flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here  The request is put into one of the shortest queues in that hand handSize must be no larger than queues, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues)  See the user-facing documentation for more extensive guidance on setting this field  This field has a default value of 8'}
									Integer io_k8s_api_flowcontrol_v1beta3_LimitedPriorityLevelConfiguration_limitResponse_queuing_queueLengthLimit {doc 'queueLengthLimit is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected  This value must be positive  If not specified, it will be defaulted to 50'}
									Integer io_k8s_api_flowcontrol_v1beta3_LimitedPriorityLevelConfiguration_limitResponse_queuing_queues {doc 'queues is the number of queues for this priority level The queues exist independently at each apiserver The value must be positive  Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant  This field has a default value of 64'}
					Integer io_k8s_api_flowcontrol_v1beta3_LimitedPriorityLevelConfiguration_nominalConcurrencyShares {doc 'nominalConcurrencyShares (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level This is the number of execution seats available at this priority level This is used both for requests dispatched from this priority level as well as requests dispatched from other priority levels borrowing seats from this level The server_s concurrency limit (ServerCL) is divided among the Limited priority levels in proportion to their NCS values:NominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)Bigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level This field has a default value of 30'}
			io_k8s_api_flowcontrol_v1beta3_NonResourcePolicyRule {doc 'NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request'}
				mandatory
					io_k8s_api_flowcontrol_v1beta3_NonResourcePolicyRule_nonResourceURLs cardinality [1..*] {doc 'nonResourceURLs is a set of url prefixes that a user should have access to and may not be empty For example:  - /healthz is legal  - /hea* is illegal  - /hea is legal but matches nothing  - /hea/* also matches nothing  - /healthz/* matches all per-component health checks* matches all non-resource urls if it is present, it must be the only entry Required'}
						mandatory
							String io_k8s_api_flowcontrol_v1beta3_NonResourcePolicyRule_nonResourceURLs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_flowcontrol_v1beta3_NonResourcePolicyRule_verbs cardinality [1..*] {doc 'verbs is a list of matching verbs and may not be empty * matches all verbs If it is present, it must be the only entry Required'}
						mandatory
							String io_k8s_api_flowcontrol_v1beta3_NonResourcePolicyRule_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects {doc 'PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver The test considers the subject making the request, the verb being requested, and the resource to be acted upon This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request'}
				mandatory
					io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_subjects cardinality [1..*] {doc 'subjects is the list of normal user, serviceaccount, or group that this rule cares about There must be at least one member in this slice A slice that includes both the system:authenticated and system:unauthenticated user groups matches every request Required'}
						mandatory
							String io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_subjects_kind {doc 'kind indicates which one of the other fields is non-empty Required'}
						optional
							io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_subjects_group {doc 'group matches based on user group name'}
								mandatory
									String io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_subjects_group_name {doc 'name is the user group that matches, or * to match all user groups See https:_githubcom/kubernetes/apiserver/blob/master/pkg/authentication/user/usergo for some well-known group names Required'}
							io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_subjects_serviceAccount {doc 'serviceAccount matches ServiceAccounts'}
								mandatory
									String io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_subjects_serviceAccount_name {doc 'name is the name of matching ServiceAccount objects, or * to match regardless of name Required'}
									String io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_subjects_serviceAccount_namespace {doc 'namespace is the namespace of matching ServiceAccount objects Required'}
							io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_subjects_user {doc 'user matches based on username'}
								mandatory
									String io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_subjects_user_name {doc 'name is the username that matches, or * to match all usernames Required'}
				optional
					io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_nonResourceRules cardinality [1..*] {doc 'nonResourceRules is a list of NonResourcePolicyRules that identify matching requests according to their verb and the target non-resource URL'}
						mandatory
							io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_nonResourceRules_nonResourceURLs cardinality [1..*] {doc 'nonResourceURLs is a set of url prefixes that a user should have access to and may not be empty For example:  - /healthz is legal  - /hea* is illegal  - /hea is legal but matches nothing  - /hea/* also matches nothing  - /healthz/* matches all per-component health checks* matches all non-resource urls if it is present, it must be the only entry Required'}
								mandatory
									String io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_nonResourceRules_nonResourceURLs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_nonResourceRules_verbs cardinality [1..*] {doc 'verbs is a list of matching verbs and may not be empty * matches all verbs If it is present, it must be the only entry Required'}
								mandatory
									String io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_nonResourceRules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_resourceRules cardinality [1..*] {doc 'resourceRules is a slice of ResourcePolicyRules that identify matching requests according to their verb and the target resource At least one of resourceRules and nonResourceRules has to be non-empty'}
						mandatory
							io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_resourceRules_apiGroups cardinality [1..*] {doc 'apiGroups is a list of matching API groups and may not be empty * matches all API groups and, if present, must be the only entry Required'}
								mandatory
									String io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_resourceRules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_resourceRules_resources cardinality [1..*] {doc 'resources is a list of matching resources (ie, lowercase and plural) with, if desired, subresource  For example, [ services, nodes/status ]  This list may not be empty * matches all resources and, if present, must be the only entry Required'}
								mandatory
									String io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_resourceRules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_resourceRules_verbs cardinality [1..*] {doc 'verbs is a list of matching verbs and may not be empty * matches all verbs and, if present, must be the only entry Required'}
								mandatory
									String io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_resourceRules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_resourceRules_clusterScope {doc 'clusterScope indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces) If this field is omitted or false then the namespaces field must contain a non-empty list'}
							io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_resourceRules_namespaces cardinality [1..*] {doc 'namespaces is a list of target namespaces that restricts matches  A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains *  Note that * matches any specified namespace but does not match a request that _does not specify_ a namespace (see the clusterScope field for that) This list may be empty, but only if clusterScope is true'}
								mandatory
									String io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_resourceRules_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration {doc 'PriorityLevelConfiguration represents the configuration of a priority level'}
				optional
					String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_kind {default 'PriorityLevelConfiguration', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata {doc 'metadata is the standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec {doc 'spec is the specification of the desired behavior of a request-priority More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						mandatory
							io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_type {doc 'type indicates whether this priority level is subject to limitation on request execution  A value of Exempt means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels  A value of Limited means that (a) requests of this priority level _are_ subject to limits and (b) some of the server_s limited capacity is made available exclusively to this priority level Required'}
								alternative
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_type_Exempt {doc 'Specific value: Exempt'}
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_type_Limited {doc 'Specific value: Limited'}
						optional
							io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_exempt {doc 'exempt specifies how requests are handled for an exempt priority level This field MUST be empty if type is Limited This field MAY be non-empty if type is Exempt If empty and type is Exempt then the default values for ExemptPriorityLevelConfiguration apply'}
								optional
									Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_exempt_lendablePercent {default 0, doc 'lendablePercent prescribes the fraction of the level_s NominalCL that can be borrowed by other priority levels  This value of this field must be between 0 and 100, inclusive, and it defaults to 0 The number of seats that other levels can borrow from this level, known as this level_s LendableConcurrencyLimit (LendableCL), is defined as followsLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/1000 )'}
									Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_exempt_nominalConcurrencyShares {doc 'nominalConcurrencyShares (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level This is the number of execution seats nominally reserved for this priority level This DOES NOT limit the dispatching from this priority level but affects the other priority levels through the borrowing mechanism The server_s concurrency limit (ServerCL) is divided among all the priority levels in proportion to their NCS values:NominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)Bigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level This field has a default value of zero'}
							io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_limited {doc 'limited specifies how requests are handled for a Limited priority level This field must be non-empty if and only if type is Limited'}
								optional
									Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_limited_borrowingLimitPercent {doc 'borrowingLimitPercent, if present, configures a limit on how many seats this priority level can borrow from other priority levels The limit is known as this level_s BorrowingConcurrencyLimit (BorrowingCL) and is a limit on the total number of seats that this level may borrow at any one time This field holds the ratio of that limit to the level_s nominal concurrency limit When this field is non-nil, it must hold a non-negative integer and the limit is calculated as followsBorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/1000 )The value of this field can be more than 100, implying that this priority level can borrow a number of seats that is greater than its own nominal concurrency limit (NominalCL) When this field is left nil, the limit is effectively infinite'}
									Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_limited_lendablePercent {default 0, doc 'lendablePercent prescribes the fraction of the level_s NominalCL that can be borrowed by other priority levels The value of this field must be between 0 and 100, inclusive, and it defaults to 0 The number of seats that other levels can borrow from this level, known as this level_s LendableConcurrencyLimit (LendableCL), is defined as followsLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/1000 )'}
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_limited_limitResponse {doc 'limitResponse indicates what to do with requests that can not be executed right now'}
										mandatory
											io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_limited_limitResponse_type {doc 'type is Queue or Reject Queue means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached Reject means that requests that can not be executed upon arrival are rejected Required'}
												alternative
													io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_limited_limitResponse_type_Reject {doc 'Specific value: Reject'}
													io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_limited_limitResponse_type_Queue {doc 'Specific value: Queue'}
										optional
											io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_limited_limitResponse_queuing {doc 'queuing holds the configuration parameters for queuing This field may be non-empty only if type is Queue'}
												optional
													Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_limited_limitResponse_queuing_handSize {doc 'handSize is a small positive number that configures the shuffle sharding of requests into queues  When enqueuing a request at this priority level the request_s flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here  The request is put into one of the shortest queues in that hand handSize must be no larger than queues, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues)  See the user-facing documentation for more extensive guidance on setting this field  This field has a default value of 8'}
													Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_limited_limitResponse_queuing_queueLengthLimit {doc 'queueLengthLimit is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected  This value must be positive  If not specified, it will be defaulted to 50'}
													Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_limited_limitResponse_queuing_queues {doc 'queues is the number of queues for this priority level The queues exist independently at each apiserver The value must be positive  Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant  This field has a default value of 64'}
									Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_limited_nominalConcurrencyShares {doc 'nominalConcurrencyShares (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level This is the number of execution seats available at this priority level This is used both for requests dispatched from this priority level as well as requests dispatched from other priority levels borrowing seats from this level The server_s concurrency limit (ServerCL) is divided among the Limited priority levels in proportion to their NCS values:NominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)Bigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level This field has a default value of 30'}
					io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_status {doc 'status is the current status of a request-priority More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_status_conditions cardinality [1..*] {doc 'conditions is the current state of request-priority'}
								mandatory
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_status_conditions_status {doc 'status is the status of the condition Can be True, False, Unknown Required'}
										alternative
											io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_status_conditions_status_True {doc 'Specific value: True'}
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_status_conditions_type {doc 'type is the type of the condition Required'}
								optional
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another'}
										optional
											String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_status_conditions_message {doc 'message is a human-readable message indicating details about last transition'}
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_status_conditions_reason {doc 'reason is a unique, one-word, CamelCase reason for the condition_s last transition'}
			io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationCondition {doc 'PriorityLevelConfigurationCondition defines the condition of priority level'}
				mandatory
					io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationCondition_status {doc 'status is the status of the condition Can be True, False, Unknown Required'}
						alternative
							io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationCondition_status_Unknown {doc 'Specific value: Unknown'}
							io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationCondition_status_False {doc 'Specific value: False'}
							io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationCondition_status_True {doc 'Specific value: True'}
					String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationCondition_type {doc 'type is the type of the condition Required'}
				optional
					io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationCondition_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another'}
						optional
							String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationCondition_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationCondition_message {doc 'message is a human-readable message indicating details about last transition'}
					String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationCondition_reason {doc 'reason is a unique, one-word, CamelCase reason for the condition_s last transition'}
			io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList {doc 'PriorityLevelConfigurationList is a list of PriorityLevelConfiguration objects'}
				mandatory
					io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items cardinality [1..*] {doc 'items is a list of request-priorities'}
						optional
							String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_kind {default 'PriorityLevelConfiguration', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata {doc 'metadata is the standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec {doc 'spec is the specification of the desired behavior of a request-priority More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_type {doc 'type indicates whether this priority level is subject to limitation on request execution  A value of Exempt means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels  A value of Limited means that (a) requests of this priority level _are_ subject to limits and (b) some of the server_s limited capacity is made available exclusively to this priority level Required'}
										alternative
											io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_type_Exempt {doc 'Specific value: Exempt'}
											io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_type_Limited {doc 'Specific value: Limited'}
								optional
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_exempt {doc 'exempt specifies how requests are handled for an exempt priority level This field MUST be empty if type is Limited This field MAY be non-empty if type is Exempt If empty and type is Exempt then the default values for ExemptPriorityLevelConfiguration apply'}
										optional
											Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_exempt_lendablePercent {default 0, doc 'lendablePercent prescribes the fraction of the level_s NominalCL that can be borrowed by other priority levels  This value of this field must be between 0 and 100, inclusive, and it defaults to 0 The number of seats that other levels can borrow from this level, known as this level_s LendableConcurrencyLimit (LendableCL), is defined as followsLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/1000 )'}
											Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_exempt_nominalConcurrencyShares {doc 'nominalConcurrencyShares (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level This is the number of execution seats nominally reserved for this priority level This DOES NOT limit the dispatching from this priority level but affects the other priority levels through the borrowing mechanism The server_s concurrency limit (ServerCL) is divided among all the priority levels in proportion to their NCS values:NominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)Bigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level This field has a default value of zero'}
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_limited {doc 'limited specifies how requests are handled for a Limited priority level This field must be non-empty if and only if type is Limited'}
										optional
											Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_limited_borrowingLimitPercent {doc 'borrowingLimitPercent, if present, configures a limit on how many seats this priority level can borrow from other priority levels The limit is known as this level_s BorrowingConcurrencyLimit (BorrowingCL) and is a limit on the total number of seats that this level may borrow at any one time This field holds the ratio of that limit to the level_s nominal concurrency limit When this field is non-nil, it must hold a non-negative integer and the limit is calculated as followsBorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/1000 )The value of this field can be more than 100, implying that this priority level can borrow a number of seats that is greater than its own nominal concurrency limit (NominalCL) When this field is left nil, the limit is effectively infinite'}
											Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_limited_lendablePercent {default 0, doc 'lendablePercent prescribes the fraction of the level_s NominalCL that can be borrowed by other priority levels The value of this field must be between 0 and 100, inclusive, and it defaults to 0 The number of seats that other levels can borrow from this level, known as this level_s LendableConcurrencyLimit (LendableCL), is defined as followsLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/1000 )'}
											io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_limited_limitResponse {doc 'limitResponse indicates what to do with requests that can not be executed right now'}
												mandatory
													io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_limited_limitResponse_type {doc 'type is Queue or Reject Queue means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached Reject means that requests that can not be executed upon arrival are rejected Required'}
														alternative
															io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_limited_limitResponse_type_Reject {doc 'Specific value: Reject'}
															io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_limited_limitResponse_type_Queue {doc 'Specific value: Queue'}
												optional
													io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_limited_limitResponse_queuing {doc 'queuing holds the configuration parameters for queuing This field may be non-empty only if type is Queue'}
														optional
															Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_limited_limitResponse_queuing_handSize {doc 'handSize is a small positive number that configures the shuffle sharding of requests into queues  When enqueuing a request at this priority level the request_s flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here  The request is put into one of the shortest queues in that hand handSize must be no larger than queues, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues)  See the user-facing documentation for more extensive guidance on setting this field  This field has a default value of 8'}
															Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_limited_limitResponse_queuing_queueLengthLimit {doc 'queueLengthLimit is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected  This value must be positive  If not specified, it will be defaulted to 50'}
															Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_limited_limitResponse_queuing_queues {doc 'queues is the number of queues for this priority level The queues exist independently at each apiserver The value must be positive  Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant  This field has a default value of 64'}
											Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_limited_nominalConcurrencyShares {doc 'nominalConcurrencyShares (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level This is the number of execution seats available at this priority level This is used both for requests dispatched from this priority level as well as requests dispatched from other priority levels borrowing seats from this level The server_s concurrency limit (ServerCL) is divided among the Limited priority levels in proportion to their NCS values:NominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)Bigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level This field has a default value of 30'}
							io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_status {doc 'status is the current status of a request-priority More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								optional
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_status_conditions cardinality [1..*] {doc 'conditions is the current state of request-priority'}
										mandatory
											io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_status_conditions_status {doc 'status is the status of the condition Can be True, False, Unknown Required'}
												alternative
													io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_status_conditions_status_True {doc 'Specific value: True'}
											String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_status_conditions_type {doc 'type is the type of the condition Required'}
										optional
											io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another'}
												optional
													String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_status_conditions_message {doc 'message is a human-readable message indicating details about last transition'}
											String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_status_conditions_reason {doc 'reason is a unique, one-word, CamelCase reason for the condition_s last transition'}
				optional
					String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_kind {default 'PriorityLevelConfigurationList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_metadata {doc 'metadata is the standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationReference {doc 'PriorityLevelConfigurationReference contains information that points to the request-priority being used'}
				mandatory
					String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationReference_name {doc 'name is the name of the priority level configuration being referenced Required'}
			io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec {doc 'PriorityLevelConfigurationSpec specifies the configuration of a priority level'}
				mandatory
					io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_type {doc 'type indicates whether this priority level is subject to limitation on request execution  A value of Exempt means that requests of this priority level are not subject to a limit (and thus are never queued) and do not detract from the capacity made available to other priority levels  A value of Limited means that (a) requests of this priority level _are_ subject to limits and (b) some of the server_s limited capacity is made available exclusively to this priority level Required'}
						alternative
							io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_type_Exempt {doc 'Specific value: Exempt'}
							io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_type_Limited {doc 'Specific value: Limited'}
				optional
					io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_exempt {doc 'exempt specifies how requests are handled for an exempt priority level This field MUST be empty if type is Limited This field MAY be non-empty if type is Exempt If empty and type is Exempt then the default values for ExemptPriorityLevelConfiguration apply'}
						optional
							Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_exempt_lendablePercent {default 0, doc 'lendablePercent prescribes the fraction of the level_s NominalCL that can be borrowed by other priority levels  This value of this field must be between 0 and 100, inclusive, and it defaults to 0 The number of seats that other levels can borrow from this level, known as this level_s LendableConcurrencyLimit (LendableCL), is defined as followsLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/1000 )'}
							Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_exempt_nominalConcurrencyShares {doc 'nominalConcurrencyShares (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level This is the number of execution seats nominally reserved for this priority level This DOES NOT limit the dispatching from this priority level but affects the other priority levels through the borrowing mechanism The server_s concurrency limit (ServerCL) is divided among all the priority levels in proportion to their NCS values:NominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)Bigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level This field has a default value of zero'}
					io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_limited {doc 'limited specifies how requests are handled for a Limited priority level This field must be non-empty if and only if type is Limited'}
						optional
							Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_limited_borrowingLimitPercent {doc 'borrowingLimitPercent, if present, configures a limit on how many seats this priority level can borrow from other priority levels The limit is known as this level_s BorrowingConcurrencyLimit (BorrowingCL) and is a limit on the total number of seats that this level may borrow at any one time This field holds the ratio of that limit to the level_s nominal concurrency limit When this field is non-nil, it must hold a non-negative integer and the limit is calculated as followsBorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/1000 )The value of this field can be more than 100, implying that this priority level can borrow a number of seats that is greater than its own nominal concurrency limit (NominalCL) When this field is left nil, the limit is effectively infinite'}
							Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_limited_lendablePercent {default 0, doc 'lendablePercent prescribes the fraction of the level_s NominalCL that can be borrowed by other priority levels The value of this field must be between 0 and 100, inclusive, and it defaults to 0 The number of seats that other levels can borrow from this level, known as this level_s LendableConcurrencyLimit (LendableCL), is defined as followsLendableCL(i) = round( NominalCL(i) * lendablePercent(i)/1000 )'}
							io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_limited_limitResponse {doc 'limitResponse indicates what to do with requests that can not be executed right now'}
								mandatory
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_limited_limitResponse_type {doc 'type is Queue or Reject Queue means that requests that can not be executed upon arrival are held in a queue until they can be executed or a queuing limit is reached Reject means that requests that can not be executed upon arrival are rejected Required'}
										alternative
											io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_limited_limitResponse_type_Reject {doc 'Specific value: Reject'}
											io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_limited_limitResponse_type_Queue {doc 'Specific value: Queue'}
								optional
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_limited_limitResponse_queuing {doc 'queuing holds the configuration parameters for queuing This field may be non-empty only if type is Queue'}
										optional
											Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_limited_limitResponse_queuing_handSize {doc 'handSize is a small positive number that configures the shuffle sharding of requests into queues  When enqueuing a request at this priority level the request_s flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here  The request is put into one of the shortest queues in that hand handSize must be no larger than queues, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues)  See the user-facing documentation for more extensive guidance on setting this field  This field has a default value of 8'}
											Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_limited_limitResponse_queuing_queueLengthLimit {doc 'queueLengthLimit is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected  This value must be positive  If not specified, it will be defaulted to 50'}
											Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_limited_limitResponse_queuing_queues {doc 'queues is the number of queues for this priority level The queues exist independently at each apiserver The value must be positive  Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant  This field has a default value of 64'}
							Integer io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_limited_nominalConcurrencyShares {doc 'nominalConcurrencyShares (NCS) contributes to the computation of the NominalConcurrencyLimit (NominalCL) of this level This is the number of execution seats available at this priority level This is used both for requests dispatched from this priority level as well as requests dispatched from other priority levels borrowing seats from this level The server_s concurrency limit (ServerCL) is divided among the Limited priority levels in proportion to their NCS values:NominalCL(i)  = ceil( ServerCL * NCS(i) / sum_ncs ) sum_ncs = sum[priority level k] NCS(k)Bigger numbers mean a larger nominal concurrency limit, at the expense of every other priority level This field has a default value of 30'}
			io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationStatus {doc 'PriorityLevelConfigurationStatus represents the current state of a request-priority'}
				optional
					io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationStatus_conditions cardinality [1..*] {doc 'conditions is the current state of request-priority'}
						mandatory
							io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationStatus_conditions_status {doc 'status is the status of the condition Can be True, False, Unknown Required'}
								alternative
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationStatus_conditions_status_True {doc 'Specific value: True'}
							String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationStatus_conditions_type {doc 'type is the type of the condition Required'}
						optional
							io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationStatus_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another'}
								optional
									String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationStatus_conditions_message {doc 'message is a human-readable message indicating details about last transition'}
							String io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationStatus_conditions_reason {doc 'reason is a unique, one-word, CamelCase reason for the condition_s last transition'}
			io_k8s_api_flowcontrol_v1beta3_QueuingConfiguration {doc 'QueuingConfiguration holds the configuration parameters for queuing'}
				optional
					Integer io_k8s_api_flowcontrol_v1beta3_QueuingConfiguration_handSize {doc 'handSize is a small positive number that configures the shuffle sharding of requests into queues  When enqueuing a request at this priority level the request_s flow identifier (a string pair) is hashed and the hash value is used to shuffle the list of queues and deal a hand of the size specified here  The request is put into one of the shortest queues in that hand handSize must be no larger than queues, and should be significantly smaller (so that a few heavy flows do not saturate most of the queues)  See the user-facing documentation for more extensive guidance on setting this field  This field has a default value of 8'}
					Integer io_k8s_api_flowcontrol_v1beta3_QueuingConfiguration_queueLengthLimit {doc 'queueLengthLimit is the maximum number of requests allowed to be waiting in a given queue of this priority level at a time; excess requests are rejected  This value must be positive  If not specified, it will be defaulted to 50'}
					Integer io_k8s_api_flowcontrol_v1beta3_QueuingConfiguration_queues {doc 'queues is the number of queues for this priority level The queues exist independently at each apiserver The value must be positive  Setting it to 1 effectively precludes shufflesharding and thus makes the distinguisher method of associated flow schemas irrelevant  This field has a default value of 64'}
			io_k8s_api_flowcontrol_v1beta3_ResourcePolicyRule {doc 'ResourcePolicyRule is a predicate that matches some resource requests, testing the request_s verb and the target resource A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) either (d1) the request does not specify a namespace (ie, Namespace==) and clusterScope is true or (d2) the request specifies a namespace and least one member of namespaces matches the request_s namespace'}
				mandatory
					io_k8s_api_flowcontrol_v1beta3_ResourcePolicyRule_apiGroups cardinality [1..*] {doc 'apiGroups is a list of matching API groups and may not be empty * matches all API groups and, if present, must be the only entry Required'}
						mandatory
							String io_k8s_api_flowcontrol_v1beta3_ResourcePolicyRule_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_flowcontrol_v1beta3_ResourcePolicyRule_resources cardinality [1..*] {doc 'resources is a list of matching resources (ie, lowercase and plural) with, if desired, subresource  For example, [ services, nodes/status ]  This list may not be empty * matches all resources and, if present, must be the only entry Required'}
						mandatory
							String io_k8s_api_flowcontrol_v1beta3_ResourcePolicyRule_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_flowcontrol_v1beta3_ResourcePolicyRule_verbs cardinality [1..*] {doc 'verbs is a list of matching verbs and may not be empty * matches all verbs and, if present, must be the only entry Required'}
						mandatory
							String io_k8s_api_flowcontrol_v1beta3_ResourcePolicyRule_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					io_k8s_api_flowcontrol_v1beta3_ResourcePolicyRule_clusterScope {doc 'clusterScope indicates whether to match requests that do not specify a namespace (which happens either because the resource is not namespaced or the request targets all namespaces) If this field is omitted or false then the namespaces field must contain a non-empty list'}
					io_k8s_api_flowcontrol_v1beta3_ResourcePolicyRule_namespaces cardinality [1..*] {doc 'namespaces is a list of target namespaces that restricts matches  A request that specifies a target namespace matches only if either (a) this list contains that target namespace or (b) this list contains *  Note that * matches any specified namespace but does not match a request that _does not specify_ a namespace (see the clusterScope field for that) This list may be empty, but only if clusterScope is true'}
						mandatory
							String io_k8s_api_flowcontrol_v1beta3_ResourcePolicyRule_namespaces_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_flowcontrol_v1beta3_ServiceAccountSubject {doc 'ServiceAccountSubject holds detailed information for service-account-kind subject'}
				mandatory
					String io_k8s_api_flowcontrol_v1beta3_ServiceAccountSubject_name {doc 'name is the name of matching ServiceAccount objects, or * to match regardless of name Required'}
					String io_k8s_api_flowcontrol_v1beta3_ServiceAccountSubject_namespace {doc 'namespace is the namespace of matching ServiceAccount objects Required'}
			io_k8s_api_flowcontrol_v1beta3_Subject {doc 'Subject matches the originator of a request, as identified by the request authentication system There are three ways of matching an originator; by user, group, or service account'}
				mandatory
					String io_k8s_api_flowcontrol_v1beta3_Subject_kind {doc 'kind indicates which one of the other fields is non-empty Required'}
				optional
					io_k8s_api_flowcontrol_v1beta3_Subject_group {doc 'group matches based on user group name'}
						mandatory
							String io_k8s_api_flowcontrol_v1beta3_Subject_group_name {doc 'name is the user group that matches, or * to match all user groups See https:_githubcom/kubernetes/apiserver/blob/master/pkg/authentication/user/usergo for some well-known group names Required'}
					io_k8s_api_flowcontrol_v1beta3_Subject_serviceAccount {doc 'serviceAccount matches ServiceAccounts'}
						mandatory
							String io_k8s_api_flowcontrol_v1beta3_Subject_serviceAccount_name {doc 'name is the name of matching ServiceAccount objects, or * to match regardless of name Required'}
							String io_k8s_api_flowcontrol_v1beta3_Subject_serviceAccount_namespace {doc 'namespace is the namespace of matching ServiceAccount objects Required'}
					io_k8s_api_flowcontrol_v1beta3_Subject_user {doc 'user matches based on username'}
						mandatory
							String io_k8s_api_flowcontrol_v1beta3_Subject_user_name {doc 'name is the username that matches, or * to match all usernames Required'}
			io_k8s_api_flowcontrol_v1beta3_UserSubject {doc 'UserSubject holds detailed information for user-kind subject'}
				mandatory
					String io_k8s_api_flowcontrol_v1beta3_UserSubject_name {doc 'name is the username that matches, or * to match all usernames Required'}
			io_k8s_api_networking_v1_HTTPIngressPath {doc 'HTTPIngressPath associates a path with a backend Incoming urls matching the path are forwarded to the backend'}
				mandatory
					io_k8s_api_networking_v1_HTTPIngressPath_backend {doc 'backend defines the referenced service endpoint to which the traffic will be forwarded to'}
						optional
							io_k8s_api_networking_v1_HTTPIngressPath_backend_resource {doc 'resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object If resource is specified, a serviceName and servicePort must not be specified This is a mutually exclusive setting with Service'}
								mandatory
									String io_k8s_api_networking_v1_HTTPIngressPath_backend_resource_kind {doc 'Kind is the type of resource being referenced'}
									String io_k8s_api_networking_v1_HTTPIngressPath_backend_resource_name {doc 'Name is the name of resource being referenced'}
								optional
									String io_k8s_api_networking_v1_HTTPIngressPath_backend_resource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
							io_k8s_api_networking_v1_HTTPIngressPath_backend_service {doc 'service references a service as a backend This is a mutually exclusive setting with Resource'}
								mandatory
									String io_k8s_api_networking_v1_HTTPIngressPath_backend_service_name {doc 'name is the referenced service The service must exist in the same namespace as the Ingress object'}
								optional
									io_k8s_api_networking_v1_HTTPIngressPath_backend_service_port {doc 'port of the referenced service A port name or port number is required for a IngressServiceBackend'}
										optional
											String io_k8s_api_networking_v1_HTTPIngressPath_backend_service_port_name {doc 'name is the name of the port on the Service This is a mutually exclusive setting with Number'}
											Integer io_k8s_api_networking_v1_HTTPIngressPath_backend_service_port_number {doc 'number is the numerical port number (eg 80) on the Service This is a mutually exclusive setting with Name'}
					String io_k8s_api_networking_v1_HTTPIngressPath_pathType {doc 'pathType determines the interpretation of the path matching PathType can be one of the following values: * Exact: Matches the URL path exactly * Prefix: Matches based on a URL path prefix split by _/_ Matching is  done on a path element by element basis A path element refers is the  list of labels in the path split by the _/_ separator A request is a  match for path p if every p is an element-wise prefix of p of the  request path Note that if the last element of the path is a substring  of the last element in request path, it is not a match (eg /foo/bar  matches /foo/bar/baz, but does not match /foo/barbaz)* ImplementationSpecific: Interpretation of the Path matching is up to  the IngressClass Implementations can treat this as a separate PathType  or treat it identically to Prefix or Exact path typesImplementations are required to support all path types'}
				optional
					String io_k8s_api_networking_v1_HTTPIngressPath_path {doc 'path is matched against the path of an incoming request Currently it can contain characters disallowed from the conventional path part of a URL as defined by RFC 3986 Paths must begin with a _/_ and must be present when using PathType with value Exact or Prefix'}
			io_k8s_api_networking_v1_HTTPIngressRuleValue {doc 'HTTPIngressRuleValue is a list of http selectors pointing to backends In the example: http:_<host>/<path>?<searchpart> -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last _/_ and before the first _?_ or _#_'}
				mandatory
					io_k8s_api_networking_v1_HTTPIngressRuleValue_paths cardinality [1..*] {doc 'paths is a collection of paths that map requests to backends'}
						mandatory
							io_k8s_api_networking_v1_HTTPIngressRuleValue_paths_backend {doc 'backend defines the referenced service endpoint to which the traffic will be forwarded to'}
								optional
									io_k8s_api_networking_v1_HTTPIngressRuleValue_paths_backend_resource {doc 'resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object If resource is specified, a serviceName and servicePort must not be specified This is a mutually exclusive setting with Service'}
										mandatory
											String io_k8s_api_networking_v1_HTTPIngressRuleValue_paths_backend_resource_kind {doc 'Kind is the type of resource being referenced'}
											String io_k8s_api_networking_v1_HTTPIngressRuleValue_paths_backend_resource_name {doc 'Name is the name of resource being referenced'}
										optional
											String io_k8s_api_networking_v1_HTTPIngressRuleValue_paths_backend_resource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
									io_k8s_api_networking_v1_HTTPIngressRuleValue_paths_backend_service {doc 'service references a service as a backend This is a mutually exclusive setting with Resource'}
										mandatory
											String io_k8s_api_networking_v1_HTTPIngressRuleValue_paths_backend_service_name {doc 'name is the referenced service The service must exist in the same namespace as the Ingress object'}
										optional
											io_k8s_api_networking_v1_HTTPIngressRuleValue_paths_backend_service_port {doc 'port of the referenced service A port name or port number is required for a IngressServiceBackend'}
												optional
													String io_k8s_api_networking_v1_HTTPIngressRuleValue_paths_backend_service_port_name {doc 'name is the name of the port on the Service This is a mutually exclusive setting with Number'}
													Integer io_k8s_api_networking_v1_HTTPIngressRuleValue_paths_backend_service_port_number {doc 'number is the numerical port number (eg 80) on the Service This is a mutually exclusive setting with Name'}
							String io_k8s_api_networking_v1_HTTPIngressRuleValue_paths_pathType {doc 'pathType determines the interpretation of the path matching PathType can be one of the following values: * Exact: Matches the URL path exactly * Prefix: Matches based on a URL path prefix split by _/_ Matching is  done on a path element by element basis A path element refers is the  list of labels in the path split by the _/_ separator A request is a  match for path p if every p is an element-wise prefix of p of the  request path Note that if the last element of the path is a substring  of the last element in request path, it is not a match (eg /foo/bar  matches /foo/bar/baz, but does not match /foo/barbaz)* ImplementationSpecific: Interpretation of the Path matching is up to  the IngressClass Implementations can treat this as a separate PathType  or treat it identically to Prefix or Exact path typesImplementations are required to support all path types'}
						optional
							String io_k8s_api_networking_v1_HTTPIngressRuleValue_paths_path {doc 'path is matched against the path of an incoming request Currently it can contain characters disallowed from the conventional path part of a URL as defined by RFC 3986 Paths must begin with a _/_ and must be present when using PathType with value Exact or Prefix'}
			io_k8s_api_networking_v1_IPBlock {doc 'IPBlock describes a particular CIDR (Ex 19216810/24,2001:db8::/64) that is allowed to the pods matched by a NetworkPolicySpec_s podSelector The except entry describes CIDRs that should not be included within this rule'}
				mandatory
					String io_k8s_api_networking_v1_IPBlock_cidr {doc 'cidr is a string representing the IPBlock Valid examples are 19216810/24 or 2001:db8::/64'}
				optional
					io_k8s_api_networking_v1_IPBlock_except cardinality [1..*] {doc 'except is a slice of CIDRs that should not be included within an IPBlock Valid examples are 19216810/24 or 2001:db8::/64 Except values will be rejected if they are outside the cidr range'}
						mandatory
							String io_k8s_api_networking_v1_IPBlock_except_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_networking_v1_Ingress {doc 'Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc'}
				optional
					String io_k8s_api_networking_v1_Ingress_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_networking_v1_Ingress_kind {default 'Ingress', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_networking_v1_Ingress_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_networking_v1_Ingress_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_networking_v1_Ingress_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_networking_v1_Ingress_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_networking_v1_Ingress_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_networking_v1_Ingress_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_networking_v1_Ingress_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_networking_v1_Ingress_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_networking_v1_Ingress_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_networking_v1_Ingress_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_networking_v1_Ingress_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_networking_v1_Ingress_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_networking_v1_Ingress_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_networking_v1_Ingress_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_networking_v1_Ingress_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_networking_v1_Ingress_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_networking_v1_Ingress_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_networking_v1_Ingress_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_networking_v1_Ingress_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_networking_v1_Ingress_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_networking_v1_Ingress_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_networking_v1_Ingress_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_networking_v1_Ingress_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_networking_v1_Ingress_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_networking_v1_Ingress_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_networking_v1_Ingress_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_networking_v1_Ingress_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_networking_v1_Ingress_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_networking_v1_Ingress_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_networking_v1_Ingress_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_networking_v1_Ingress_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_networking_v1_Ingress_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_networking_v1_Ingress_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_networking_v1_Ingress_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_networking_v1_Ingress_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_networking_v1_Ingress_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_networking_v1_Ingress_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_networking_v1_Ingress_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_networking_v1_Ingress_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_networking_v1_Ingress_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_networking_v1_Ingress_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_networking_v1_Ingress_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_networking_v1_Ingress_spec {doc 'spec is the desired state of the Ingress More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							io_k8s_api_networking_v1_Ingress_spec_defaultBackend {doc 'defaultBackend is the backend that should handle requests that don_t match any rule If Rules are not specified, DefaultBackend must be specified If DefaultBackend is not set, the handling of requests that do not match any of the rules will be up to the Ingress controller'}
								optional
									io_k8s_api_networking_v1_Ingress_spec_defaultBackend_resource {doc 'resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object If resource is specified, a serviceName and servicePort must not be specified This is a mutually exclusive setting with Service'}
										mandatory
											String io_k8s_api_networking_v1_Ingress_spec_defaultBackend_resource_kind {doc 'Kind is the type of resource being referenced'}
											String io_k8s_api_networking_v1_Ingress_spec_defaultBackend_resource_name {doc 'Name is the name of resource being referenced'}
										optional
											String io_k8s_api_networking_v1_Ingress_spec_defaultBackend_resource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
									io_k8s_api_networking_v1_Ingress_spec_defaultBackend_service {doc 'service references a service as a backend This is a mutually exclusive setting with Resource'}
										mandatory
											String io_k8s_api_networking_v1_Ingress_spec_defaultBackend_service_name {doc 'name is the referenced service The service must exist in the same namespace as the Ingress object'}
										optional
											io_k8s_api_networking_v1_Ingress_spec_defaultBackend_service_port {doc 'port of the referenced service A port name or port number is required for a IngressServiceBackend'}
												optional
													String io_k8s_api_networking_v1_Ingress_spec_defaultBackend_service_port_name {doc 'name is the name of the port on the Service This is a mutually exclusive setting with Number'}
													Integer io_k8s_api_networking_v1_Ingress_spec_defaultBackend_service_port_number {doc 'number is the numerical port number (eg 80) on the Service This is a mutually exclusive setting with Name'}
							String io_k8s_api_networking_v1_Ingress_spec_ingressClassName {doc 'ingressClassName is the name of an IngressClass cluster resource Ingress controller implementations use this field to know whether they should be serving this Ingress resource, by a transitive connection (controller -> IngressClass -> Ingress resource) Although the kubernetesio/ingressclass annotation (simple constant name) was never formally defined, it was widely supported by Ingress controllers to create a direct binding between Ingress controller and Ingress resources Newly created Ingress resources should prefer using the field However, even though the annotation is officially deprecated, for backwards compatibility reasons, ingress controllers should still honor that annotation if present'}
							io_k8s_api_networking_v1_Ingress_spec_rules cardinality [1..*] {doc 'rules is a list of host rules used to configure the Ingress If unspecified, or no rule matches, all traffic is sent to the default backend'}
								optional
									String io_k8s_api_networking_v1_Ingress_spec_rules_host {doc 'host is the fully qualified domain name of a network host, as defined by RFC 3986 Note the following deviations from the host part of the URI as defined in RFC 3986: 1 IPs are not allowed Currently an IngressRuleValue can only apply to   the IP in the Spec of the parent Ingress2 The : delimiter is not respected because ports are not allowed	  Currently the port of an Ingress is implicitly :80 for http and	  :443 for httpsBoth these may change in the future Incoming requests are matched against the host before the IngressRuleValue If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValuehost can be precise which is a domain name without the terminating dot of a network host (eg foobarcom) or wildcard, which is a domain name prefixed with a single wildcard label (eg *foocom) The wildcard character _*_ must appear by itself as the first DNS label and matches only a single label You cannot have a wildcard label by itself (eg Host == *) Requests will be matched against the Host field in the following way: 1 If host is precise, the request matches this rule if the http host header is equal to Host 2 If host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule'}
									io_k8s_api_networking_v1_Ingress_spec_rules_http
										mandatory
											io_k8s_api_networking_v1_Ingress_spec_rules_http_paths cardinality [1..*] {doc 'paths is a collection of paths that map requests to backends'}
												mandatory
													io_k8s_api_networking_v1_Ingress_spec_rules_http_paths_backend {doc 'backend defines the referenced service endpoint to which the traffic will be forwarded to'}
														optional
															io_k8s_api_networking_v1_Ingress_spec_rules_http_paths_backend_resource {doc 'resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object If resource is specified, a serviceName and servicePort must not be specified This is a mutually exclusive setting with Service'}
																mandatory
																	String io_k8s_api_networking_v1_Ingress_spec_rules_http_paths_backend_resource_kind {doc 'Kind is the type of resource being referenced'}
																	String io_k8s_api_networking_v1_Ingress_spec_rules_http_paths_backend_resource_name {doc 'Name is the name of resource being referenced'}
																optional
																	String io_k8s_api_networking_v1_Ingress_spec_rules_http_paths_backend_resource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
															io_k8s_api_networking_v1_Ingress_spec_rules_http_paths_backend_service {doc 'service references a service as a backend This is a mutually exclusive setting with Resource'}
																mandatory
																	String io_k8s_api_networking_v1_Ingress_spec_rules_http_paths_backend_service_name {doc 'name is the referenced service The service must exist in the same namespace as the Ingress object'}
																optional
																	io_k8s_api_networking_v1_Ingress_spec_rules_http_paths_backend_service_port {doc 'port of the referenced service A port name or port number is required for a IngressServiceBackend'}
																		optional
																			String io_k8s_api_networking_v1_Ingress_spec_rules_http_paths_backend_service_port_name {doc 'name is the name of the port on the Service This is a mutually exclusive setting with Number'}
																			Integer io_k8s_api_networking_v1_Ingress_spec_rules_http_paths_backend_service_port_number {doc 'number is the numerical port number (eg 80) on the Service This is a mutually exclusive setting with Name'}
													String io_k8s_api_networking_v1_Ingress_spec_rules_http_paths_pathType {doc 'pathType determines the interpretation of the path matching PathType can be one of the following values: * Exact: Matches the URL path exactly * Prefix: Matches based on a URL path prefix split by _/_ Matching is  done on a path element by element basis A path element refers is the  list of labels in the path split by the _/_ separator A request is a  match for path p if every p is an element-wise prefix of p of the  request path Note that if the last element of the path is a substring  of the last element in request path, it is not a match (eg /foo/bar  matches /foo/bar/baz, but does not match /foo/barbaz)* ImplementationSpecific: Interpretation of the Path matching is up to  the IngressClass Implementations can treat this as a separate PathType  or treat it identically to Prefix or Exact path typesImplementations are required to support all path types'}
												optional
													String io_k8s_api_networking_v1_Ingress_spec_rules_http_paths_path {doc 'path is matched against the path of an incoming request Currently it can contain characters disallowed from the conventional path part of a URL as defined by RFC 3986 Paths must begin with a _/_ and must be present when using PathType with value Exact or Prefix'}
							io_k8s_api_networking_v1_Ingress_spec_tls cardinality [1..*] {doc 'tls represents the TLS configuration Currently the Ingress only supports a single TLS port, 443 If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI'}
								optional
									io_k8s_api_networking_v1_Ingress_spec_tls_hosts cardinality [1..*] {doc 'hosts is a list of hosts included in the TLS certificate The values in this list must match the name/s used in the tlsSecret Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified'}
										mandatory
											String io_k8s_api_networking_v1_Ingress_spec_tls_hosts_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_networking_v1_Ingress_spec_tls_secretName {doc 'secretName is the name of the secret used to terminate TLS traffic on port 443 Field is left optional to allow TLS routing based on SNI hostname alone If the SNI host in a listener conflicts with the Host header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing'}
					io_k8s_api_networking_v1_Ingress_status {doc 'status is the current state of the Ingress More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							io_k8s_api_networking_v1_Ingress_status_loadBalancer {doc 'loadBalancer contains the current status of the load-balancer'}
								optional
									io_k8s_api_networking_v1_Ingress_status_loadBalancer_ingress cardinality [1..*] {doc 'ingress is a list containing ingress points for the load-balancer'}
										optional
											String io_k8s_api_networking_v1_Ingress_status_loadBalancer_ingress_hostname {doc 'hostname is set for load-balancer ingress points that are DNS based'}
											String io_k8s_api_networking_v1_Ingress_status_loadBalancer_ingress_ip {doc 'ip is set for load-balancer ingress points that are IP based'}
											io_k8s_api_networking_v1_Ingress_status_loadBalancer_ingress_ports cardinality [1..*] {doc 'ports provides information about the ports exposed by this LoadBalancer'}
												mandatory
													Integer io_k8s_api_networking_v1_Ingress_status_loadBalancer_ingress_ports_port {doc 'port is the port number of the ingress port'}
													io_k8s_api_networking_v1_Ingress_status_loadBalancer_ingress_ports_protocol {doc 'protocol is the protocol of the ingress port The supported values are: TCP, UDP, SCTP'}
														alternative
															io_k8s_api_networking_v1_Ingress_status_loadBalancer_ingress_ports_protocol_SCTP {doc 'Specific value: SCTP'}
															io_k8s_api_networking_v1_Ingress_status_loadBalancer_ingress_ports_protocol_TCP {doc 'Specific value: TCP'}
															io_k8s_api_networking_v1_Ingress_status_loadBalancer_ingress_ports_protocol_UDP {doc 'Specific value: UDP'}
												optional
													String io_k8s_api_networking_v1_Ingress_status_loadBalancer_ingress_ports_error {doc 'error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use  CamelCase names- cloud provider specific error values must have names that comply with the  format fooexamplecom/CamelCase'}
			io_k8s_api_networking_v1_IngressBackend {doc 'IngressBackend describes all endpoints for a given service and port'}
				optional
					io_k8s_api_networking_v1_IngressBackend_resource {doc 'resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object If resource is specified, a serviceName and servicePort must not be specified This is a mutually exclusive setting with Service'}
						mandatory
							String io_k8s_api_networking_v1_IngressBackend_resource_kind {doc 'Kind is the type of resource being referenced'}
							String io_k8s_api_networking_v1_IngressBackend_resource_name {doc 'Name is the name of resource being referenced'}
						optional
							String io_k8s_api_networking_v1_IngressBackend_resource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
					io_k8s_api_networking_v1_IngressBackend_service {doc 'service references a service as a backend This is a mutually exclusive setting with Resource'}
						mandatory
							String io_k8s_api_networking_v1_IngressBackend_service_name {doc 'name is the referenced service The service must exist in the same namespace as the Ingress object'}
						optional
							io_k8s_api_networking_v1_IngressBackend_service_port {doc 'port of the referenced service A port name or port number is required for a IngressServiceBackend'}
								optional
									String io_k8s_api_networking_v1_IngressBackend_service_port_name {doc 'name is the name of the port on the Service This is a mutually exclusive setting with Number'}
									Integer io_k8s_api_networking_v1_IngressBackend_service_port_number {doc 'number is the numerical port number (eg 80) on the Service This is a mutually exclusive setting with Name'}
			io_k8s_api_networking_v1_IngressClass {doc 'IngressClass represents the class of the Ingress, referenced by the Ingress Spec The ingressclasskubernetesio/is-default-class annotation can be used to indicate that an IngressClass should be considered default When a single IngressClass resource has this annotation set to true, new Ingress resources without a class specified will be assigned this default class'}
				optional
					String io_k8s_api_networking_v1_IngressClass_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_networking_v1_IngressClass_kind {default 'IngressClass', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_networking_v1_IngressClass_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_networking_v1_IngressClass_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_networking_v1_IngressClass_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_networking_v1_IngressClass_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_networking_v1_IngressClass_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_networking_v1_IngressClass_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_networking_v1_IngressClass_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_networking_v1_IngressClass_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_networking_v1_IngressClass_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_networking_v1_IngressClass_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_networking_v1_IngressClass_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_networking_v1_IngressClass_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_networking_v1_IngressClass_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_networking_v1_IngressClass_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_networking_v1_IngressClass_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_networking_v1_IngressClass_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_networking_v1_IngressClass_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_networking_v1_IngressClass_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_networking_v1_IngressClass_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_networking_v1_IngressClass_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_networking_v1_IngressClass_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_networking_v1_IngressClass_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_networking_v1_IngressClass_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_networking_v1_IngressClass_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_networking_v1_IngressClass_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_networking_v1_IngressClass_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_networking_v1_IngressClass_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_networking_v1_IngressClass_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_networking_v1_IngressClass_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_networking_v1_IngressClass_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_networking_v1_IngressClass_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_networking_v1_IngressClass_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_networking_v1_IngressClass_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_networking_v1_IngressClass_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_networking_v1_IngressClass_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_networking_v1_IngressClass_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_networking_v1_IngressClass_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_networking_v1_IngressClass_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_networking_v1_IngressClass_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_networking_v1_IngressClass_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_networking_v1_IngressClass_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_networking_v1_IngressClass_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_networking_v1_IngressClass_spec {doc 'spec is the desired state of the IngressClass More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							String io_k8s_api_networking_v1_IngressClass_spec_controller {doc 'controller refers to the name of the controller that should handle this class This allows for different flavors that are controlled by the same controller For example, you may have different parameters for the same implementing controller This should be specified as a domain-prefixed path no more than 250 characters in length, eg acmeio/ingress-controller This field is immutable'}
							io_k8s_api_networking_v1_IngressClass_spec_parameters {doc 'parameters is a link to a custom resource containing additional configuration for the controller This is optional if the controller does not require extra parameters'}
								mandatory
									String io_k8s_api_networking_v1_IngressClass_spec_parameters_kind {doc 'kind is the type of resource being referenced'}
									String io_k8s_api_networking_v1_IngressClass_spec_parameters_name {doc 'name is the name of resource being referenced'}
								optional
									String io_k8s_api_networking_v1_IngressClass_spec_parameters_apiGroup {doc 'apiGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
									io_k8s_api_networking_v1_IngressClass_spec_parameters_namespace {abstract, doc 'namespace is the namespace of the resource being referenced This field is required when scope is set to Namespace and must be unset when scope is set to Cluster'}
										mandatory
											io_k8s_api_networking_v1_IngressClass_spec_parameters_namespace_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_networking_v1_IngressClass_spec_parameters_scope {doc 'scope represents if this refers to a cluster or namespace scoped resource This may be set to Cluster (default) or Namespace'}
										alternative
											io_k8s_api_networking_v1_IngressClass_spec_parameters_scope_Cluster {doc 'Specific value: Cluster'}
											io_k8s_api_networking_v1_IngressClass_spec_parameters_scope_Namespace {doc 'Specific value: Namespace'}
			io_k8s_api_networking_v1_IngressClassList {doc 'IngressClassList is a collection of IngressClasses'}
				mandatory
					io_k8s_api_networking_v1_IngressClassList_items cardinality [1..*] {doc 'items is the list of IngressClasses'}
						optional
							String io_k8s_api_networking_v1_IngressClassList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_networking_v1_IngressClassList_items_kind {default 'IngressClass', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_networking_v1_IngressClassList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_networking_v1_IngressClassList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_networking_v1_IngressClassList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_networking_v1_IngressClassList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_networking_v1_IngressClassList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_networking_v1_IngressClassList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_networking_v1_IngressClassList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_networking_v1_IngressClassList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_networking_v1_IngressClassList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_networking_v1_IngressClassList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_networking_v1_IngressClassList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_networking_v1_IngressClassList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_networking_v1_IngressClassList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_networking_v1_IngressClassList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_networking_v1_IngressClassList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_networking_v1_IngressClassList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_networking_v1_IngressClassList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_networking_v1_IngressClassList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_networking_v1_IngressClassList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_networking_v1_IngressClassList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_networking_v1_IngressClassList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_networking_v1_IngressClassList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_networking_v1_IngressClassList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_networking_v1_IngressClassList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_networking_v1_IngressClassList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_networking_v1_IngressClassList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_networking_v1_IngressClassList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_networking_v1_IngressClassList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_networking_v1_IngressClassList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_networking_v1_IngressClassList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_networking_v1_IngressClassList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_networking_v1_IngressClassList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_networking_v1_IngressClassList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_networking_v1_IngressClassList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_networking_v1_IngressClassList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_networking_v1_IngressClassList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_networking_v1_IngressClassList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_networking_v1_IngressClassList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_networking_v1_IngressClassList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_networking_v1_IngressClassList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_networking_v1_IngressClassList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_networking_v1_IngressClassList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_networking_v1_IngressClassList_items_spec {doc 'spec is the desired state of the IngressClass More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								optional
									String io_k8s_api_networking_v1_IngressClassList_items_spec_controller {doc 'controller refers to the name of the controller that should handle this class This allows for different flavors that are controlled by the same controller For example, you may have different parameters for the same implementing controller This should be specified as a domain-prefixed path no more than 250 characters in length, eg acmeio/ingress-controller This field is immutable'}
									io_k8s_api_networking_v1_IngressClassList_items_spec_parameters {doc 'parameters is a link to a custom resource containing additional configuration for the controller This is optional if the controller does not require extra parameters'}
										mandatory
											String io_k8s_api_networking_v1_IngressClassList_items_spec_parameters_kind {doc 'kind is the type of resource being referenced'}
											String io_k8s_api_networking_v1_IngressClassList_items_spec_parameters_name {doc 'name is the name of resource being referenced'}
										optional
											String io_k8s_api_networking_v1_IngressClassList_items_spec_parameters_apiGroup {doc 'apiGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
											io_k8s_api_networking_v1_IngressClassList_items_spec_parameters_namespace {abstract, doc 'namespace is the namespace of the resource being referenced This field is required when scope is set to Namespace and must be unset when scope is set to Cluster'}
												mandatory
													io_k8s_api_networking_v1_IngressClassList_items_spec_parameters_namespace_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_networking_v1_IngressClassList_items_spec_parameters_scope {doc 'scope represents if this refers to a cluster or namespace scoped resource This may be set to Cluster (default) or Namespace'}
												alternative
													io_k8s_api_networking_v1_IngressClassList_items_spec_parameters_scope_Cluster {doc 'Specific value: Cluster'}
													io_k8s_api_networking_v1_IngressClassList_items_spec_parameters_scope_Namespace {doc 'Specific value: Namespace'}
				optional
					String io_k8s_api_networking_v1_IngressClassList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_networking_v1_IngressClassList_kind {default 'IngressClassList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_networking_v1_IngressClassList_metadata {doc 'Standard list metadata'}
						optional
							String io_k8s_api_networking_v1_IngressClassList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_networking_v1_IngressClassList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_networking_v1_IngressClassList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_networking_v1_IngressClassList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_networking_v1_IngressClassParametersReference {doc 'IngressClassParametersReference identifies an API object This can be used to specify a cluster or namespace-scoped resource'}
				mandatory
					String io_k8s_api_networking_v1_IngressClassParametersReference_kind {doc 'kind is the type of resource being referenced'}
					String io_k8s_api_networking_v1_IngressClassParametersReference_name {doc 'name is the name of resource being referenced'}
				optional
					String io_k8s_api_networking_v1_IngressClassParametersReference_apiGroup {doc 'apiGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
					io_k8s_api_networking_v1_IngressClassParametersReference_namespace {abstract, doc 'namespace is the namespace of the resource being referenced This field is required when scope is set to Namespace and must be unset when scope is set to Cluster'}
						mandatory
							io_k8s_api_networking_v1_IngressClassParametersReference_namespace_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
					io_k8s_api_networking_v1_IngressClassParametersReference_scope {doc 'scope represents if this refers to a cluster or namespace scoped resource This may be set to Cluster (default) or Namespace'}
						alternative
							io_k8s_api_networking_v1_IngressClassParametersReference_scope_Cluster {doc 'Specific value: Cluster'}
							io_k8s_api_networking_v1_IngressClassParametersReference_scope_Namespace {doc 'Specific value: Namespace'}
			io_k8s_api_networking_v1_IngressClassSpec {doc 'IngressClassSpec provides information about the class of an Ingress'}
				optional
					String io_k8s_api_networking_v1_IngressClassSpec_controller {doc 'controller refers to the name of the controller that should handle this class This allows for different flavors that are controlled by the same controller For example, you may have different parameters for the same implementing controller This should be specified as a domain-prefixed path no more than 250 characters in length, eg acmeio/ingress-controller This field is immutable'}
					io_k8s_api_networking_v1_IngressClassSpec_parameters {doc 'parameters is a link to a custom resource containing additional configuration for the controller This is optional if the controller does not require extra parameters'}
						mandatory
							String io_k8s_api_networking_v1_IngressClassSpec_parameters_kind {doc 'kind is the type of resource being referenced'}
							String io_k8s_api_networking_v1_IngressClassSpec_parameters_name {doc 'name is the name of resource being referenced'}
						optional
							String io_k8s_api_networking_v1_IngressClassSpec_parameters_apiGroup {doc 'apiGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
							io_k8s_api_networking_v1_IngressClassSpec_parameters_namespace {abstract, doc 'namespace is the namespace of the resource being referenced This field is required when scope is set to Namespace and must be unset when scope is set to Cluster'}
								mandatory
									io_k8s_api_networking_v1_IngressClassSpec_parameters_namespace_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							io_k8s_api_networking_v1_IngressClassSpec_parameters_scope {doc 'scope represents if this refers to a cluster or namespace scoped resource This may be set to Cluster (default) or Namespace'}
								alternative
									io_k8s_api_networking_v1_IngressClassSpec_parameters_scope_Cluster {doc 'Specific value: Cluster'}
									io_k8s_api_networking_v1_IngressClassSpec_parameters_scope_Namespace {doc 'Specific value: Namespace'}
			io_k8s_api_networking_v1_IngressList {doc 'IngressList is a collection of Ingress'}
				mandatory
					io_k8s_api_networking_v1_IngressList_items cardinality [1..*] {doc 'items is the list of Ingress'}
						optional
							String io_k8s_api_networking_v1_IngressList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_networking_v1_IngressList_items_kind {default 'Ingress', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_networking_v1_IngressList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_networking_v1_IngressList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_networking_v1_IngressList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_networking_v1_IngressList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_networking_v1_IngressList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_networking_v1_IngressList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_networking_v1_IngressList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_networking_v1_IngressList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_networking_v1_IngressList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_networking_v1_IngressList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_networking_v1_IngressList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_networking_v1_IngressList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_networking_v1_IngressList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_networking_v1_IngressList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_networking_v1_IngressList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_networking_v1_IngressList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_networking_v1_IngressList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_networking_v1_IngressList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_networking_v1_IngressList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_networking_v1_IngressList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_networking_v1_IngressList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_networking_v1_IngressList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_networking_v1_IngressList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_networking_v1_IngressList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_networking_v1_IngressList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_networking_v1_IngressList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_networking_v1_IngressList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_networking_v1_IngressList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_networking_v1_IngressList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_networking_v1_IngressList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_networking_v1_IngressList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_networking_v1_IngressList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_networking_v1_IngressList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_networking_v1_IngressList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_networking_v1_IngressList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_networking_v1_IngressList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_networking_v1_IngressList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_networking_v1_IngressList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_networking_v1_IngressList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_networking_v1_IngressList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_networking_v1_IngressList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_networking_v1_IngressList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_networking_v1_IngressList_items_spec {doc 'spec is the desired state of the Ingress More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								optional
									io_k8s_api_networking_v1_IngressList_items_spec_defaultBackend {doc 'defaultBackend is the backend that should handle requests that don_t match any rule If Rules are not specified, DefaultBackend must be specified If DefaultBackend is not set, the handling of requests that do not match any of the rules will be up to the Ingress controller'}
										optional
											io_k8s_api_networking_v1_IngressList_items_spec_defaultBackend_resource {doc 'resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object If resource is specified, a serviceName and servicePort must not be specified This is a mutually exclusive setting with Service'}
												mandatory
													String io_k8s_api_networking_v1_IngressList_items_spec_defaultBackend_resource_kind {doc 'Kind is the type of resource being referenced'}
													String io_k8s_api_networking_v1_IngressList_items_spec_defaultBackend_resource_name {doc 'Name is the name of resource being referenced'}
												optional
													String io_k8s_api_networking_v1_IngressList_items_spec_defaultBackend_resource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
											io_k8s_api_networking_v1_IngressList_items_spec_defaultBackend_service {doc 'service references a service as a backend This is a mutually exclusive setting with Resource'}
												mandatory
													String io_k8s_api_networking_v1_IngressList_items_spec_defaultBackend_service_name {doc 'name is the referenced service The service must exist in the same namespace as the Ingress object'}
												optional
													io_k8s_api_networking_v1_IngressList_items_spec_defaultBackend_service_port {doc 'port of the referenced service A port name or port number is required for a IngressServiceBackend'}
														optional
															String io_k8s_api_networking_v1_IngressList_items_spec_defaultBackend_service_port_name {doc 'name is the name of the port on the Service This is a mutually exclusive setting with Number'}
															Integer io_k8s_api_networking_v1_IngressList_items_spec_defaultBackend_service_port_number {doc 'number is the numerical port number (eg 80) on the Service This is a mutually exclusive setting with Name'}
									String io_k8s_api_networking_v1_IngressList_items_spec_ingressClassName {doc 'ingressClassName is the name of an IngressClass cluster resource Ingress controller implementations use this field to know whether they should be serving this Ingress resource, by a transitive connection (controller -> IngressClass -> Ingress resource) Although the kubernetesio/ingressclass annotation (simple constant name) was never formally defined, it was widely supported by Ingress controllers to create a direct binding between Ingress controller and Ingress resources Newly created Ingress resources should prefer using the field However, even though the annotation is officially deprecated, for backwards compatibility reasons, ingress controllers should still honor that annotation if present'}
									io_k8s_api_networking_v1_IngressList_items_spec_rules cardinality [1..*] {doc 'rules is a list of host rules used to configure the Ingress If unspecified, or no rule matches, all traffic is sent to the default backend'}
										optional
											String io_k8s_api_networking_v1_IngressList_items_spec_rules_host {doc 'host is the fully qualified domain name of a network host, as defined by RFC 3986 Note the following deviations from the host part of the URI as defined in RFC 3986: 1 IPs are not allowed Currently an IngressRuleValue can only apply to   the IP in the Spec of the parent Ingress2 The : delimiter is not respected because ports are not allowed	  Currently the port of an Ingress is implicitly :80 for http and	  :443 for httpsBoth these may change in the future Incoming requests are matched against the host before the IngressRuleValue If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValuehost can be precise which is a domain name without the terminating dot of a network host (eg foobarcom) or wildcard, which is a domain name prefixed with a single wildcard label (eg *foocom) The wildcard character _*_ must appear by itself as the first DNS label and matches only a single label You cannot have a wildcard label by itself (eg Host == *) Requests will be matched against the Host field in the following way: 1 If host is precise, the request matches this rule if the http host header is equal to Host 2 If host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule'}
											io_k8s_api_networking_v1_IngressList_items_spec_rules_http
												mandatory
													io_k8s_api_networking_v1_IngressList_items_spec_rules_http_paths cardinality [1..*] {doc 'paths is a collection of paths that map requests to backends'}
														mandatory
															io_k8s_api_networking_v1_IngressList_items_spec_rules_http_paths_backend {doc 'backend defines the referenced service endpoint to which the traffic will be forwarded to'}
																optional
																	io_k8s_api_networking_v1_IngressList_items_spec_rules_http_paths_backend_resource {doc 'resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object If resource is specified, a serviceName and servicePort must not be specified This is a mutually exclusive setting with Service'}
																		mandatory
																			String io_k8s_api_networking_v1_IngressList_items_spec_rules_http_paths_backend_resource_kind {doc 'Kind is the type of resource being referenced'}
																			String io_k8s_api_networking_v1_IngressList_items_spec_rules_http_paths_backend_resource_name {doc 'Name is the name of resource being referenced'}
																		optional
																			String io_k8s_api_networking_v1_IngressList_items_spec_rules_http_paths_backend_resource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
																	io_k8s_api_networking_v1_IngressList_items_spec_rules_http_paths_backend_service {doc 'service references a service as a backend This is a mutually exclusive setting with Resource'}
																		mandatory
																			String io_k8s_api_networking_v1_IngressList_items_spec_rules_http_paths_backend_service_name {doc 'name is the referenced service The service must exist in the same namespace as the Ingress object'}
																		optional
																			io_k8s_api_networking_v1_IngressList_items_spec_rules_http_paths_backend_service_port {doc 'port of the referenced service A port name or port number is required for a IngressServiceBackend'}
																				optional
																					String io_k8s_api_networking_v1_IngressList_items_spec_rules_http_paths_backend_service_port_name {doc 'name is the name of the port on the Service This is a mutually exclusive setting with Number'}
																					Integer io_k8s_api_networking_v1_IngressList_items_spec_rules_http_paths_backend_service_port_number {doc 'number is the numerical port number (eg 80) on the Service This is a mutually exclusive setting with Name'}
															String io_k8s_api_networking_v1_IngressList_items_spec_rules_http_paths_pathType {doc 'pathType determines the interpretation of the path matching PathType can be one of the following values: * Exact: Matches the URL path exactly * Prefix: Matches based on a URL path prefix split by _/_ Matching is  done on a path element by element basis A path element refers is the  list of labels in the path split by the _/_ separator A request is a  match for path p if every p is an element-wise prefix of p of the  request path Note that if the last element of the path is a substring  of the last element in request path, it is not a match (eg /foo/bar  matches /foo/bar/baz, but does not match /foo/barbaz)* ImplementationSpecific: Interpretation of the Path matching is up to  the IngressClass Implementations can treat this as a separate PathType  or treat it identically to Prefix or Exact path typesImplementations are required to support all path types'}
														optional
															String io_k8s_api_networking_v1_IngressList_items_spec_rules_http_paths_path {doc 'path is matched against the path of an incoming request Currently it can contain characters disallowed from the conventional path part of a URL as defined by RFC 3986 Paths must begin with a _/_ and must be present when using PathType with value Exact or Prefix'}
									io_k8s_api_networking_v1_IngressList_items_spec_tls cardinality [1..*] {doc 'tls represents the TLS configuration Currently the Ingress only supports a single TLS port, 443 If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI'}
										optional
											io_k8s_api_networking_v1_IngressList_items_spec_tls_hosts cardinality [1..*] {doc 'hosts is a list of hosts included in the TLS certificate The values in this list must match the name/s used in the tlsSecret Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified'}
												mandatory
													String io_k8s_api_networking_v1_IngressList_items_spec_tls_hosts_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											String io_k8s_api_networking_v1_IngressList_items_spec_tls_secretName {doc 'secretName is the name of the secret used to terminate TLS traffic on port 443 Field is left optional to allow TLS routing based on SNI hostname alone If the SNI host in a listener conflicts with the Host header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing'}
							io_k8s_api_networking_v1_IngressList_items_status {doc 'status is the current state of the Ingress More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								optional
									io_k8s_api_networking_v1_IngressList_items_status_loadBalancer {doc 'loadBalancer contains the current status of the load-balancer'}
										optional
											io_k8s_api_networking_v1_IngressList_items_status_loadBalancer_ingress cardinality [1..*] {doc 'ingress is a list containing ingress points for the load-balancer'}
												optional
													String io_k8s_api_networking_v1_IngressList_items_status_loadBalancer_ingress_hostname {doc 'hostname is set for load-balancer ingress points that are DNS based'}
													String io_k8s_api_networking_v1_IngressList_items_status_loadBalancer_ingress_ip {doc 'ip is set for load-balancer ingress points that are IP based'}
													io_k8s_api_networking_v1_IngressList_items_status_loadBalancer_ingress_ports cardinality [1..*] {doc 'ports provides information about the ports exposed by this LoadBalancer'}
														mandatory
															Integer io_k8s_api_networking_v1_IngressList_items_status_loadBalancer_ingress_ports_port {doc 'port is the port number of the ingress port'}
															io_k8s_api_networking_v1_IngressList_items_status_loadBalancer_ingress_ports_protocol {doc 'protocol is the protocol of the ingress port The supported values are: TCP, UDP, SCTP'}
																alternative
																	io_k8s_api_networking_v1_IngressList_items_status_loadBalancer_ingress_ports_protocol_SCTP {doc 'Specific value: SCTP'}
																	io_k8s_api_networking_v1_IngressList_items_status_loadBalancer_ingress_ports_protocol_TCP {doc 'Specific value: TCP'}
																	io_k8s_api_networking_v1_IngressList_items_status_loadBalancer_ingress_ports_protocol_UDP {doc 'Specific value: UDP'}
														optional
															String io_k8s_api_networking_v1_IngressList_items_status_loadBalancer_ingress_ports_error {doc 'error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use  CamelCase names- cloud provider specific error values must have names that comply with the  format fooexamplecom/CamelCase'}
				optional
					String io_k8s_api_networking_v1_IngressList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_networking_v1_IngressList_kind {default 'IngressList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_networking_v1_IngressList_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_networking_v1_IngressList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_networking_v1_IngressList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_networking_v1_IngressList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_networking_v1_IngressList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_networking_v1_IngressLoadBalancerIngress {doc 'IngressLoadBalancerIngress represents the status of a load-balancer ingress point'}
				optional
					String io_k8s_api_networking_v1_IngressLoadBalancerIngress_hostname {doc 'hostname is set for load-balancer ingress points that are DNS based'}
					String io_k8s_api_networking_v1_IngressLoadBalancerIngress_ip {doc 'ip is set for load-balancer ingress points that are IP based'}
					io_k8s_api_networking_v1_IngressLoadBalancerIngress_ports cardinality [1..*] {doc 'ports provides information about the ports exposed by this LoadBalancer'}
						mandatory
							Integer io_k8s_api_networking_v1_IngressLoadBalancerIngress_ports_port {doc 'port is the port number of the ingress port'}
							io_k8s_api_networking_v1_IngressLoadBalancerIngress_ports_protocol {doc 'protocol is the protocol of the ingress port The supported values are: TCP, UDP, SCTP'}
								alternative
									io_k8s_api_networking_v1_IngressLoadBalancerIngress_ports_protocol_SCTP {doc 'Specific value: SCTP'}
									io_k8s_api_networking_v1_IngressLoadBalancerIngress_ports_protocol_TCP {doc 'Specific value: TCP'}
									io_k8s_api_networking_v1_IngressLoadBalancerIngress_ports_protocol_UDP {doc 'Specific value: UDP'}
						optional
							String io_k8s_api_networking_v1_IngressLoadBalancerIngress_ports_error {doc 'error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use  CamelCase names- cloud provider specific error values must have names that comply with the  format fooexamplecom/CamelCase'}
			io_k8s_api_networking_v1_IngressLoadBalancerStatus {doc 'IngressLoadBalancerStatus represents the status of a load-balancer'}
				optional
					io_k8s_api_networking_v1_IngressLoadBalancerStatus_ingress cardinality [1..*] {doc 'ingress is a list containing ingress points for the load-balancer'}
						optional
							String io_k8s_api_networking_v1_IngressLoadBalancerStatus_ingress_hostname {doc 'hostname is set for load-balancer ingress points that are DNS based'}
							String io_k8s_api_networking_v1_IngressLoadBalancerStatus_ingress_ip {doc 'ip is set for load-balancer ingress points that are IP based'}
							io_k8s_api_networking_v1_IngressLoadBalancerStatus_ingress_ports cardinality [1..*] {doc 'ports provides information about the ports exposed by this LoadBalancer'}
								mandatory
									Integer io_k8s_api_networking_v1_IngressLoadBalancerStatus_ingress_ports_port {doc 'port is the port number of the ingress port'}
									io_k8s_api_networking_v1_IngressLoadBalancerStatus_ingress_ports_protocol {doc 'protocol is the protocol of the ingress port The supported values are: TCP, UDP, SCTP'}
										alternative
											io_k8s_api_networking_v1_IngressLoadBalancerStatus_ingress_ports_protocol_SCTP {doc 'Specific value: SCTP'}
											io_k8s_api_networking_v1_IngressLoadBalancerStatus_ingress_ports_protocol_TCP {doc 'Specific value: TCP'}
											io_k8s_api_networking_v1_IngressLoadBalancerStatus_ingress_ports_protocol_UDP {doc 'Specific value: UDP'}
								optional
									String io_k8s_api_networking_v1_IngressLoadBalancerStatus_ingress_ports_error {doc 'error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use  CamelCase names- cloud provider specific error values must have names that comply with the  format fooexamplecom/CamelCase'}
			io_k8s_api_networking_v1_IngressPortStatus {doc 'IngressPortStatus represents the error condition of a service port'}
				mandatory
					Integer io_k8s_api_networking_v1_IngressPortStatus_port {doc 'port is the port number of the ingress port'}
					io_k8s_api_networking_v1_IngressPortStatus_protocol {doc 'protocol is the protocol of the ingress port The supported values are: TCP, UDP, SCTP'}
						alternative
							io_k8s_api_networking_v1_IngressPortStatus_protocol_SCTP {doc 'Specific value: SCTP'}
							io_k8s_api_networking_v1_IngressPortStatus_protocol_TCP {doc 'Specific value: TCP'}
							io_k8s_api_networking_v1_IngressPortStatus_protocol_UDP {doc 'Specific value: UDP'}
				optional
					String io_k8s_api_networking_v1_IngressPortStatus_error {doc 'error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use  CamelCase names- cloud provider specific error values must have names that comply with the  format fooexamplecom/CamelCase'}
			io_k8s_api_networking_v1_IngressRule {doc 'IngressRule represents the rules mapping the paths under a specified host to the related backend services Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue'}
				optional
					String io_k8s_api_networking_v1_IngressRule_host {doc 'host is the fully qualified domain name of a network host, as defined by RFC 3986 Note the following deviations from the host part of the URI as defined in RFC 3986: 1 IPs are not allowed Currently an IngressRuleValue can only apply to   the IP in the Spec of the parent Ingress2 The : delimiter is not respected because ports are not allowed	  Currently the port of an Ingress is implicitly :80 for http and	  :443 for httpsBoth these may change in the future Incoming requests are matched against the host before the IngressRuleValue If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValuehost can be precise which is a domain name without the terminating dot of a network host (eg foobarcom) or wildcard, which is a domain name prefixed with a single wildcard label (eg *foocom) The wildcard character _*_ must appear by itself as the first DNS label and matches only a single label You cannot have a wildcard label by itself (eg Host == *) Requests will be matched against the Host field in the following way: 1 If host is precise, the request matches this rule if the http host header is equal to Host 2 If host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule'}
					io_k8s_api_networking_v1_IngressRule_http
						mandatory
							io_k8s_api_networking_v1_IngressRule_http_paths cardinality [1..*] {doc 'paths is a collection of paths that map requests to backends'}
								mandatory
									io_k8s_api_networking_v1_IngressRule_http_paths_backend {doc 'backend defines the referenced service endpoint to which the traffic will be forwarded to'}
										optional
											io_k8s_api_networking_v1_IngressRule_http_paths_backend_resource {doc 'resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object If resource is specified, a serviceName and servicePort must not be specified This is a mutually exclusive setting with Service'}
												mandatory
													String io_k8s_api_networking_v1_IngressRule_http_paths_backend_resource_kind {doc 'Kind is the type of resource being referenced'}
													String io_k8s_api_networking_v1_IngressRule_http_paths_backend_resource_name {doc 'Name is the name of resource being referenced'}
												optional
													String io_k8s_api_networking_v1_IngressRule_http_paths_backend_resource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
											io_k8s_api_networking_v1_IngressRule_http_paths_backend_service {doc 'service references a service as a backend This is a mutually exclusive setting with Resource'}
												mandatory
													String io_k8s_api_networking_v1_IngressRule_http_paths_backend_service_name {doc 'name is the referenced service The service must exist in the same namespace as the Ingress object'}
												optional
													io_k8s_api_networking_v1_IngressRule_http_paths_backend_service_port {doc 'port of the referenced service A port name or port number is required for a IngressServiceBackend'}
														optional
															String io_k8s_api_networking_v1_IngressRule_http_paths_backend_service_port_name {doc 'name is the name of the port on the Service This is a mutually exclusive setting with Number'}
															Integer io_k8s_api_networking_v1_IngressRule_http_paths_backend_service_port_number {doc 'number is the numerical port number (eg 80) on the Service This is a mutually exclusive setting with Name'}
									String io_k8s_api_networking_v1_IngressRule_http_paths_pathType {doc 'pathType determines the interpretation of the path matching PathType can be one of the following values: * Exact: Matches the URL path exactly * Prefix: Matches based on a URL path prefix split by _/_ Matching is  done on a path element by element basis A path element refers is the  list of labels in the path split by the _/_ separator A request is a  match for path p if every p is an element-wise prefix of p of the  request path Note that if the last element of the path is a substring  of the last element in request path, it is not a match (eg /foo/bar  matches /foo/bar/baz, but does not match /foo/barbaz)* ImplementationSpecific: Interpretation of the Path matching is up to  the IngressClass Implementations can treat this as a separate PathType  or treat it identically to Prefix or Exact path typesImplementations are required to support all path types'}
								optional
									String io_k8s_api_networking_v1_IngressRule_http_paths_path {doc 'path is matched against the path of an incoming request Currently it can contain characters disallowed from the conventional path part of a URL as defined by RFC 3986 Paths must begin with a _/_ and must be present when using PathType with value Exact or Prefix'}
			io_k8s_api_networking_v1_IngressServiceBackend {doc 'IngressServiceBackend references a Kubernetes Service as a Backend'}
				mandatory
					String io_k8s_api_networking_v1_IngressServiceBackend_name {doc 'name is the referenced service The service must exist in the same namespace as the Ingress object'}
				optional
					io_k8s_api_networking_v1_IngressServiceBackend_port {doc 'port of the referenced service A port name or port number is required for a IngressServiceBackend'}
						optional
							String io_k8s_api_networking_v1_IngressServiceBackend_port_name {doc 'name is the name of the port on the Service This is a mutually exclusive setting with Number'}
							Integer io_k8s_api_networking_v1_IngressServiceBackend_port_number {doc 'number is the numerical port number (eg 80) on the Service This is a mutually exclusive setting with Name'}
			io_k8s_api_networking_v1_IngressSpec {doc 'IngressSpec describes the Ingress the user wishes to exist'}
				optional
					io_k8s_api_networking_v1_IngressSpec_defaultBackend {doc 'defaultBackend is the backend that should handle requests that don_t match any rule If Rules are not specified, DefaultBackend must be specified If DefaultBackend is not set, the handling of requests that do not match any of the rules will be up to the Ingress controller'}
						optional
							io_k8s_api_networking_v1_IngressSpec_defaultBackend_resource {doc 'resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object If resource is specified, a serviceName and servicePort must not be specified This is a mutually exclusive setting with Service'}
								mandatory
									String io_k8s_api_networking_v1_IngressSpec_defaultBackend_resource_kind {doc 'Kind is the type of resource being referenced'}
									String io_k8s_api_networking_v1_IngressSpec_defaultBackend_resource_name {doc 'Name is the name of resource being referenced'}
								optional
									String io_k8s_api_networking_v1_IngressSpec_defaultBackend_resource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
							io_k8s_api_networking_v1_IngressSpec_defaultBackend_service {doc 'service references a service as a backend This is a mutually exclusive setting with Resource'}
								mandatory
									String io_k8s_api_networking_v1_IngressSpec_defaultBackend_service_name {doc 'name is the referenced service The service must exist in the same namespace as the Ingress object'}
								optional
									io_k8s_api_networking_v1_IngressSpec_defaultBackend_service_port {doc 'port of the referenced service A port name or port number is required for a IngressServiceBackend'}
										optional
											String io_k8s_api_networking_v1_IngressSpec_defaultBackend_service_port_name {doc 'name is the name of the port on the Service This is a mutually exclusive setting with Number'}
											Integer io_k8s_api_networking_v1_IngressSpec_defaultBackend_service_port_number {doc 'number is the numerical port number (eg 80) on the Service This is a mutually exclusive setting with Name'}
					String io_k8s_api_networking_v1_IngressSpec_ingressClassName {doc 'ingressClassName is the name of an IngressClass cluster resource Ingress controller implementations use this field to know whether they should be serving this Ingress resource, by a transitive connection (controller -> IngressClass -> Ingress resource) Although the kubernetesio/ingressclass annotation (simple constant name) was never formally defined, it was widely supported by Ingress controllers to create a direct binding between Ingress controller and Ingress resources Newly created Ingress resources should prefer using the field However, even though the annotation is officially deprecated, for backwards compatibility reasons, ingress controllers should still honor that annotation if present'}
					io_k8s_api_networking_v1_IngressSpec_rules cardinality [1..*] {doc 'rules is a list of host rules used to configure the Ingress If unspecified, or no rule matches, all traffic is sent to the default backend'}
						optional
							String io_k8s_api_networking_v1_IngressSpec_rules_host {doc 'host is the fully qualified domain name of a network host, as defined by RFC 3986 Note the following deviations from the host part of the URI as defined in RFC 3986: 1 IPs are not allowed Currently an IngressRuleValue can only apply to   the IP in the Spec of the parent Ingress2 The : delimiter is not respected because ports are not allowed	  Currently the port of an Ingress is implicitly :80 for http and	  :443 for httpsBoth these may change in the future Incoming requests are matched against the host before the IngressRuleValue If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValuehost can be precise which is a domain name without the terminating dot of a network host (eg foobarcom) or wildcard, which is a domain name prefixed with a single wildcard label (eg *foocom) The wildcard character _*_ must appear by itself as the first DNS label and matches only a single label You cannot have a wildcard label by itself (eg Host == *) Requests will be matched against the Host field in the following way: 1 If host is precise, the request matches this rule if the http host header is equal to Host 2 If host is a wildcard, then the request matches this rule if the http host header is to equal to the suffix (removing the first label) of the wildcard rule'}
							io_k8s_api_networking_v1_IngressSpec_rules_http
								mandatory
									io_k8s_api_networking_v1_IngressSpec_rules_http_paths cardinality [1..*] {doc 'paths is a collection of paths that map requests to backends'}
										mandatory
											io_k8s_api_networking_v1_IngressSpec_rules_http_paths_backend {doc 'backend defines the referenced service endpoint to which the traffic will be forwarded to'}
												optional
													io_k8s_api_networking_v1_IngressSpec_rules_http_paths_backend_resource {doc 'resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object If resource is specified, a serviceName and servicePort must not be specified This is a mutually exclusive setting with Service'}
														mandatory
															String io_k8s_api_networking_v1_IngressSpec_rules_http_paths_backend_resource_kind {doc 'Kind is the type of resource being referenced'}
															String io_k8s_api_networking_v1_IngressSpec_rules_http_paths_backend_resource_name {doc 'Name is the name of resource being referenced'}
														optional
															String io_k8s_api_networking_v1_IngressSpec_rules_http_paths_backend_resource_apiGroup {doc 'APIGroup is the group for the resource being referenced If APIGroup is not specified, the specified Kind must be in the core API group For any other third-party types, APIGroup is required'}
													io_k8s_api_networking_v1_IngressSpec_rules_http_paths_backend_service {doc 'service references a service as a backend This is a mutually exclusive setting with Resource'}
														mandatory
															String io_k8s_api_networking_v1_IngressSpec_rules_http_paths_backend_service_name {doc 'name is the referenced service The service must exist in the same namespace as the Ingress object'}
														optional
															io_k8s_api_networking_v1_IngressSpec_rules_http_paths_backend_service_port {doc 'port of the referenced service A port name or port number is required for a IngressServiceBackend'}
																optional
																	String io_k8s_api_networking_v1_IngressSpec_rules_http_paths_backend_service_port_name {doc 'name is the name of the port on the Service This is a mutually exclusive setting with Number'}
																	Integer io_k8s_api_networking_v1_IngressSpec_rules_http_paths_backend_service_port_number {doc 'number is the numerical port number (eg 80) on the Service This is a mutually exclusive setting with Name'}
											String io_k8s_api_networking_v1_IngressSpec_rules_http_paths_pathType {doc 'pathType determines the interpretation of the path matching PathType can be one of the following values: * Exact: Matches the URL path exactly * Prefix: Matches based on a URL path prefix split by _/_ Matching is  done on a path element by element basis A path element refers is the  list of labels in the path split by the _/_ separator A request is a  match for path p if every p is an element-wise prefix of p of the  request path Note that if the last element of the path is a substring  of the last element in request path, it is not a match (eg /foo/bar  matches /foo/bar/baz, but does not match /foo/barbaz)* ImplementationSpecific: Interpretation of the Path matching is up to  the IngressClass Implementations can treat this as a separate PathType  or treat it identically to Prefix or Exact path typesImplementations are required to support all path types'}
										optional
											String io_k8s_api_networking_v1_IngressSpec_rules_http_paths_path {doc 'path is matched against the path of an incoming request Currently it can contain characters disallowed from the conventional path part of a URL as defined by RFC 3986 Paths must begin with a _/_ and must be present when using PathType with value Exact or Prefix'}
					io_k8s_api_networking_v1_IngressSpec_tls cardinality [1..*] {doc 'tls represents the TLS configuration Currently the Ingress only supports a single TLS port, 443 If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI'}
						optional
							io_k8s_api_networking_v1_IngressSpec_tls_hosts cardinality [1..*] {doc 'hosts is a list of hosts included in the TLS certificate The values in this list must match the name/s used in the tlsSecret Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified'}
								mandatory
									String io_k8s_api_networking_v1_IngressSpec_tls_hosts_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_networking_v1_IngressSpec_tls_secretName {doc 'secretName is the name of the secret used to terminate TLS traffic on port 443 Field is left optional to allow TLS routing based on SNI hostname alone If the SNI host in a listener conflicts with the Host header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing'}
			io_k8s_api_networking_v1_IngressStatus {doc 'IngressStatus describe the current state of the Ingress'}
				optional
					io_k8s_api_networking_v1_IngressStatus_loadBalancer {doc 'loadBalancer contains the current status of the load-balancer'}
						optional
							io_k8s_api_networking_v1_IngressStatus_loadBalancer_ingress cardinality [1..*] {doc 'ingress is a list containing ingress points for the load-balancer'}
								optional
									String io_k8s_api_networking_v1_IngressStatus_loadBalancer_ingress_hostname {doc 'hostname is set for load-balancer ingress points that are DNS based'}
									String io_k8s_api_networking_v1_IngressStatus_loadBalancer_ingress_ip {doc 'ip is set for load-balancer ingress points that are IP based'}
									io_k8s_api_networking_v1_IngressStatus_loadBalancer_ingress_ports cardinality [1..*] {doc 'ports provides information about the ports exposed by this LoadBalancer'}
										mandatory
											Integer io_k8s_api_networking_v1_IngressStatus_loadBalancer_ingress_ports_port {doc 'port is the port number of the ingress port'}
											io_k8s_api_networking_v1_IngressStatus_loadBalancer_ingress_ports_protocol {doc 'protocol is the protocol of the ingress port The supported values are: TCP, UDP, SCTP'}
												alternative
													io_k8s_api_networking_v1_IngressStatus_loadBalancer_ingress_ports_protocol_SCTP {doc 'Specific value: SCTP'}
													io_k8s_api_networking_v1_IngressStatus_loadBalancer_ingress_ports_protocol_TCP {doc 'Specific value: TCP'}
													io_k8s_api_networking_v1_IngressStatus_loadBalancer_ingress_ports_protocol_UDP {doc 'Specific value: UDP'}
										optional
											String io_k8s_api_networking_v1_IngressStatus_loadBalancer_ingress_ports_error {doc 'error is to record the problem with the service port The format of the error shall comply with the following rules: - built-in error values shall be specified in this file and those shall use  CamelCase names- cloud provider specific error values must have names that comply with the  format fooexamplecom/CamelCase'}
			io_k8s_api_networking_v1_IngressTLS {doc 'IngressTLS describes the transport layer security associated with an ingress'}
				optional
					io_k8s_api_networking_v1_IngressTLS_hosts cardinality [1..*] {doc 'hosts is a list of hosts included in the TLS certificate The values in this list must match the name/s used in the tlsSecret Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified'}
						mandatory
							String io_k8s_api_networking_v1_IngressTLS_hosts_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					String io_k8s_api_networking_v1_IngressTLS_secretName {doc 'secretName is the name of the secret used to terminate TLS traffic on port 443 Field is left optional to allow TLS routing based on SNI hostname alone If the SNI host in a listener conflicts with the Host header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing'}
			io_k8s_api_networking_v1_NetworkPolicy {doc 'NetworkPolicy describes what network traffic is allowed for a set of Pods'}
				optional
					String io_k8s_api_networking_v1_NetworkPolicy_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_networking_v1_NetworkPolicy_kind {default 'NetworkPolicy', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_networking_v1_NetworkPolicy_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_networking_v1_NetworkPolicy_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_networking_v1_NetworkPolicy_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_networking_v1_NetworkPolicy_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_networking_v1_NetworkPolicy_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_networking_v1_NetworkPolicy_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_networking_v1_NetworkPolicy_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_networking_v1_NetworkPolicy_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_networking_v1_NetworkPolicy_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_networking_v1_NetworkPolicy_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_networking_v1_NetworkPolicy_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_networking_v1_NetworkPolicy_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_networking_v1_NetworkPolicy_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_networking_v1_NetworkPolicy_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_networking_v1_NetworkPolicy_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_networking_v1_NetworkPolicy_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_networking_v1_NetworkPolicy_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_networking_v1_NetworkPolicy_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_networking_v1_NetworkPolicy_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_networking_v1_NetworkPolicy_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_networking_v1_NetworkPolicy_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_networking_v1_NetworkPolicy_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_networking_v1_NetworkPolicy_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_networking_v1_NetworkPolicy_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_networking_v1_NetworkPolicy_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_networking_v1_NetworkPolicy_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_networking_v1_NetworkPolicy_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_networking_v1_NetworkPolicy_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_networking_v1_NetworkPolicy_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_networking_v1_NetworkPolicy_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_networking_v1_NetworkPolicy_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_networking_v1_NetworkPolicy_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_networking_v1_NetworkPolicy_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_networking_v1_NetworkPolicy_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_networking_v1_NetworkPolicy_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_networking_v1_NetworkPolicy_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_networking_v1_NetworkPolicy_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_networking_v1_NetworkPolicy_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_networking_v1_NetworkPolicy_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_networking_v1_NetworkPolicy_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_networking_v1_NetworkPolicy_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_networking_v1_NetworkPolicy_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_networking_v1_NetworkPolicy_spec {doc 'spec represents the specification of the desired behavior for this NetworkPolicy'}
						mandatory
							io_k8s_api_networking_v1_NetworkPolicy_spec_podSelector {doc 'podSelector selects the pods to which this NetworkPolicy object applies The array of ingress rules is applied to any pods selected by this field Multiple network policies can select the same set of pods In this case, the ingress rules for each are combined additively This field is NOT optional and follows standard label selector semantics An empty podSelector matches all pods in this namespace'}
								optional
									io_k8s_api_networking_v1_NetworkPolicy_spec_podSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_networking_v1_NetworkPolicy_spec_podSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_networking_v1_NetworkPolicy_spec_podSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_networking_v1_NetworkPolicy_spec_podSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_networking_v1_NetworkPolicy_spec_podSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_networking_v1_NetworkPolicy_spec_podSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_networking_v1_NetworkPolicy_spec_podSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_networking_v1_NetworkPolicy_spec_podSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_networking_v1_NetworkPolicy_spec_podSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_networking_v1_NetworkPolicy_spec_podSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_networking_v1_NetworkPolicy_spec_podSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_networking_v1_NetworkPolicy_spec_podSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
						optional
							io_k8s_api_networking_v1_NetworkPolicy_spec_egress cardinality [1..*] {doc 'egress is a list of egress rules to be applied to the selected pods Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default) This field is beta-level in 18'}
								optional
									io_k8s_api_networking_v1_NetworkPolicy_spec_egress_ports cardinality [1..*] {doc 'ports is a list of destination ports for outgoing traffic Each item in this list is combined using a logical OR If this field is empty or missing, this rule matches all ports (traffic not restricted by port) If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list'}
										optional
											Integer io_k8s_api_networking_v1_NetworkPolicy_spec_egress_ports_endPort {doc 'endPort indicates that the range of ports from port to endPort if set, inclusive, should be allowed by the policy This field cannot be defined if the port field is not defined or if the port field is defined as a named (string) port The endPort must be equal or greater than port'}
											io_k8s_api_networking_v1_NetworkPolicy_spec_egress_ports_port {doc 'port represents the port on the given protocol This can either be a numerical or named port on a pod If this field is not provided, this matches all port names and numbers If present, only traffic on the specified protocol AND port will be matched'}
												alternative
													String io_k8s_api_networking_v1_NetworkPolicy_spec_egress_ports_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_networking_v1_NetworkPolicy_spec_egress_ports_port_asInteger {doc 'Sub-feature added of type Integer'}
											String io_k8s_api_networking_v1_NetworkPolicy_spec_egress_ports_protocol {doc 'protocol represents the protocol (TCP, UDP, or SCTP) which traffic must match If not specified, this field defaults to TCP'}
									io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to cardinality [1..*] {doc 'to is a list of destinations for outgoing traffic of pods selected for this rule Items in this list are combined using a logical OR operation If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination) If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list'}
										optional
											io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_ipBlock {doc 'ipBlock defines policy on a particular IPBlock If this field is set then neither of the other fields can be'}
												mandatory
													String io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_ipBlock_cidr {doc 'cidr is a string representing the IPBlock Valid examples are 19216810/24 or 2001:db8::/64'}
												optional
													io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_ipBlock_except cardinality [1..*] {doc 'except is a slice of CIDRs that should not be included within an IPBlock Valid examples are 19216810/24 or 2001:db8::/64 Except values will be rejected if they are outside the cidr range'}
														mandatory
															String io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_ipBlock_except_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_namespaceSelector {doc 'namespaceSelector selects namespaces using cluster-scoped labels This field follows standard label selector semantics; if present but empty, it selects all namespacesIf podSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the namespaces selected by namespaceSelector Otherwise it selects all pods in the namespaces selected by namespaceSelector'}
												optional
													io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_podSelector {doc 'podSelector is a label selector which selects pods This field follows standard label selector semantics; if present but empty, it selects all podsIf namespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the Namespaces selected by NamespaceSelector Otherwise it selects the pods matching podSelector in the policy_s own namespace'}
												optional
													io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_podSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_podSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_podSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_podSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_podSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_podSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_podSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_podSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_podSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_podSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_podSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_podSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_networking_v1_NetworkPolicy_spec_ingress cardinality [1..*] {doc 'ingress is a list of ingress rules to be applied to the selected pods Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod_s local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default)'}
								optional
									io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from cardinality [1..*] {doc 'from is a list of sources which should be able to access the pods selected for this rule Items in this list are combined using a logical OR operation If this field is empty or missing, this rule matches all sources (traffic not restricted by source) If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the from list'}
										optional
											io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_ipBlock {doc 'ipBlock defines policy on a particular IPBlock If this field is set then neither of the other fields can be'}
												mandatory
													String io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_ipBlock_cidr {doc 'cidr is a string representing the IPBlock Valid examples are 19216810/24 or 2001:db8::/64'}
												optional
													io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_ipBlock_except cardinality [1..*] {doc 'except is a slice of CIDRs that should not be included within an IPBlock Valid examples are 19216810/24 or 2001:db8::/64 Except values will be rejected if they are outside the cidr range'}
														mandatory
															String io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_ipBlock_except_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_namespaceSelector {doc 'namespaceSelector selects namespaces using cluster-scoped labels This field follows standard label selector semantics; if present but empty, it selects all namespacesIf podSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the namespaces selected by namespaceSelector Otherwise it selects all pods in the namespaces selected by namespaceSelector'}
												optional
													io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_podSelector {doc 'podSelector is a label selector which selects pods This field follows standard label selector semantics; if present but empty, it selects all podsIf namespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the Namespaces selected by NamespaceSelector Otherwise it selects the pods matching podSelector in the policy_s own namespace'}
												optional
													io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_podSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
														mandatory
															String io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_podSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
															io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_podSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																alternative
																	io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_podSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_podSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_podSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_podSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_podSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_podSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_podSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
														mandatory
															String io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_podSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
															String io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_podSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_ports cardinality [1..*] {doc 'ports is a list of ports which should be made accessible on the pods selected for this rule Each item in this list is combined using a logical OR If this field is empty or missing, this rule matches all ports (traffic not restricted by port) If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list'}
										optional
											Integer io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_ports_endPort {doc 'endPort indicates that the range of ports from port to endPort if set, inclusive, should be allowed by the policy This field cannot be defined if the port field is not defined or if the port field is defined as a named (string) port The endPort must be equal or greater than port'}
											io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_ports_port {doc 'port represents the port on the given protocol This can either be a numerical or named port on a pod If this field is not provided, this matches all port names and numbers If present, only traffic on the specified protocol AND port will be matched'}
												alternative
													String io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_ports_port_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_ports_port_asInteger {doc 'Sub-feature added of type Integer'}
											String io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_ports_protocol {doc 'protocol represents the protocol (TCP, UDP, or SCTP) which traffic must match If not specified, this field defaults to TCP'}
							io_k8s_api_networking_v1_NetworkPolicy_spec_policyTypes cardinality [1..*] {doc 'policyTypes is a list of rule types that the NetworkPolicy relates to Valid options are [Ingress], [Egress], or [Ingress, Egress] If this field is not specified, it will default based on the existence of ingress or egress rules; policies that contain an egress section are assumed to affect egress, and all policies (whether or not they contain an ingress section) are assumed to affect ingress If you want to write an egress-only policy, you must explicitly specify policyTypes [ Egress ] Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include Egress (since such a policy would not include an egress section and would otherwise default to just [ Ingress ]) This field is beta-level in 18'}
								alternative
									io_k8s_api_networking_v1_NetworkPolicy_spec_policyTypes_Egress {doc 'Specific value: Egress'}
									io_k8s_api_networking_v1_NetworkPolicy_spec_policyTypes_Ingress {doc 'Specific value: Ingress'}
			io_k8s_api_networking_v1_NetworkPolicyEgressRule {doc 'NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec_s podSelector The traffic must match both ports and to This type is beta-level in 18'}
				optional
					io_k8s_api_networking_v1_NetworkPolicyEgressRule_ports cardinality [1..*] {doc 'ports is a list of destination ports for outgoing traffic Each item in this list is combined using a logical OR If this field is empty or missing, this rule matches all ports (traffic not restricted by port) If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list'}
						optional
							Integer io_k8s_api_networking_v1_NetworkPolicyEgressRule_ports_endPort {doc 'endPort indicates that the range of ports from port to endPort if set, inclusive, should be allowed by the policy This field cannot be defined if the port field is not defined or if the port field is defined as a named (string) port The endPort must be equal or greater than port'}
							io_k8s_api_networking_v1_NetworkPolicyEgressRule_ports_port {doc 'port represents the port on the given protocol This can either be a numerical or named port on a pod If this field is not provided, this matches all port names and numbers If present, only traffic on the specified protocol AND port will be matched'}
								alternative
									String io_k8s_api_networking_v1_NetworkPolicyEgressRule_ports_port_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_networking_v1_NetworkPolicyEgressRule_ports_port_asInteger {doc 'Sub-feature added of type Integer'}
							String io_k8s_api_networking_v1_NetworkPolicyEgressRule_ports_protocol {doc 'protocol represents the protocol (TCP, UDP, or SCTP) which traffic must match If not specified, this field defaults to TCP'}
					io_k8s_api_networking_v1_NetworkPolicyEgressRule_to cardinality [1..*] {doc 'to is a list of destinations for outgoing traffic of pods selected for this rule Items in this list are combined using a logical OR operation If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination) If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list'}
						optional
							io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_ipBlock {doc 'ipBlock defines policy on a particular IPBlock If this field is set then neither of the other fields can be'}
								mandatory
									String io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_ipBlock_cidr {doc 'cidr is a string representing the IPBlock Valid examples are 19216810/24 or 2001:db8::/64'}
								optional
									io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_ipBlock_except cardinality [1..*] {doc 'except is a slice of CIDRs that should not be included within an IPBlock Valid examples are 19216810/24 or 2001:db8::/64 Except values will be rejected if they are outside the cidr range'}
										mandatory
											String io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_ipBlock_except_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_namespaceSelector {doc 'namespaceSelector selects namespaces using cluster-scoped labels This field follows standard label selector semantics; if present but empty, it selects all namespacesIf podSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the namespaces selected by namespaceSelector Otherwise it selects all pods in the namespaces selected by namespaceSelector'}
								optional
									io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_podSelector {doc 'podSelector is a label selector which selects pods This field follows standard label selector semantics; if present but empty, it selects all podsIf namespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the Namespaces selected by NamespaceSelector Otherwise it selects the pods matching podSelector in the policy_s own namespace'}
								optional
									io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_podSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_podSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_podSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_podSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_podSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_podSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_podSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_podSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_podSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_podSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_podSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_podSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
			io_k8s_api_networking_v1_NetworkPolicyIngressRule {doc 'NetworkPolicyIngressRule describes a particular set of traffic that is allowed to the pods matched by a NetworkPolicySpec_s podSelector The traffic must match both ports and from'}
				optional
					io_k8s_api_networking_v1_NetworkPolicyIngressRule_from cardinality [1..*] {doc 'from is a list of sources which should be able to access the pods selected for this rule Items in this list are combined using a logical OR operation If this field is empty or missing, this rule matches all sources (traffic not restricted by source) If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the from list'}
						optional
							io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_ipBlock {doc 'ipBlock defines policy on a particular IPBlock If this field is set then neither of the other fields can be'}
								mandatory
									String io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_ipBlock_cidr {doc 'cidr is a string representing the IPBlock Valid examples are 19216810/24 or 2001:db8::/64'}
								optional
									io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_ipBlock_except cardinality [1..*] {doc 'except is a slice of CIDRs that should not be included within an IPBlock Valid examples are 19216810/24 or 2001:db8::/64 Except values will be rejected if they are outside the cidr range'}
										mandatory
											String io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_ipBlock_except_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_namespaceSelector {doc 'namespaceSelector selects namespaces using cluster-scoped labels This field follows standard label selector semantics; if present but empty, it selects all namespacesIf podSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the namespaces selected by namespaceSelector Otherwise it selects all pods in the namespaces selected by namespaceSelector'}
								optional
									io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_podSelector {doc 'podSelector is a label selector which selects pods This field follows standard label selector semantics; if present but empty, it selects all podsIf namespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the Namespaces selected by NamespaceSelector Otherwise it selects the pods matching podSelector in the policy_s own namespace'}
								optional
									io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_podSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_podSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_podSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_podSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_podSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_podSelector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_podSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_podSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_podSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_podSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_podSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_podSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_networking_v1_NetworkPolicyIngressRule_ports cardinality [1..*] {doc 'ports is a list of ports which should be made accessible on the pods selected for this rule Each item in this list is combined using a logical OR If this field is empty or missing, this rule matches all ports (traffic not restricted by port) If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list'}
						optional
							Integer io_k8s_api_networking_v1_NetworkPolicyIngressRule_ports_endPort {doc 'endPort indicates that the range of ports from port to endPort if set, inclusive, should be allowed by the policy This field cannot be defined if the port field is not defined or if the port field is defined as a named (string) port The endPort must be equal or greater than port'}
							io_k8s_api_networking_v1_NetworkPolicyIngressRule_ports_port {doc 'port represents the port on the given protocol This can either be a numerical or named port on a pod If this field is not provided, this matches all port names and numbers If present, only traffic on the specified protocol AND port will be matched'}
								alternative
									String io_k8s_api_networking_v1_NetworkPolicyIngressRule_ports_port_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_networking_v1_NetworkPolicyIngressRule_ports_port_asInteger {doc 'Sub-feature added of type Integer'}
							String io_k8s_api_networking_v1_NetworkPolicyIngressRule_ports_protocol {doc 'protocol represents the protocol (TCP, UDP, or SCTP) which traffic must match If not specified, this field defaults to TCP'}
			io_k8s_api_networking_v1_NetworkPolicyList {doc 'NetworkPolicyList is a list of NetworkPolicy objects'}
				mandatory
					io_k8s_api_networking_v1_NetworkPolicyList_items cardinality [1..*] {doc 'items is a list of schema objects'}
						optional
							String io_k8s_api_networking_v1_NetworkPolicyList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_networking_v1_NetworkPolicyList_items_kind {default 'NetworkPolicy', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_networking_v1_NetworkPolicyList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_networking_v1_NetworkPolicyList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_networking_v1_NetworkPolicyList_items_spec {doc 'spec represents the specification of the desired behavior for this NetworkPolicy'}
								mandatory
									io_k8s_api_networking_v1_NetworkPolicyList_items_spec_podSelector {doc 'podSelector selects the pods to which this NetworkPolicy object applies The array of ingress rules is applied to any pods selected by this field Multiple network policies can select the same set of pods In this case, the ingress rules for each are combined additively This field is NOT optional and follows standard label selector semantics An empty podSelector matches all pods in this namespace'}
										optional
											io_k8s_api_networking_v1_NetworkPolicyList_items_spec_podSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_podSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_networking_v1_NetworkPolicyList_items_spec_podSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_networking_v1_NetworkPolicyList_items_spec_podSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_networking_v1_NetworkPolicyList_items_spec_podSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_networking_v1_NetworkPolicyList_items_spec_podSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_networking_v1_NetworkPolicyList_items_spec_podSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_networking_v1_NetworkPolicyList_items_spec_podSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_podSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_networking_v1_NetworkPolicyList_items_spec_podSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_podSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_podSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
								optional
									io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress cardinality [1..*] {doc 'egress is a list of egress rules to be applied to the selected pods Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default) This field is beta-level in 18'}
										optional
											io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_ports cardinality [1..*] {doc 'ports is a list of destination ports for outgoing traffic Each item in this list is combined using a logical OR If this field is empty or missing, this rule matches all ports (traffic not restricted by port) If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list'}
												optional
													Integer io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_ports_endPort {doc 'endPort indicates that the range of ports from port to endPort if set, inclusive, should be allowed by the policy This field cannot be defined if the port field is not defined or if the port field is defined as a named (string) port The endPort must be equal or greater than port'}
													io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_ports_port {doc 'port represents the port on the given protocol This can either be a numerical or named port on a pod If this field is not provided, this matches all port names and numbers If present, only traffic on the specified protocol AND port will be matched'}
														alternative
															String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_ports_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_ports_port_asInteger {doc 'Sub-feature added of type Integer'}
													String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_ports_protocol {doc 'protocol represents the protocol (TCP, UDP, or SCTP) which traffic must match If not specified, this field defaults to TCP'}
											io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to cardinality [1..*] {doc 'to is a list of destinations for outgoing traffic of pods selected for this rule Items in this list are combined using a logical OR operation If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination) If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list'}
												optional
													io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_ipBlock {doc 'ipBlock defines policy on a particular IPBlock If this field is set then neither of the other fields can be'}
														mandatory
															String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_ipBlock_cidr {doc 'cidr is a string representing the IPBlock Valid examples are 19216810/24 or 2001:db8::/64'}
														optional
															io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_ipBlock_except cardinality [1..*] {doc 'except is a slice of CIDRs that should not be included within an IPBlock Valid examples are 19216810/24 or 2001:db8::/64 Except values will be rejected if they are outside the cidr range'}
																mandatory
																	String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_ipBlock_except_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_namespaceSelector {doc 'namespaceSelector selects namespaces using cluster-scoped labels This field follows standard label selector semantics; if present but empty, it selects all namespacesIf podSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the namespaces selected by namespaceSelector Otherwise it selects all pods in the namespaces selected by namespaceSelector'}
														optional
															io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_podSelector {doc 'podSelector is a label selector which selects pods This field follows standard label selector semantics; if present but empty, it selects all podsIf namespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the Namespaces selected by NamespaceSelector Otherwise it selects the pods matching podSelector in the policy_s own namespace'}
														optional
															io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_podSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_podSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_podSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_podSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_podSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_podSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_podSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_podSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_podSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_podSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_podSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_podSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress cardinality [1..*] {doc 'ingress is a list of ingress rules to be applied to the selected pods Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod_s local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default)'}
										optional
											io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from cardinality [1..*] {doc 'from is a list of sources which should be able to access the pods selected for this rule Items in this list are combined using a logical OR operation If this field is empty or missing, this rule matches all sources (traffic not restricted by source) If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the from list'}
												optional
													io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_ipBlock {doc 'ipBlock defines policy on a particular IPBlock If this field is set then neither of the other fields can be'}
														mandatory
															String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_ipBlock_cidr {doc 'cidr is a string representing the IPBlock Valid examples are 19216810/24 or 2001:db8::/64'}
														optional
															io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_ipBlock_except cardinality [1..*] {doc 'except is a slice of CIDRs that should not be included within an IPBlock Valid examples are 19216810/24 or 2001:db8::/64 Except values will be rejected if they are outside the cidr range'}
																mandatory
																	String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_ipBlock_except_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_namespaceSelector {doc 'namespaceSelector selects namespaces using cluster-scoped labels This field follows standard label selector semantics; if present but empty, it selects all namespacesIf podSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the namespaces selected by namespaceSelector Otherwise it selects all pods in the namespaces selected by namespaceSelector'}
														optional
															io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_podSelector {doc 'podSelector is a label selector which selects pods This field follows standard label selector semantics; if present but empty, it selects all podsIf namespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the Namespaces selected by NamespaceSelector Otherwise it selects the pods matching podSelector in the policy_s own namespace'}
														optional
															io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_podSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
																mandatory
																	String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_podSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
																	io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_podSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
																		alternative
																			io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_podSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_podSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_podSelector_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_podSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_podSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_podSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_podSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
																mandatory
																	String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_podSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
																	String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_podSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_ports cardinality [1..*] {doc 'ports is a list of ports which should be made accessible on the pods selected for this rule Each item in this list is combined using a logical OR If this field is empty or missing, this rule matches all ports (traffic not restricted by port) If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list'}
												optional
													Integer io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_ports_endPort {doc 'endPort indicates that the range of ports from port to endPort if set, inclusive, should be allowed by the policy This field cannot be defined if the port field is not defined or if the port field is defined as a named (string) port The endPort must be equal or greater than port'}
													io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_ports_port {doc 'port represents the port on the given protocol This can either be a numerical or named port on a pod If this field is not provided, this matches all port names and numbers If present, only traffic on the specified protocol AND port will be matched'}
														alternative
															String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_ports_port_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_ports_port_asInteger {doc 'Sub-feature added of type Integer'}
													String io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_ports_protocol {doc 'protocol represents the protocol (TCP, UDP, or SCTP) which traffic must match If not specified, this field defaults to TCP'}
									io_k8s_api_networking_v1_NetworkPolicyList_items_spec_policyTypes cardinality [1..*] {doc 'policyTypes is a list of rule types that the NetworkPolicy relates to Valid options are [Ingress], [Egress], or [Ingress, Egress] If this field is not specified, it will default based on the existence of ingress or egress rules; policies that contain an egress section are assumed to affect egress, and all policies (whether or not they contain an ingress section) are assumed to affect ingress If you want to write an egress-only policy, you must explicitly specify policyTypes [ Egress ] Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include Egress (since such a policy would not include an egress section and would otherwise default to just [ Ingress ]) This field is beta-level in 18'}
										alternative
											io_k8s_api_networking_v1_NetworkPolicyList_items_spec_policyTypes_Egress {doc 'Specific value: Egress'}
											io_k8s_api_networking_v1_NetworkPolicyList_items_spec_policyTypes_Ingress {doc 'Specific value: Ingress'}
				optional
					String io_k8s_api_networking_v1_NetworkPolicyList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_networking_v1_NetworkPolicyList_kind {default 'NetworkPolicyList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_networking_v1_NetworkPolicyList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_networking_v1_NetworkPolicyList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_networking_v1_NetworkPolicyList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_networking_v1_NetworkPolicyList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_networking_v1_NetworkPolicyList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_networking_v1_NetworkPolicyPeer {doc 'NetworkPolicyPeer describes a peer to allow traffic to/from Only certain combinations of fields are allowed'}
				optional
					io_k8s_api_networking_v1_NetworkPolicyPeer_ipBlock {doc 'ipBlock defines policy on a particular IPBlock If this field is set then neither of the other fields can be'}
						mandatory
							String io_k8s_api_networking_v1_NetworkPolicyPeer_ipBlock_cidr {doc 'cidr is a string representing the IPBlock Valid examples are 19216810/24 or 2001:db8::/64'}
						optional
							io_k8s_api_networking_v1_NetworkPolicyPeer_ipBlock_except cardinality [1..*] {doc 'except is a slice of CIDRs that should not be included within an IPBlock Valid examples are 19216810/24 or 2001:db8::/64 Except values will be rejected if they are outside the cidr range'}
								mandatory
									String io_k8s_api_networking_v1_NetworkPolicyPeer_ipBlock_except_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_networking_v1_NetworkPolicyPeer_namespaceSelector {doc 'namespaceSelector selects namespaces using cluster-scoped labels This field follows standard label selector semantics; if present but empty, it selects all namespacesIf podSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the namespaces selected by namespaceSelector Otherwise it selects all pods in the namespaces selected by namespaceSelector'}
						optional
							io_k8s_api_networking_v1_NetworkPolicyPeer_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_networking_v1_NetworkPolicyPeer_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_networking_v1_NetworkPolicyPeer_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_networking_v1_NetworkPolicyPeer_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_networking_v1_NetworkPolicyPeer_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_networking_v1_NetworkPolicyPeer_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_networking_v1_NetworkPolicyPeer_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_networking_v1_NetworkPolicyPeer_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_networking_v1_NetworkPolicyPeer_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_networking_v1_NetworkPolicyPeer_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_networking_v1_NetworkPolicyPeer_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_networking_v1_NetworkPolicyPeer_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_networking_v1_NetworkPolicyPeer_podSelector {doc 'podSelector is a label selector which selects pods This field follows standard label selector semantics; if present but empty, it selects all podsIf namespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the Namespaces selected by NamespaceSelector Otherwise it selects the pods matching podSelector in the policy_s own namespace'}
						optional
							io_k8s_api_networking_v1_NetworkPolicyPeer_podSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_networking_v1_NetworkPolicyPeer_podSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_networking_v1_NetworkPolicyPeer_podSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_networking_v1_NetworkPolicyPeer_podSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_networking_v1_NetworkPolicyPeer_podSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_networking_v1_NetworkPolicyPeer_podSelector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_networking_v1_NetworkPolicyPeer_podSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_networking_v1_NetworkPolicyPeer_podSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_networking_v1_NetworkPolicyPeer_podSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_networking_v1_NetworkPolicyPeer_podSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_networking_v1_NetworkPolicyPeer_podSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_networking_v1_NetworkPolicyPeer_podSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
			io_k8s_api_networking_v1_NetworkPolicyPort {doc 'NetworkPolicyPort describes a port to allow traffic on'}
				optional
					Integer io_k8s_api_networking_v1_NetworkPolicyPort_endPort {doc 'endPort indicates that the range of ports from port to endPort if set, inclusive, should be allowed by the policy This field cannot be defined if the port field is not defined or if the port field is defined as a named (string) port The endPort must be equal or greater than port'}
					io_k8s_api_networking_v1_NetworkPolicyPort_port {doc 'port represents the port on the given protocol This can either be a numerical or named port on a pod If this field is not provided, this matches all port names and numbers If present, only traffic on the specified protocol AND port will be matched'}
						alternative
							String io_k8s_api_networking_v1_NetworkPolicyPort_port_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_networking_v1_NetworkPolicyPort_port_asInteger {doc 'Sub-feature added of type Integer'}
					String io_k8s_api_networking_v1_NetworkPolicyPort_protocol {doc 'protocol represents the protocol (TCP, UDP, or SCTP) which traffic must match If not specified, this field defaults to TCP'}
			io_k8s_api_networking_v1_NetworkPolicySpec {doc 'NetworkPolicySpec provides the specification of a NetworkPolicy'}
				mandatory
					io_k8s_api_networking_v1_NetworkPolicySpec_podSelector {doc 'podSelector selects the pods to which this NetworkPolicy object applies The array of ingress rules is applied to any pods selected by this field Multiple network policies can select the same set of pods In this case, the ingress rules for each are combined additively This field is NOT optional and follows standard label selector semantics An empty podSelector matches all pods in this namespace'}
						optional
							io_k8s_api_networking_v1_NetworkPolicySpec_podSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_networking_v1_NetworkPolicySpec_podSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_networking_v1_NetworkPolicySpec_podSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_networking_v1_NetworkPolicySpec_podSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_networking_v1_NetworkPolicySpec_podSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_networking_v1_NetworkPolicySpec_podSelector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_networking_v1_NetworkPolicySpec_podSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_networking_v1_NetworkPolicySpec_podSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_networking_v1_NetworkPolicySpec_podSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_networking_v1_NetworkPolicySpec_podSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_networking_v1_NetworkPolicySpec_podSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_networking_v1_NetworkPolicySpec_podSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
				optional
					io_k8s_api_networking_v1_NetworkPolicySpec_egress cardinality [1..*] {doc 'egress is a list of egress rules to be applied to the selected pods Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default) This field is beta-level in 18'}
						optional
							io_k8s_api_networking_v1_NetworkPolicySpec_egress_ports cardinality [1..*] {doc 'ports is a list of destination ports for outgoing traffic Each item in this list is combined using a logical OR If this field is empty or missing, this rule matches all ports (traffic not restricted by port) If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list'}
								optional
									Integer io_k8s_api_networking_v1_NetworkPolicySpec_egress_ports_endPort {doc 'endPort indicates that the range of ports from port to endPort if set, inclusive, should be allowed by the policy This field cannot be defined if the port field is not defined or if the port field is defined as a named (string) port The endPort must be equal or greater than port'}
									io_k8s_api_networking_v1_NetworkPolicySpec_egress_ports_port {doc 'port represents the port on the given protocol This can either be a numerical or named port on a pod If this field is not provided, this matches all port names and numbers If present, only traffic on the specified protocol AND port will be matched'}
										alternative
											String io_k8s_api_networking_v1_NetworkPolicySpec_egress_ports_port_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_networking_v1_NetworkPolicySpec_egress_ports_port_asInteger {doc 'Sub-feature added of type Integer'}
									String io_k8s_api_networking_v1_NetworkPolicySpec_egress_ports_protocol {doc 'protocol represents the protocol (TCP, UDP, or SCTP) which traffic must match If not specified, this field defaults to TCP'}
							io_k8s_api_networking_v1_NetworkPolicySpec_egress_to cardinality [1..*] {doc 'to is a list of destinations for outgoing traffic of pods selected for this rule Items in this list are combined using a logical OR operation If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination) If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list'}
								optional
									io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_ipBlock {doc 'ipBlock defines policy on a particular IPBlock If this field is set then neither of the other fields can be'}
										mandatory
											String io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_ipBlock_cidr {doc 'cidr is a string representing the IPBlock Valid examples are 19216810/24 or 2001:db8::/64'}
										optional
											io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_ipBlock_except cardinality [1..*] {doc 'except is a slice of CIDRs that should not be included within an IPBlock Valid examples are 19216810/24 or 2001:db8::/64 Except values will be rejected if they are outside the cidr range'}
												mandatory
													String io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_ipBlock_except_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_namespaceSelector {doc 'namespaceSelector selects namespaces using cluster-scoped labels This field follows standard label selector semantics; if present but empty, it selects all namespacesIf podSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the namespaces selected by namespaceSelector Otherwise it selects all pods in the namespaces selected by namespaceSelector'}
										optional
											io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_podSelector {doc 'podSelector is a label selector which selects pods This field follows standard label selector semantics; if present but empty, it selects all podsIf namespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the Namespaces selected by NamespaceSelector Otherwise it selects the pods matching podSelector in the policy_s own namespace'}
										optional
											io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_podSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_podSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_podSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_podSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_podSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_podSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_podSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_podSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_podSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_podSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_podSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_podSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_networking_v1_NetworkPolicySpec_ingress cardinality [1..*] {doc 'ingress is a list of ingress rules to be applied to the selected pods Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod_s local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default)'}
						optional
							io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from cardinality [1..*] {doc 'from is a list of sources which should be able to access the pods selected for this rule Items in this list are combined using a logical OR operation If this field is empty or missing, this rule matches all sources (traffic not restricted by source) If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the from list'}
								optional
									io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_ipBlock {doc 'ipBlock defines policy on a particular IPBlock If this field is set then neither of the other fields can be'}
										mandatory
											String io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_ipBlock_cidr {doc 'cidr is a string representing the IPBlock Valid examples are 19216810/24 or 2001:db8::/64'}
										optional
											io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_ipBlock_except cardinality [1..*] {doc 'except is a slice of CIDRs that should not be included within an IPBlock Valid examples are 19216810/24 or 2001:db8::/64 Except values will be rejected if they are outside the cidr range'}
												mandatory
													String io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_ipBlock_except_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_namespaceSelector {doc 'namespaceSelector selects namespaces using cluster-scoped labels This field follows standard label selector semantics; if present but empty, it selects all namespacesIf podSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the namespaces selected by namespaceSelector Otherwise it selects all pods in the namespaces selected by namespaceSelector'}
										optional
											io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_namespaceSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_namespaceSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_namespaceSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_namespaceSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_namespaceSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_namespaceSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_namespaceSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_namespaceSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_namespaceSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_namespaceSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_namespaceSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_namespaceSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_podSelector {doc 'podSelector is a label selector which selects pods This field follows standard label selector semantics; if present but empty, it selects all podsIf namespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the pods matching podSelector in the Namespaces selected by NamespaceSelector Otherwise it selects the pods matching podSelector in the policy_s own namespace'}
										optional
											io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_podSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_podSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_podSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_podSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_podSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_podSelector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_podSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_podSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_podSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_podSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_podSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_podSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_networking_v1_NetworkPolicySpec_ingress_ports cardinality [1..*] {doc 'ports is a list of ports which should be made accessible on the pods selected for this rule Each item in this list is combined using a logical OR If this field is empty or missing, this rule matches all ports (traffic not restricted by port) If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list'}
								optional
									Integer io_k8s_api_networking_v1_NetworkPolicySpec_ingress_ports_endPort {doc 'endPort indicates that the range of ports from port to endPort if set, inclusive, should be allowed by the policy This field cannot be defined if the port field is not defined or if the port field is defined as a named (string) port The endPort must be equal or greater than port'}
									io_k8s_api_networking_v1_NetworkPolicySpec_ingress_ports_port {doc 'port represents the port on the given protocol This can either be a numerical or named port on a pod If this field is not provided, this matches all port names and numbers If present, only traffic on the specified protocol AND port will be matched'}
										alternative
											String io_k8s_api_networking_v1_NetworkPolicySpec_ingress_ports_port_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_networking_v1_NetworkPolicySpec_ingress_ports_port_asInteger {doc 'Sub-feature added of type Integer'}
									String io_k8s_api_networking_v1_NetworkPolicySpec_ingress_ports_protocol {doc 'protocol represents the protocol (TCP, UDP, or SCTP) which traffic must match If not specified, this field defaults to TCP'}
					io_k8s_api_networking_v1_NetworkPolicySpec_policyTypes cardinality [1..*] {doc 'policyTypes is a list of rule types that the NetworkPolicy relates to Valid options are [Ingress], [Egress], or [Ingress, Egress] If this field is not specified, it will default based on the existence of ingress or egress rules; policies that contain an egress section are assumed to affect egress, and all policies (whether or not they contain an ingress section) are assumed to affect ingress If you want to write an egress-only policy, you must explicitly specify policyTypes [ Egress ] Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include Egress (since such a policy would not include an egress section and would otherwise default to just [ Ingress ]) This field is beta-level in 18'}
						alternative
							io_k8s_api_networking_v1_NetworkPolicySpec_policyTypes_Egress {doc 'Specific value: Egress'}
							io_k8s_api_networking_v1_NetworkPolicySpec_policyTypes_Ingress {doc 'Specific value: Ingress'}
			io_k8s_api_networking_v1_ServiceBackendPort {doc 'ServiceBackendPort is the service port being referenced'}
				optional
					String io_k8s_api_networking_v1_ServiceBackendPort_name {doc 'name is the name of the port on the Service This is a mutually exclusive setting with Number'}
					Integer io_k8s_api_networking_v1_ServiceBackendPort_number {doc 'number is the numerical port number (eg 80) on the Service This is a mutually exclusive setting with Name'}
			io_k8s_api_networking_v1alpha1_IPAddress {doc 'IPAddress represents a single IP of a single IP Family The object is designed to be used by APIs that operate on IP addresses The object is used by the Service core API for allocation of IP addresses An IP address can be represented in different formats, to guarantee the uniqueness of the IP, the name of the object is the IP address in canonical format, four decimal digits separated by dots suppressing leading zeros for IPv4 and the representation defined by RFC 5952 for IPv6 Valid: 19216815 or 2001:db8::1 or 2001:db8:aaaa:bbbb:cccc:dddd:eeee:1 Invalid: 100123 or 2001:db8:0:0:0::1'}
				optional
					String io_k8s_api_networking_v1alpha1_IPAddress_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_networking_v1alpha1_IPAddress_kind {default 'IPAddress', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_networking_v1alpha1_IPAddress_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_networking_v1alpha1_IPAddress_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_networking_v1alpha1_IPAddress_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_networking_v1alpha1_IPAddress_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_networking_v1alpha1_IPAddress_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_networking_v1alpha1_IPAddress_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_networking_v1alpha1_IPAddress_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_networking_v1alpha1_IPAddress_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_networking_v1alpha1_IPAddress_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_networking_v1alpha1_IPAddress_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_networking_v1alpha1_IPAddress_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_networking_v1alpha1_IPAddress_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_networking_v1alpha1_IPAddress_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_networking_v1alpha1_IPAddress_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_networking_v1alpha1_IPAddress_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_networking_v1alpha1_IPAddress_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_networking_v1alpha1_IPAddress_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_networking_v1alpha1_IPAddress_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_networking_v1alpha1_IPAddress_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_networking_v1alpha1_IPAddress_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_networking_v1alpha1_IPAddress_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_networking_v1alpha1_IPAddress_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_networking_v1alpha1_IPAddress_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_networking_v1alpha1_IPAddress_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_networking_v1alpha1_IPAddress_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_networking_v1alpha1_IPAddress_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_networking_v1alpha1_IPAddress_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_networking_v1alpha1_IPAddress_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_networking_v1alpha1_IPAddress_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_networking_v1alpha1_IPAddress_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_networking_v1alpha1_IPAddress_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_networking_v1alpha1_IPAddress_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_networking_v1alpha1_IPAddress_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_networking_v1alpha1_IPAddress_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_networking_v1alpha1_IPAddress_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_networking_v1alpha1_IPAddress_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_networking_v1alpha1_IPAddress_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_networking_v1alpha1_IPAddress_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_networking_v1alpha1_IPAddress_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_networking_v1alpha1_IPAddress_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_networking_v1alpha1_IPAddress_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_networking_v1alpha1_IPAddress_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_networking_v1alpha1_IPAddress_spec {doc 'spec is the desired state of the IPAddress More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						mandatory
							io_k8s_api_networking_v1alpha1_IPAddress_spec_parentRef {doc 'ParentRef references the resource that an IPAddress is attached to An IPAddress must reference a parent object'}
								mandatory
									String io_k8s_api_networking_v1alpha1_IPAddress_spec_parentRef_name {doc 'Name is the name of the object being referenced'}
									String io_k8s_api_networking_v1alpha1_IPAddress_spec_parentRef_resource {doc 'Resource is the resource of the object being referenced'}
								optional
									String io_k8s_api_networking_v1alpha1_IPAddress_spec_parentRef_group {doc 'Group is the group of the object being referenced'}
									String io_k8s_api_networking_v1alpha1_IPAddress_spec_parentRef_namespace {doc 'Namespace is the namespace of the object being referenced'}
			io_k8s_api_networking_v1alpha1_IPAddressList {doc 'IPAddressList contains a list of IPAddress'}
				mandatory
					io_k8s_api_networking_v1alpha1_IPAddressList_items cardinality [1..*] {doc 'items is the list of IPAddresses'}
						optional
							String io_k8s_api_networking_v1alpha1_IPAddressList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_networking_v1alpha1_IPAddressList_items_kind {default 'IPAddress', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_networking_v1alpha1_IPAddressList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_networking_v1alpha1_IPAddressList_items_spec {doc 'spec is the desired state of the IPAddress More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								mandatory
									io_k8s_api_networking_v1alpha1_IPAddressList_items_spec_parentRef {doc 'ParentRef references the resource that an IPAddress is attached to An IPAddress must reference a parent object'}
										mandatory
											String io_k8s_api_networking_v1alpha1_IPAddressList_items_spec_parentRef_name {doc 'Name is the name of the object being referenced'}
											String io_k8s_api_networking_v1alpha1_IPAddressList_items_spec_parentRef_resource {doc 'Resource is the resource of the object being referenced'}
										optional
											String io_k8s_api_networking_v1alpha1_IPAddressList_items_spec_parentRef_group {doc 'Group is the group of the object being referenced'}
											String io_k8s_api_networking_v1alpha1_IPAddressList_items_spec_parentRef_namespace {doc 'Namespace is the namespace of the object being referenced'}
				optional
					String io_k8s_api_networking_v1alpha1_IPAddressList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_networking_v1alpha1_IPAddressList_kind {default 'IPAddressList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_networking_v1alpha1_IPAddressList_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_networking_v1alpha1_IPAddressList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_networking_v1alpha1_IPAddressList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_networking_v1alpha1_IPAddressList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_networking_v1alpha1_IPAddressList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_networking_v1alpha1_IPAddressSpec {doc 'IPAddressSpec describe the attributes in an IP Address'}
				mandatory
					io_k8s_api_networking_v1alpha1_IPAddressSpec_parentRef {doc 'ParentRef references the resource that an IPAddress is attached to An IPAddress must reference a parent object'}
						mandatory
							String io_k8s_api_networking_v1alpha1_IPAddressSpec_parentRef_name {doc 'Name is the name of the object being referenced'}
							String io_k8s_api_networking_v1alpha1_IPAddressSpec_parentRef_resource {doc 'Resource is the resource of the object being referenced'}
						optional
							String io_k8s_api_networking_v1alpha1_IPAddressSpec_parentRef_group {doc 'Group is the group of the object being referenced'}
							String io_k8s_api_networking_v1alpha1_IPAddressSpec_parentRef_namespace {doc 'Namespace is the namespace of the object being referenced'}
			io_k8s_api_networking_v1alpha1_ParentReference {doc 'ParentReference describes a reference to a parent object'}
				mandatory
					String io_k8s_api_networking_v1alpha1_ParentReference_name {doc 'Name is the name of the object being referenced'}
					String io_k8s_api_networking_v1alpha1_ParentReference_resource {doc 'Resource is the resource of the object being referenced'}
				optional
					String io_k8s_api_networking_v1alpha1_ParentReference_group {doc 'Group is the group of the object being referenced'}
					String io_k8s_api_networking_v1alpha1_ParentReference_namespace {doc 'Namespace is the namespace of the object being referenced'}
			io_k8s_api_networking_v1alpha1_ServiceCIDR {doc 'ServiceCIDR defines a range of IP addresses using CIDR format (eg 19216800/24 or 2001:db2::/64) This range is used to allocate ClusterIPs to Service objects'}
				optional
					String io_k8s_api_networking_v1alpha1_ServiceCIDR_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_networking_v1alpha1_ServiceCIDR_kind {default 'ServiceCIDR', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_networking_v1alpha1_ServiceCIDR_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_networking_v1alpha1_ServiceCIDR_spec {doc 'spec is the desired state of the ServiceCIDR More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							io_k8s_api_networking_v1alpha1_ServiceCIDR_spec_cidrs cardinality [1..*] {doc 'CIDRs defines the IP blocks in CIDR notation (eg 19216800/24 or 2001:db8::/64) from which to assign service cluster IPs Max of two CIDRs is allowed, one of each IP family This field is immutable'}
								mandatory
									String io_k8s_api_networking_v1alpha1_ServiceCIDR_spec_cidrs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_networking_v1alpha1_ServiceCIDR_status {doc 'status represents the current state of the ServiceCIDR More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						optional
							io_k8s_api_networking_v1alpha1_ServiceCIDR_status_conditions cardinality [1..*] {doc 'conditions holds an array of metav1Condition that describe the state of the ServiceCIDR Current service state'}
								mandatory
									io_k8s_api_networking_v1alpha1_ServiceCIDR_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another This should be when the underlying condition changed  If that is not known, then using the time when the API field changed is acceptable'}
										optional
											String io_k8s_api_networking_v1alpha1_ServiceCIDR_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_networking_v1alpha1_ServiceCIDR_status_conditions_message {doc 'message is a human readable message indicating details about the transition This may be an empty string'}
									String io_k8s_api_networking_v1alpha1_ServiceCIDR_status_conditions_reason {doc 'reason contains a programmatic identifier indicating the reason for the condition_s last transition Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API The value should be a CamelCase string This field may not be empty'}
									io_k8s_api_networking_v1alpha1_ServiceCIDR_status_conditions_status {doc 'status of the condition, one of True, False, Unknown'}
										alternative
											io_k8s_api_networking_v1alpha1_ServiceCIDR_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_networking_v1alpha1_ServiceCIDR_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_networking_v1alpha1_ServiceCIDR_status_conditions_status_True {doc 'Specific value: True'}
									String io_k8s_api_networking_v1alpha1_ServiceCIDR_status_conditions_type {doc 'type of condition in CamelCase or in fooexamplecom/CamelCase'}
								optional
									Integer io_k8s_api_networking_v1alpha1_ServiceCIDR_status_conditions_observedGeneration {doc 'observedGeneration represents the metadatageneration that the condition was set based upon For instance, if metadatageneration is currently 12, but the statusconditions[x]observedGeneration is 9, the condition is out of date with respect to the current state of the instance'}
			io_k8s_api_networking_v1alpha1_ServiceCIDRList {doc 'ServiceCIDRList contains a list of ServiceCIDR objects'}
				mandatory
					io_k8s_api_networking_v1alpha1_ServiceCIDRList_items cardinality [1..*] {doc 'items is the list of ServiceCIDRs'}
						optional
							String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_kind {default 'ServiceCIDR', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_spec {doc 'spec is the desired state of the ServiceCIDR More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								optional
									io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_spec_cidrs cardinality [1..*] {doc 'CIDRs defines the IP blocks in CIDR notation (eg 19216800/24 or 2001:db8::/64) from which to assign service cluster IPs Max of two CIDRs is allowed, one of each IP family This field is immutable'}
										mandatory
											String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_spec_cidrs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_status {doc 'status represents the current state of the ServiceCIDR More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
								optional
									io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_status_conditions cardinality [1..*] {doc 'conditions holds an array of metav1Condition that describe the state of the ServiceCIDR Current service state'}
										mandatory
											io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another This should be when the underlying condition changed  If that is not known, then using the time when the API field changed is acceptable'}
												optional
													String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_status_conditions_message {doc 'message is a human readable message indicating details about the transition This may be an empty string'}
											String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_status_conditions_reason {doc 'reason contains a programmatic identifier indicating the reason for the condition_s last transition Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API The value should be a CamelCase string This field may not be empty'}
											io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_status_conditions_status {doc 'status of the condition, one of True, False, Unknown'}
												alternative
													io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_status_conditions_status_True {doc 'Specific value: True'}
											String io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_status_conditions_type {doc 'type of condition in CamelCase or in fooexamplecom/CamelCase'}
										optional
											Integer io_k8s_api_networking_v1alpha1_ServiceCIDRList_items_status_conditions_observedGeneration {doc 'observedGeneration represents the metadatageneration that the condition was set based upon For instance, if metadatageneration is currently 12, but the statusconditions[x]observedGeneration is 9, the condition is out of date with respect to the current state of the instance'}
				optional
					String io_k8s_api_networking_v1alpha1_ServiceCIDRList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_networking_v1alpha1_ServiceCIDRList_kind {default 'ServiceCIDRList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_networking_v1alpha1_ServiceCIDRList_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_networking_v1alpha1_ServiceCIDRList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_networking_v1alpha1_ServiceCIDRList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_networking_v1alpha1_ServiceCIDRList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_networking_v1alpha1_ServiceCIDRList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_networking_v1alpha1_ServiceCIDRSpec {doc 'ServiceCIDRSpec define the CIDRs the user wants to use for allocating ClusterIPs for Services'}
				optional
					io_k8s_api_networking_v1alpha1_ServiceCIDRSpec_cidrs cardinality [1..*] {doc 'CIDRs defines the IP blocks in CIDR notation (eg 19216800/24 or 2001:db8::/64) from which to assign service cluster IPs Max of two CIDRs is allowed, one of each IP family This field is immutable'}
						mandatory
							String io_k8s_api_networking_v1alpha1_ServiceCIDRSpec_cidrs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_networking_v1alpha1_ServiceCIDRStatus {doc 'ServiceCIDRStatus describes the current state of the ServiceCIDR'}
				optional
					io_k8s_api_networking_v1alpha1_ServiceCIDRStatus_conditions cardinality [1..*] {doc 'conditions holds an array of metav1Condition that describe the state of the ServiceCIDR Current service state'}
						mandatory
							io_k8s_api_networking_v1alpha1_ServiceCIDRStatus_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another This should be when the underlying condition changed  If that is not known, then using the time when the API field changed is acceptable'}
								optional
									String io_k8s_api_networking_v1alpha1_ServiceCIDRStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_networking_v1alpha1_ServiceCIDRStatus_conditions_message {doc 'message is a human readable message indicating details about the transition This may be an empty string'}
							String io_k8s_api_networking_v1alpha1_ServiceCIDRStatus_conditions_reason {doc 'reason contains a programmatic identifier indicating the reason for the condition_s last transition Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API The value should be a CamelCase string This field may not be empty'}
							io_k8s_api_networking_v1alpha1_ServiceCIDRStatus_conditions_status {doc 'status of the condition, one of True, False, Unknown'}
								alternative
									io_k8s_api_networking_v1alpha1_ServiceCIDRStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_networking_v1alpha1_ServiceCIDRStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_networking_v1alpha1_ServiceCIDRStatus_conditions_status_True {doc 'Specific value: True'}
							String io_k8s_api_networking_v1alpha1_ServiceCIDRStatus_conditions_type {doc 'type of condition in CamelCase or in fooexamplecom/CamelCase'}
						optional
							Integer io_k8s_api_networking_v1alpha1_ServiceCIDRStatus_conditions_observedGeneration {doc 'observedGeneration represents the metadatageneration that the condition was set based upon For instance, if metadatageneration is currently 12, but the statusconditions[x]observedGeneration is 9, the condition is out of date with respect to the current state of the instance'}
			io_k8s_api_node_v1_Overhead {doc 'Overhead structure represents the resource overhead associated with running a pod'}
				optional
					io_k8s_api_node_v1_Overhead_podFixed cardinality [1..*] {doc 'podFixed represents the fixed resource overhead associated with running a pod'}
						alternative
							String io_k8s_api_node_v1_Overhead_podFixed_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_node_v1_Overhead_podFixed_asNumber {doc 'Sub-feature added of type Number'}
			io_k8s_api_node_v1_RuntimeClass {doc 'RuntimeClass defines a class of container runtime supported in the cluster The RuntimeClass is used to determine which container runtime is used to run all containers in a pod RuntimeClasses are manually defined by a user or cluster provisioner, and referenced in the PodSpec The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod  For more details, see https:_kubernetesio/docs/concepts/containers/runtime-class/'}
				mandatory
					String io_k8s_api_node_v1_RuntimeClass_handler {doc 'handler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class The possible values are specific to the node & CRI configuration  It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node For example, a handler called runc might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod The Handler must be lowercase, conform to the DNS Label (RFC 1123) requirements, and is immutable'}
				optional
					String io_k8s_api_node_v1_RuntimeClass_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_node_v1_RuntimeClass_kind {default 'RuntimeClass', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_node_v1_RuntimeClass_metadata {doc 'More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_node_v1_RuntimeClass_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_node_v1_RuntimeClass_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_node_v1_RuntimeClass_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_node_v1_RuntimeClass_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_node_v1_RuntimeClass_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_node_v1_RuntimeClass_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_node_v1_RuntimeClass_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_node_v1_RuntimeClass_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_node_v1_RuntimeClass_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_node_v1_RuntimeClass_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_node_v1_RuntimeClass_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_node_v1_RuntimeClass_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_node_v1_RuntimeClass_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_node_v1_RuntimeClass_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_node_v1_RuntimeClass_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_node_v1_RuntimeClass_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_node_v1_RuntimeClass_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_node_v1_RuntimeClass_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_node_v1_RuntimeClass_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_node_v1_RuntimeClass_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_node_v1_RuntimeClass_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_node_v1_RuntimeClass_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_node_v1_RuntimeClass_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_node_v1_RuntimeClass_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_node_v1_RuntimeClass_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_node_v1_RuntimeClass_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_node_v1_RuntimeClass_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_node_v1_RuntimeClass_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_node_v1_RuntimeClass_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_node_v1_RuntimeClass_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_node_v1_RuntimeClass_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_node_v1_RuntimeClass_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_node_v1_RuntimeClass_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_node_v1_RuntimeClass_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_node_v1_RuntimeClass_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_node_v1_RuntimeClass_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_node_v1_RuntimeClass_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_node_v1_RuntimeClass_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_node_v1_RuntimeClass_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_node_v1_RuntimeClass_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_node_v1_RuntimeClass_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_node_v1_RuntimeClass_overhead {doc 'overhead represents the resource overhead associated with running a pod for a given RuntimeClass For more details, see https:_kubernetesio/docs/concepts/scheduling-eviction/pod-overhead/'}
						optional
							io_k8s_api_node_v1_RuntimeClass_overhead_podFixed cardinality [1..*] {doc 'podFixed represents the fixed resource overhead associated with running a pod'}
								alternative
									String io_k8s_api_node_v1_RuntimeClass_overhead_podFixed_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_node_v1_RuntimeClass_overhead_podFixed_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_node_v1_RuntimeClass_scheduling {doc 'scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes'}
						optional
							io_k8s_api_node_v1_RuntimeClass_scheduling_nodeSelector cardinality [1..*] {doc 'nodeSelector lists labels that must be present on nodes that support this RuntimeClass Pods using this RuntimeClass can only be scheduled to a node matched by this selector The RuntimeClass nodeSelector is merged with a pod_s existing nodeSelector Any conflicts will cause the pod to be rejected in admission'}
								mandatory
									String io_k8s_api_node_v1_RuntimeClass_scheduling_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_node_v1_RuntimeClass_scheduling_tolerations cardinality [1..*] {doc 'tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass'}
								optional
									io_k8s_api_node_v1_RuntimeClass_scheduling_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
										alternative
											io_k8s_api_node_v1_RuntimeClass_scheduling_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
											io_k8s_api_node_v1_RuntimeClass_scheduling_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
											io_k8s_api_node_v1_RuntimeClass_scheduling_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
									String io_k8s_api_node_v1_RuntimeClass_scheduling_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
									io_k8s_api_node_v1_RuntimeClass_scheduling_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
										alternative
											io_k8s_api_node_v1_RuntimeClass_scheduling_tolerations_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_node_v1_RuntimeClass_scheduling_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
									Integer io_k8s_api_node_v1_RuntimeClass_scheduling_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
									io_k8s_api_node_v1_RuntimeClass_scheduling_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
										mandatory
											String io_k8s_api_node_v1_RuntimeClass_scheduling_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
			io_k8s_api_node_v1_RuntimeClassList {doc 'RuntimeClassList is a list of RuntimeClass objects'}
				mandatory
					io_k8s_api_node_v1_RuntimeClassList_items cardinality [1..*] {doc 'items is a list of schema objects'}
						mandatory
							String io_k8s_api_node_v1_RuntimeClassList_items_handler {doc 'handler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class The possible values are specific to the node & CRI configuration  It is assumed that all handlers are available on every node, and handlers of the same name are equivalent on every node For example, a handler called runc might specify that the runc OCI runtime (using native Linux containers) will be used to run the containers in a pod The Handler must be lowercase, conform to the DNS Label (RFC 1123) requirements, and is immutable'}
						optional
							String io_k8s_api_node_v1_RuntimeClassList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_node_v1_RuntimeClassList_items_kind {default 'RuntimeClass', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_node_v1_RuntimeClassList_items_metadata {doc 'More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_node_v1_RuntimeClassList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_node_v1_RuntimeClassList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_node_v1_RuntimeClassList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_node_v1_RuntimeClassList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_node_v1_RuntimeClassList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_node_v1_RuntimeClassList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_node_v1_RuntimeClassList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_node_v1_RuntimeClassList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_node_v1_RuntimeClassList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_node_v1_RuntimeClassList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_node_v1_RuntimeClassList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_node_v1_RuntimeClassList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_node_v1_RuntimeClassList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_node_v1_RuntimeClassList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_node_v1_RuntimeClassList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_node_v1_RuntimeClassList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_node_v1_RuntimeClassList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_node_v1_RuntimeClassList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_node_v1_RuntimeClassList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_node_v1_RuntimeClassList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_node_v1_RuntimeClassList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_node_v1_RuntimeClassList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_node_v1_RuntimeClassList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_node_v1_RuntimeClassList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_node_v1_RuntimeClassList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_node_v1_RuntimeClassList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_node_v1_RuntimeClassList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_node_v1_RuntimeClassList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_node_v1_RuntimeClassList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_node_v1_RuntimeClassList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_node_v1_RuntimeClassList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_node_v1_RuntimeClassList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_node_v1_RuntimeClassList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_node_v1_RuntimeClassList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_node_v1_RuntimeClassList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_node_v1_RuntimeClassList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_node_v1_RuntimeClassList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_node_v1_RuntimeClassList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_node_v1_RuntimeClassList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_node_v1_RuntimeClassList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_node_v1_RuntimeClassList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_node_v1_RuntimeClassList_items_overhead {doc 'overhead represents the resource overhead associated with running a pod for a given RuntimeClass For more details, see https:_kubernetesio/docs/concepts/scheduling-eviction/pod-overhead/'}
								optional
									io_k8s_api_node_v1_RuntimeClassList_items_overhead_podFixed cardinality [1..*] {doc 'podFixed represents the fixed resource overhead associated with running a pod'}
										alternative
											String io_k8s_api_node_v1_RuntimeClassList_items_overhead_podFixed_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_node_v1_RuntimeClassList_items_overhead_podFixed_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_node_v1_RuntimeClassList_items_scheduling {doc 'scheduling holds the scheduling constraints to ensure that pods running with this RuntimeClass are scheduled to nodes that support it If scheduling is nil, this RuntimeClass is assumed to be supported by all nodes'}
								optional
									io_k8s_api_node_v1_RuntimeClassList_items_scheduling_nodeSelector cardinality [1..*] {doc 'nodeSelector lists labels that must be present on nodes that support this RuntimeClass Pods using this RuntimeClass can only be scheduled to a node matched by this selector The RuntimeClass nodeSelector is merged with a pod_s existing nodeSelector Any conflicts will cause the pod to be rejected in admission'}
										mandatory
											String io_k8s_api_node_v1_RuntimeClassList_items_scheduling_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_node_v1_RuntimeClassList_items_scheduling_tolerations cardinality [1..*] {doc 'tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass'}
										optional
											io_k8s_api_node_v1_RuntimeClassList_items_scheduling_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
												alternative
													io_k8s_api_node_v1_RuntimeClassList_items_scheduling_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
													io_k8s_api_node_v1_RuntimeClassList_items_scheduling_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
													io_k8s_api_node_v1_RuntimeClassList_items_scheduling_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
											String io_k8s_api_node_v1_RuntimeClassList_items_scheduling_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
											io_k8s_api_node_v1_RuntimeClassList_items_scheduling_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
												alternative
													io_k8s_api_node_v1_RuntimeClassList_items_scheduling_tolerations_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_node_v1_RuntimeClassList_items_scheduling_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
											Integer io_k8s_api_node_v1_RuntimeClassList_items_scheduling_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
											io_k8s_api_node_v1_RuntimeClassList_items_scheduling_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
												mandatory
													String io_k8s_api_node_v1_RuntimeClassList_items_scheduling_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
				optional
					String io_k8s_api_node_v1_RuntimeClassList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_node_v1_RuntimeClassList_kind {default 'RuntimeClassList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_node_v1_RuntimeClassList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_node_v1_RuntimeClassList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_node_v1_RuntimeClassList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_node_v1_RuntimeClassList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_node_v1_RuntimeClassList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_node_v1_Scheduling {doc 'Scheduling specifies the scheduling constraints for nodes supporting a RuntimeClass'}
				optional
					io_k8s_api_node_v1_Scheduling_nodeSelector cardinality [1..*] {doc 'nodeSelector lists labels that must be present on nodes that support this RuntimeClass Pods using this RuntimeClass can only be scheduled to a node matched by this selector The RuntimeClass nodeSelector is merged with a pod_s existing nodeSelector Any conflicts will cause the pod to be rejected in admission'}
						mandatory
							String io_k8s_api_node_v1_Scheduling_nodeSelector_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_node_v1_Scheduling_tolerations cardinality [1..*] {doc 'tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by the pod and the RuntimeClass'}
						optional
							io_k8s_api_node_v1_Scheduling_tolerations_effect {doc 'Effect indicates the taint effect to match Empty means match all taint effects When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute'}
								alternative
									io_k8s_api_node_v1_Scheduling_tolerations_effect_PreferNoSchedule {doc 'Specific value: PreferNoSchedule'}
									io_k8s_api_node_v1_Scheduling_tolerations_effect_NoExecute {doc 'Specific value: NoExecute'}
									io_k8s_api_node_v1_Scheduling_tolerations_effect_NoSchedule {doc 'Specific value: NoSchedule'}
							String io_k8s_api_node_v1_Scheduling_tolerations_key {doc 'Key is the taint key that the toleration applies to Empty means match all taint keys If the key is empty, operator must be Exists; this combination means to match all values and all keys'}
							io_k8s_api_node_v1_Scheduling_tolerations_operator {doc 'Operator represents a key_s relationship to the value Valid operators are Exists and Equal Defaults to Equal Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category'}
								alternative
									io_k8s_api_node_v1_Scheduling_tolerations_operator_Exists {doc 'Specific value: Exists'}
									io_k8s_api_node_v1_Scheduling_tolerations_operator_Equal {default, doc 'Specific value: Equal'}
							Integer io_k8s_api_node_v1_Scheduling_tolerations_tolerationSeconds {doc 'TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint By default, it is not set, which means tolerate the taint forever (do not evict) Zero and negative values will be treated as 0 (evict immediately) by the system'}
							io_k8s_api_node_v1_Scheduling_tolerations_value {abstract, doc 'Value is the taint value the toleration matches to If the operator is Exists, the value should be empty, otherwise just a regular string'}
								mandatory
									String io_k8s_api_node_v1_Scheduling_tolerations_value_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
			io_k8s_api_policy_v1_Eviction {doc 'Eviction evicts a pod from its node subject to certain policies and safety constraints This is a subresource of Pod  A request to cause such an eviction is created by POSTing to /pods/<pod name>/evictions'}
				optional
					String io_k8s_api_policy_v1_Eviction_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					io_k8s_api_policy_v1_Eviction_deleteOptions {doc 'DeleteOptions may be provided'}
						optional
							String io_k8s_api_policy_v1_Eviction_deleteOptions_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							io_k8s_api_policy_v1_Eviction_deleteOptions_dryRun cardinality [1..*] {doc 'When present, indicates that modifications should not be persisted An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request Valid values are: - All: all dry run stages will be processed'}
								mandatory
									String io_k8s_api_policy_v1_Eviction_deleteOptions_dryRun_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							Integer io_k8s_api_policy_v1_Eviction_deleteOptions_gracePeriodSeconds {doc 'The duration in seconds before the object should be deleted Value must be non-negative integer The value zero indicates delete immediately If this value is nil, the default grace period for the specified type will be used Defaults to a per object value if not specified zero means delete immediately'}
							String io_k8s_api_policy_v1_Eviction_deleteOptions_kind {default 'DeleteOptions', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_policy_v1_Eviction_deleteOptions_orphanDependents {doc 'Deprecated: please use the PropagationPolicy, this field will be deprecated in 17 Should the dependent objects be orphaned If true/false, the orphan finalizer will be added to/removed from the object_s finalizers list Either this field or PropagationPolicy may be set, but not both'}
							io_k8s_api_policy_v1_Eviction_deleteOptions_preconditions {doc 'Must be fulfilled before a deletion is carried out If not possible, a 409 Conflict status will be returned'}
								optional
									String io_k8s_api_policy_v1_Eviction_deleteOptions_preconditions_resourceVersion {doc 'Specifies the target ResourceVersion'}
									String io_k8s_api_policy_v1_Eviction_deleteOptions_preconditions_uid {doc 'Specifies the target UID'}
							io_k8s_api_policy_v1_Eviction_deleteOptions_propagationPolicy {doc 'Whether and how garbage collection will be performed Either this field or OrphanDependents may be set, but not both The default policy is decided by the existing finalizer set in the metadatafinalizers and the resource-specific default policy Acceptable values are: _Orphan_ - orphan the dependents; _Background_ - allow the garbage collector to delete the dependents in the background; _Foreground_ - a cascading policy that deletes all dependents in the foreground'}
								alternative
									io_k8s_api_policy_v1_Eviction_deleteOptions_propagationPolicy_Orphan {doc 'Specific value: Orphan'}
									io_k8s_api_policy_v1_Eviction_deleteOptions_propagationPolicy_Foreground {doc 'Specific value: Foreground'}
									io_k8s_api_policy_v1_Eviction_deleteOptions_propagationPolicy_Background {doc 'Specific value: Background'}
					String io_k8s_api_policy_v1_Eviction_kind {default 'Eviction', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_policy_v1_Eviction_metadata {doc 'ObjectMeta describes the pod that is being evicted'}
						optional
							io_k8s_api_policy_v1_Eviction_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_policy_v1_Eviction_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_policy_v1_Eviction_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_policy_v1_Eviction_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_policy_v1_Eviction_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_policy_v1_Eviction_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_policy_v1_Eviction_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_policy_v1_Eviction_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_policy_v1_Eviction_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_policy_v1_Eviction_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_policy_v1_Eviction_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_policy_v1_Eviction_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_policy_v1_Eviction_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_policy_v1_Eviction_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_policy_v1_Eviction_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_policy_v1_Eviction_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_policy_v1_Eviction_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_policy_v1_Eviction_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_policy_v1_Eviction_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_policy_v1_Eviction_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_policy_v1_Eviction_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_policy_v1_Eviction_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_policy_v1_Eviction_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_policy_v1_Eviction_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_policy_v1_Eviction_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_policy_v1_Eviction_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_policy_v1_Eviction_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_policy_v1_Eviction_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_policy_v1_Eviction_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_policy_v1_Eviction_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_policy_v1_Eviction_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_policy_v1_Eviction_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_policy_v1_Eviction_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_policy_v1_Eviction_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_policy_v1_Eviction_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_policy_v1_Eviction_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_policy_v1_Eviction_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_policy_v1_Eviction_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_policy_v1_Eviction_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_policy_v1_Eviction_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_policy_v1_Eviction_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
			io_k8s_api_policy_v1_PodDisruptionBudget {doc 'PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods'}
				optional
					String io_k8s_api_policy_v1_PodDisruptionBudget_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_policy_v1_PodDisruptionBudget_kind {default 'PodDisruptionBudget', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_policy_v1_PodDisruptionBudget_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_policy_v1_PodDisruptionBudget_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_policy_v1_PodDisruptionBudget_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_policy_v1_PodDisruptionBudget_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_policy_v1_PodDisruptionBudget_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_policy_v1_PodDisruptionBudget_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_policy_v1_PodDisruptionBudget_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_policy_v1_PodDisruptionBudget_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_policy_v1_PodDisruptionBudget_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_policy_v1_PodDisruptionBudget_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_policy_v1_PodDisruptionBudget_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_policy_v1_PodDisruptionBudget_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_policy_v1_PodDisruptionBudget_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_policy_v1_PodDisruptionBudget_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_policy_v1_PodDisruptionBudget_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_policy_v1_PodDisruptionBudget_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_policy_v1_PodDisruptionBudget_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_policy_v1_PodDisruptionBudget_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_policy_v1_PodDisruptionBudget_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_policy_v1_PodDisruptionBudget_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_policy_v1_PodDisruptionBudget_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_policy_v1_PodDisruptionBudget_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_policy_v1_PodDisruptionBudget_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_policy_v1_PodDisruptionBudget_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_policy_v1_PodDisruptionBudget_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_policy_v1_PodDisruptionBudget_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_policy_v1_PodDisruptionBudget_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_policy_v1_PodDisruptionBudget_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_policy_v1_PodDisruptionBudget_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_policy_v1_PodDisruptionBudget_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_policy_v1_PodDisruptionBudget_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_policy_v1_PodDisruptionBudget_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_policy_v1_PodDisruptionBudget_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_policy_v1_PodDisruptionBudget_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_policy_v1_PodDisruptionBudget_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_policy_v1_PodDisruptionBudget_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_policy_v1_PodDisruptionBudget_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_policy_v1_PodDisruptionBudget_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_policy_v1_PodDisruptionBudget_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_policy_v1_PodDisruptionBudget_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_policy_v1_PodDisruptionBudget_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_policy_v1_PodDisruptionBudget_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_policy_v1_PodDisruptionBudget_spec {doc 'Specification of the desired behavior of the PodDisruptionBudget'}
						optional
							io_k8s_api_policy_v1_PodDisruptionBudget_spec_maxUnavailable {doc 'An eviction is allowed if at most maxUnavailable pods selected by selector are unavailable after the eviction, ie even in absence of the evicted pod For example, one can prevent all voluntary evictions by specifying 0 This is a mutually exclusive setting with minAvailable'}
								alternative
									String io_k8s_api_policy_v1_PodDisruptionBudget_spec_maxUnavailable_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_policy_v1_PodDisruptionBudget_spec_maxUnavailable_asInteger {doc 'Sub-feature added of type Integer'}
							io_k8s_api_policy_v1_PodDisruptionBudget_spec_minAvailable {doc 'An eviction is allowed if at least minAvailable pods selected by selector will still be available after the eviction, ie even in the absence of the evicted pod  So for example you can prevent all voluntary evictions by specifying 100%'}
								alternative
									String io_k8s_api_policy_v1_PodDisruptionBudget_spec_minAvailable_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_policy_v1_PodDisruptionBudget_spec_minAvailable_asInteger {doc 'Sub-feature added of type Integer'}
							io_k8s_api_policy_v1_PodDisruptionBudget_spec_selector {doc 'Label query over pods whose evictions are managed by the disruption budget A null selector will match no pods, while an empty () selector will select all pods within the namespace'}
								optional
									io_k8s_api_policy_v1_PodDisruptionBudget_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_policy_v1_PodDisruptionBudget_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_policy_v1_PodDisruptionBudget_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_policy_v1_PodDisruptionBudget_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_policy_v1_PodDisruptionBudget_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_policy_v1_PodDisruptionBudget_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_policy_v1_PodDisruptionBudget_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_policy_v1_PodDisruptionBudget_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_policy_v1_PodDisruptionBudget_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_policy_v1_PodDisruptionBudget_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_policy_v1_PodDisruptionBudget_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_policy_v1_PodDisruptionBudget_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_policy_v1_PodDisruptionBudget_spec_unhealthyPodEvictionPolicy {doc 'UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods should be considered for eviction Current implementation considers healthy pods, as pods that have statusconditions item with type=Ready,status=TrueValid policies are IfHealthyBudget and AlwaysAllow If no policy is specified, the default behavior will be used, which corresponds to the IfHealthyBudget policyIfHealthyBudget policy means that running pods (statusphase=Running), but not yet healthy can be evicted only if the guarded application is not disrupted (statuscurrentHealthy is at least equal to statusdesiredHealthy) Healthy pods will be subject to the PDB for evictionAlwaysAllow policy means that all running pods (statusphase=Running), but not yet healthy are considered disrupted and can be evicted regardless of whether the criteria in a PDB is met This means perspective running pods of a disrupted application might not get a chance to become healthy Healthy pods will be subject to the PDB for evictionAdditional policies may be added in the future Clients making eviction decisions should disallow eviction of unhealthy pods if they encounter an unrecognized policy in this fieldThis field is beta-level The eviction API uses this field when the feature gate PDBUnhealthyPodEvictionPolicy is enabled (enabled by default)'}
								alternative
									io_k8s_api_policy_v1_PodDisruptionBudget_spec_unhealthyPodEvictionPolicy_IfHealthyBudget {doc 'Specific value: IfHealthyBudget'}
									io_k8s_api_policy_v1_PodDisruptionBudget_spec_unhealthyPodEvictionPolicy_AlwaysAllow {doc 'Specific value: AlwaysAllow'}
					io_k8s_api_policy_v1_PodDisruptionBudget_status {doc 'Most recently observed status of the PodDisruptionBudget'}
						mandatory
							Integer io_k8s_api_policy_v1_PodDisruptionBudget_status_currentHealthy {doc 'current number of healthy pods'}
							Integer io_k8s_api_policy_v1_PodDisruptionBudget_status_desiredHealthy {doc 'minimum desired number of healthy pods'}
							Integer io_k8s_api_policy_v1_PodDisruptionBudget_status_disruptionsAllowed {doc 'Number of pod disruptions that are currently allowed'}
							Integer io_k8s_api_policy_v1_PodDisruptionBudget_status_expectedPods {doc 'total number of pods counted by this disruption budget'}
						optional
							io_k8s_api_policy_v1_PodDisruptionBudget_status_conditions cardinality [1..*] {doc 'Conditions contain conditions for PDB The disruption controller sets the DisruptionAllowed condition The following are known values for the reason field (additional reasons could be added in the future): - SyncFailed: The controller encountered an error and wasn_t able to compute              the number of allowed disruptions Therefore no disruptions are              allowed and the status of the condition will be False- InsufficientPods: The number of pods are either at or below the number                    required by the PodDisruptionBudget No disruptions are                    allowed and the status of the condition will be False- SufficientPods: There are more pods than required by the PodDisruptionBudget                  The condition will be True, and the number of allowed                  disruptions are provided by the disruptionsAllowed property'}
								mandatory
									io_k8s_api_policy_v1_PodDisruptionBudget_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another This should be when the underlying condition changed  If that is not known, then using the time when the API field changed is acceptable'}
										optional
											String io_k8s_api_policy_v1_PodDisruptionBudget_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_policy_v1_PodDisruptionBudget_status_conditions_message {doc 'message is a human readable message indicating details about the transition This may be an empty string'}
									String io_k8s_api_policy_v1_PodDisruptionBudget_status_conditions_reason {doc 'reason contains a programmatic identifier indicating the reason for the condition_s last transition Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API The value should be a CamelCase string This field may not be empty'}
									io_k8s_api_policy_v1_PodDisruptionBudget_status_conditions_status {doc 'status of the condition, one of True, False, Unknown'}
										alternative
											io_k8s_api_policy_v1_PodDisruptionBudget_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_policy_v1_PodDisruptionBudget_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_policy_v1_PodDisruptionBudget_status_conditions_status_True {doc 'Specific value: True'}
									String io_k8s_api_policy_v1_PodDisruptionBudget_status_conditions_type {doc 'type of condition in CamelCase or in fooexamplecom/CamelCase'}
								optional
									Integer io_k8s_api_policy_v1_PodDisruptionBudget_status_conditions_observedGeneration {doc 'observedGeneration represents the metadatageneration that the condition was set based upon For instance, if metadatageneration is currently 12, but the statusconditions[x]observedGeneration is 9, the condition is out of date with respect to the current state of the instance'}
							io_k8s_api_policy_v1_PodDisruptionBudget_status_disruptedPods cardinality [1..*] {doc 'DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout) The key in the map is the name of the pod and the value is the time when the API server processed the eviction request If the deletion didn_t occur and a pod is still there it will be removed from the list automatically by PodDisruptionBudget controller after some time If everything goes smooth this map should be empty for the most of the time Large number of entries in the map may indicate problems with pod deletions'}
								optional
									io_k8s_api_policy_v1_PodDisruptionBudget_status_disruptedPods_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							Integer io_k8s_api_policy_v1_PodDisruptionBudget_status_observedGeneration {doc 'Most recent generation observed when updating this PDB status DisruptionsAllowed and other status information is valid only if observedGeneration equals to PDB_s object generation'}
			io_k8s_api_policy_v1_PodDisruptionBudgetList {doc 'PodDisruptionBudgetList is a collection of PodDisruptionBudgets'}
				mandatory
					io_k8s_api_policy_v1_PodDisruptionBudgetList_items cardinality [1..*] {doc 'Items is a list of PodDisruptionBudgets'}
						optional
							String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_kind {default 'PodDisruptionBudget', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec {doc 'Specification of the desired behavior of the PodDisruptionBudget'}
								optional
									io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_maxUnavailable {doc 'An eviction is allowed if at most maxUnavailable pods selected by selector are unavailable after the eviction, ie even in absence of the evicted pod For example, one can prevent all voluntary evictions by specifying 0 This is a mutually exclusive setting with minAvailable'}
										alternative
											String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_maxUnavailable_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_maxUnavailable_asInteger {doc 'Sub-feature added of type Integer'}
									io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_minAvailable {doc 'An eviction is allowed if at least minAvailable pods selected by selector will still be available after the eviction, ie even in the absence of the evicted pod  So for example you can prevent all voluntary evictions by specifying 100%'}
										alternative
											String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_minAvailable_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_minAvailable_asInteger {doc 'Sub-feature added of type Integer'}
									io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_selector {doc 'Label query over pods whose evictions are managed by the disruption budget A null selector will match no pods, while an empty () selector will select all pods within the namespace'}
										optional
											io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_unhealthyPodEvictionPolicy {doc 'UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods should be considered for eviction Current implementation considers healthy pods, as pods that have statusconditions item with type=Ready,status=TrueValid policies are IfHealthyBudget and AlwaysAllow If no policy is specified, the default behavior will be used, which corresponds to the IfHealthyBudget policyIfHealthyBudget policy means that running pods (statusphase=Running), but not yet healthy can be evicted only if the guarded application is not disrupted (statuscurrentHealthy is at least equal to statusdesiredHealthy) Healthy pods will be subject to the PDB for evictionAlwaysAllow policy means that all running pods (statusphase=Running), but not yet healthy are considered disrupted and can be evicted regardless of whether the criteria in a PDB is met This means perspective running pods of a disrupted application might not get a chance to become healthy Healthy pods will be subject to the PDB for evictionAdditional policies may be added in the future Clients making eviction decisions should disallow eviction of unhealthy pods if they encounter an unrecognized policy in this fieldThis field is beta-level The eviction API uses this field when the feature gate PDBUnhealthyPodEvictionPolicy is enabled (enabled by default)'}
										alternative
											io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_unhealthyPodEvictionPolicy_IfHealthyBudget {doc 'Specific value: IfHealthyBudget'}
											io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_unhealthyPodEvictionPolicy_AlwaysAllow {doc 'Specific value: AlwaysAllow'}
							io_k8s_api_policy_v1_PodDisruptionBudgetList_items_status {doc 'Most recently observed status of the PodDisruptionBudget'}
								mandatory
									Integer io_k8s_api_policy_v1_PodDisruptionBudgetList_items_status_currentHealthy {doc 'current number of healthy pods'}
									Integer io_k8s_api_policy_v1_PodDisruptionBudgetList_items_status_desiredHealthy {doc 'minimum desired number of healthy pods'}
									Integer io_k8s_api_policy_v1_PodDisruptionBudgetList_items_status_disruptionsAllowed {doc 'Number of pod disruptions that are currently allowed'}
									Integer io_k8s_api_policy_v1_PodDisruptionBudgetList_items_status_expectedPods {doc 'total number of pods counted by this disruption budget'}
								optional
									io_k8s_api_policy_v1_PodDisruptionBudgetList_items_status_conditions cardinality [1..*] {doc 'Conditions contain conditions for PDB The disruption controller sets the DisruptionAllowed condition The following are known values for the reason field (additional reasons could be added in the future): - SyncFailed: The controller encountered an error and wasn_t able to compute              the number of allowed disruptions Therefore no disruptions are              allowed and the status of the condition will be False- InsufficientPods: The number of pods are either at or below the number                    required by the PodDisruptionBudget No disruptions are                    allowed and the status of the condition will be False- SufficientPods: There are more pods than required by the PodDisruptionBudget                  The condition will be True, and the number of allowed                  disruptions are provided by the disruptionsAllowed property'}
										mandatory
											io_k8s_api_policy_v1_PodDisruptionBudgetList_items_status_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another This should be when the underlying condition changed  If that is not known, then using the time when the API field changed is acceptable'}
												optional
													String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_status_conditions_message {doc 'message is a human readable message indicating details about the transition This may be an empty string'}
											String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_status_conditions_reason {doc 'reason contains a programmatic identifier indicating the reason for the condition_s last transition Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API The value should be a CamelCase string This field may not be empty'}
											io_k8s_api_policy_v1_PodDisruptionBudgetList_items_status_conditions_status {doc 'status of the condition, one of True, False, Unknown'}
												alternative
													io_k8s_api_policy_v1_PodDisruptionBudgetList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_api_policy_v1_PodDisruptionBudgetList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_api_policy_v1_PodDisruptionBudgetList_items_status_conditions_status_True {doc 'Specific value: True'}
											String io_k8s_api_policy_v1_PodDisruptionBudgetList_items_status_conditions_type {doc 'type of condition in CamelCase or in fooexamplecom/CamelCase'}
										optional
											Integer io_k8s_api_policy_v1_PodDisruptionBudgetList_items_status_conditions_observedGeneration {doc 'observedGeneration represents the metadatageneration that the condition was set based upon For instance, if metadatageneration is currently 12, but the statusconditions[x]observedGeneration is 9, the condition is out of date with respect to the current state of the instance'}
									io_k8s_api_policy_v1_PodDisruptionBudgetList_items_status_disruptedPods cardinality [1..*] {doc 'DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout) The key in the map is the name of the pod and the value is the time when the API server processed the eviction request If the deletion didn_t occur and a pod is still there it will be removed from the list automatically by PodDisruptionBudget controller after some time If everything goes smooth this map should be empty for the most of the time Large number of entries in the map may indicate problems with pod deletions'}
										optional
											io_k8s_api_policy_v1_PodDisruptionBudgetList_items_status_disruptedPods_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									Integer io_k8s_api_policy_v1_PodDisruptionBudgetList_items_status_observedGeneration {doc 'Most recent generation observed when updating this PDB status DisruptionsAllowed and other status information is valid only if observedGeneration equals to PDB_s object generation'}
				optional
					String io_k8s_api_policy_v1_PodDisruptionBudgetList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_policy_v1_PodDisruptionBudgetList_kind {default 'PodDisruptionBudgetList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_policy_v1_PodDisruptionBudgetList_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_policy_v1_PodDisruptionBudgetList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_policy_v1_PodDisruptionBudgetList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_policy_v1_PodDisruptionBudgetList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_policy_v1_PodDisruptionBudgetList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_policy_v1_PodDisruptionBudgetSpec {doc 'PodDisruptionBudgetSpec is a description of a PodDisruptionBudget'}
				optional
					io_k8s_api_policy_v1_PodDisruptionBudgetSpec_maxUnavailable {doc 'An eviction is allowed if at most maxUnavailable pods selected by selector are unavailable after the eviction, ie even in absence of the evicted pod For example, one can prevent all voluntary evictions by specifying 0 This is a mutually exclusive setting with minAvailable'}
						alternative
							String io_k8s_api_policy_v1_PodDisruptionBudgetSpec_maxUnavailable_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_policy_v1_PodDisruptionBudgetSpec_maxUnavailable_asInteger {doc 'Sub-feature added of type Integer'}
					io_k8s_api_policy_v1_PodDisruptionBudgetSpec_minAvailable {doc 'An eviction is allowed if at least minAvailable pods selected by selector will still be available after the eviction, ie even in the absence of the evicted pod  So for example you can prevent all voluntary evictions by specifying 100%'}
						alternative
							String io_k8s_api_policy_v1_PodDisruptionBudgetSpec_minAvailable_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_policy_v1_PodDisruptionBudgetSpec_minAvailable_asInteger {doc 'Sub-feature added of type Integer'}
					io_k8s_api_policy_v1_PodDisruptionBudgetSpec_selector {doc 'Label query over pods whose evictions are managed by the disruption budget A null selector will match no pods, while an empty () selector will select all pods within the namespace'}
						optional
							io_k8s_api_policy_v1_PodDisruptionBudgetSpec_selector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_policy_v1_PodDisruptionBudgetSpec_selector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_policy_v1_PodDisruptionBudgetSpec_selector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_policy_v1_PodDisruptionBudgetSpec_selector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_policy_v1_PodDisruptionBudgetSpec_selector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_policy_v1_PodDisruptionBudgetSpec_selector_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_policy_v1_PodDisruptionBudgetSpec_selector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_policy_v1_PodDisruptionBudgetSpec_selector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_policy_v1_PodDisruptionBudgetSpec_selector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_policy_v1_PodDisruptionBudgetSpec_selector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_policy_v1_PodDisruptionBudgetSpec_selector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_policy_v1_PodDisruptionBudgetSpec_selector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_api_policy_v1_PodDisruptionBudgetSpec_unhealthyPodEvictionPolicy {doc 'UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods should be considered for eviction Current implementation considers healthy pods, as pods that have statusconditions item with type=Ready,status=TrueValid policies are IfHealthyBudget and AlwaysAllow If no policy is specified, the default behavior will be used, which corresponds to the IfHealthyBudget policyIfHealthyBudget policy means that running pods (statusphase=Running), but not yet healthy can be evicted only if the guarded application is not disrupted (statuscurrentHealthy is at least equal to statusdesiredHealthy) Healthy pods will be subject to the PDB for evictionAlwaysAllow policy means that all running pods (statusphase=Running), but not yet healthy are considered disrupted and can be evicted regardless of whether the criteria in a PDB is met This means perspective running pods of a disrupted application might not get a chance to become healthy Healthy pods will be subject to the PDB for evictionAdditional policies may be added in the future Clients making eviction decisions should disallow eviction of unhealthy pods if they encounter an unrecognized policy in this fieldThis field is beta-level The eviction API uses this field when the feature gate PDBUnhealthyPodEvictionPolicy is enabled (enabled by default)'}
						alternative
							io_k8s_api_policy_v1_PodDisruptionBudgetSpec_unhealthyPodEvictionPolicy_IfHealthyBudget {doc 'Specific value: IfHealthyBudget'}
							io_k8s_api_policy_v1_PodDisruptionBudgetSpec_unhealthyPodEvictionPolicy_AlwaysAllow {doc 'Specific value: AlwaysAllow'}
			io_k8s_api_policy_v1_PodDisruptionBudgetStatus {doc 'PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget Status may trail the actual state of a system'}
				mandatory
					Integer io_k8s_api_policy_v1_PodDisruptionBudgetStatus_currentHealthy {doc 'current number of healthy pods'}
					Integer io_k8s_api_policy_v1_PodDisruptionBudgetStatus_desiredHealthy {doc 'minimum desired number of healthy pods'}
					Integer io_k8s_api_policy_v1_PodDisruptionBudgetStatus_disruptionsAllowed {doc 'Number of pod disruptions that are currently allowed'}
					Integer io_k8s_api_policy_v1_PodDisruptionBudgetStatus_expectedPods {doc 'total number of pods counted by this disruption budget'}
				optional
					io_k8s_api_policy_v1_PodDisruptionBudgetStatus_conditions cardinality [1..*] {doc 'Conditions contain conditions for PDB The disruption controller sets the DisruptionAllowed condition The following are known values for the reason field (additional reasons could be added in the future): - SyncFailed: The controller encountered an error and wasn_t able to compute              the number of allowed disruptions Therefore no disruptions are              allowed and the status of the condition will be False- InsufficientPods: The number of pods are either at or below the number                    required by the PodDisruptionBudget No disruptions are                    allowed and the status of the condition will be False- SufficientPods: There are more pods than required by the PodDisruptionBudget                  The condition will be True, and the number of allowed                  disruptions are provided by the disruptionsAllowed property'}
						mandatory
							io_k8s_api_policy_v1_PodDisruptionBudgetStatus_conditions_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another This should be when the underlying condition changed  If that is not known, then using the time when the API field changed is acceptable'}
								optional
									String io_k8s_api_policy_v1_PodDisruptionBudgetStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_policy_v1_PodDisruptionBudgetStatus_conditions_message {doc 'message is a human readable message indicating details about the transition This may be an empty string'}
							String io_k8s_api_policy_v1_PodDisruptionBudgetStatus_conditions_reason {doc 'reason contains a programmatic identifier indicating the reason for the condition_s last transition Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API The value should be a CamelCase string This field may not be empty'}
							io_k8s_api_policy_v1_PodDisruptionBudgetStatus_conditions_status {doc 'status of the condition, one of True, False, Unknown'}
								alternative
									io_k8s_api_policy_v1_PodDisruptionBudgetStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_policy_v1_PodDisruptionBudgetStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_policy_v1_PodDisruptionBudgetStatus_conditions_status_True {doc 'Specific value: True'}
							String io_k8s_api_policy_v1_PodDisruptionBudgetStatus_conditions_type {doc 'type of condition in CamelCase or in fooexamplecom/CamelCase'}
						optional
							Integer io_k8s_api_policy_v1_PodDisruptionBudgetStatus_conditions_observedGeneration {doc 'observedGeneration represents the metadatageneration that the condition was set based upon For instance, if metadatageneration is currently 12, but the statusconditions[x]observedGeneration is 9, the condition is out of date with respect to the current state of the instance'}
					io_k8s_api_policy_v1_PodDisruptionBudgetStatus_disruptedPods cardinality [1..*] {doc 'DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout) The key in the map is the name of the pod and the value is the time when the API server processed the eviction request If the deletion didn_t occur and a pod is still there it will be removed from the list automatically by PodDisruptionBudget controller after some time If everything goes smooth this map should be empty for the most of the time Large number of entries in the map may indicate problems with pod deletions'}
						optional
							io_k8s_api_policy_v1_PodDisruptionBudgetStatus_disruptedPods_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					Integer io_k8s_api_policy_v1_PodDisruptionBudgetStatus_observedGeneration {doc 'Most recent generation observed when updating this PDB status DisruptionsAllowed and other status information is valid only if observedGeneration equals to PDB_s object generation'}
			io_k8s_api_rbac_v1_AggregationRule {doc 'AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole'}
				optional
					io_k8s_api_rbac_v1_AggregationRule_clusterRoleSelectors cardinality [1..*] {doc 'ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules If any of the selectors match, then the ClusterRole_s permissions will be added'}
						optional
							io_k8s_api_rbac_v1_AggregationRule_clusterRoleSelectors_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_rbac_v1_AggregationRule_clusterRoleSelectors_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_rbac_v1_AggregationRule_clusterRoleSelectors_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_rbac_v1_AggregationRule_clusterRoleSelectors_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_rbac_v1_AggregationRule_clusterRoleSelectors_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_rbac_v1_AggregationRule_clusterRoleSelectors_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_rbac_v1_AggregationRule_clusterRoleSelectors_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_rbac_v1_AggregationRule_clusterRoleSelectors_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_rbac_v1_AggregationRule_clusterRoleSelectors_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_rbac_v1_AggregationRule_clusterRoleSelectors_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_rbac_v1_AggregationRule_clusterRoleSelectors_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_rbac_v1_AggregationRule_clusterRoleSelectors_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
			io_k8s_api_rbac_v1_ClusterRole {doc 'ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding'}
				optional
					io_k8s_api_rbac_v1_ClusterRole_aggregationRule {doc 'AggregationRule is an optional field that describes how to build the Rules for this ClusterRole If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller'}
						optional
							io_k8s_api_rbac_v1_ClusterRole_aggregationRule_clusterRoleSelectors cardinality [1..*] {doc 'ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules If any of the selectors match, then the ClusterRole_s permissions will be added'}
								optional
									io_k8s_api_rbac_v1_ClusterRole_aggregationRule_clusterRoleSelectors_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_rbac_v1_ClusterRole_aggregationRule_clusterRoleSelectors_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_rbac_v1_ClusterRole_aggregationRule_clusterRoleSelectors_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_rbac_v1_ClusterRole_aggregationRule_clusterRoleSelectors_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_rbac_v1_ClusterRole_aggregationRule_clusterRoleSelectors_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_rbac_v1_ClusterRole_aggregationRule_clusterRoleSelectors_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_rbac_v1_ClusterRole_aggregationRule_clusterRoleSelectors_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_rbac_v1_ClusterRole_aggregationRule_clusterRoleSelectors_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_rbac_v1_ClusterRole_aggregationRule_clusterRoleSelectors_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_rbac_v1_ClusterRole_aggregationRule_clusterRoleSelectors_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_rbac_v1_ClusterRole_aggregationRule_clusterRoleSelectors_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_rbac_v1_ClusterRole_aggregationRule_clusterRoleSelectors_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					String io_k8s_api_rbac_v1_ClusterRole_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_rbac_v1_ClusterRole_kind {default 'ClusterRole', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_rbac_v1_ClusterRole_metadata {doc 'Standard object_s metadata'}
						optional
							io_k8s_api_rbac_v1_ClusterRole_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_rbac_v1_ClusterRole_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_rbac_v1_ClusterRole_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_rbac_v1_ClusterRole_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_rbac_v1_ClusterRole_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_rbac_v1_ClusterRole_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_rbac_v1_ClusterRole_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_rbac_v1_ClusterRole_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_rbac_v1_ClusterRole_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_rbac_v1_ClusterRole_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_rbac_v1_ClusterRole_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_rbac_v1_ClusterRole_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_rbac_v1_ClusterRole_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_rbac_v1_ClusterRole_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_rbac_v1_ClusterRole_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_rbac_v1_ClusterRole_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_rbac_v1_ClusterRole_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_rbac_v1_ClusterRole_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_rbac_v1_ClusterRole_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_rbac_v1_ClusterRole_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_rbac_v1_ClusterRole_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_rbac_v1_ClusterRole_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_rbac_v1_ClusterRole_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_rbac_v1_ClusterRole_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_rbac_v1_ClusterRole_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_rbac_v1_ClusterRole_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_rbac_v1_ClusterRole_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_rbac_v1_ClusterRole_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_rbac_v1_ClusterRole_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_rbac_v1_ClusterRole_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_rbac_v1_ClusterRole_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_rbac_v1_ClusterRole_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_rbac_v1_ClusterRole_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_rbac_v1_ClusterRole_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_rbac_v1_ClusterRole_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_rbac_v1_ClusterRole_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_rbac_v1_ClusterRole_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_rbac_v1_ClusterRole_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_rbac_v1_ClusterRole_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_rbac_v1_ClusterRole_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_rbac_v1_ClusterRole_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_rbac_v1_ClusterRole_rules cardinality [1..*] {doc 'Rules holds all the PolicyRules for this ClusterRole'}
						mandatory
							io_k8s_api_rbac_v1_ClusterRole_rules_verbs cardinality [1..*] {doc 'Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule _*_ represents all verbs'}
								mandatory
									String io_k8s_api_rbac_v1_ClusterRole_rules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							io_k8s_api_rbac_v1_ClusterRole_rules_apiGroups cardinality [1..*] {doc 'APIGroups is the name of the APIGroup that contains the resources  If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed  represents the core API group and * represents all API groups'}
								mandatory
									String io_k8s_api_rbac_v1_ClusterRole_rules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_rbac_v1_ClusterRole_rules_nonResourceURLs cardinality [1..*] {doc 'NonResourceURLs is a set of partial urls that a user should have access to  *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding Rules can either apply to API resources (such as pods or secrets) or non-resource URL paths (such as /api),  but not both'}
								mandatory
									String io_k8s_api_rbac_v1_ClusterRole_rules_nonResourceURLs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_rbac_v1_ClusterRole_rules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
								mandatory
									String io_k8s_api_rbac_v1_ClusterRole_rules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_rbac_v1_ClusterRole_rules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies to _*_ represents all resources'}
								mandatory
									String io_k8s_api_rbac_v1_ClusterRole_rules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_rbac_v1_ClusterRoleBinding {doc 'ClusterRoleBinding references a ClusterRole, but not contain it  It can reference a ClusterRole in the global namespace, and adds who information via Subject'}
				mandatory
					io_k8s_api_rbac_v1_ClusterRoleBinding_roleRef {doc 'RoleRef can only reference a ClusterRole in the global namespace If the RoleRef cannot be resolved, the Authorizer must return an error This field is immutable'}
						mandatory
							String io_k8s_api_rbac_v1_ClusterRoleBinding_roleRef_apiGroup {doc 'APIGroup is the group for the resource being referenced'}
							String io_k8s_api_rbac_v1_ClusterRoleBinding_roleRef_kind {doc 'Kind is the type of resource being referenced'}
							String io_k8s_api_rbac_v1_ClusterRoleBinding_roleRef_name {doc 'Name is the name of resource being referenced'}
				optional
					String io_k8s_api_rbac_v1_ClusterRoleBinding_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_rbac_v1_ClusterRoleBinding_kind {default 'ClusterRoleBinding', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_rbac_v1_ClusterRoleBinding_metadata {doc 'Standard object_s metadata'}
						optional
							io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_rbac_v1_ClusterRoleBinding_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_rbac_v1_ClusterRoleBinding_subjects cardinality [1..*] {doc 'Subjects holds references to the objects the role applies to'}
						mandatory
							io_k8s_api_rbac_v1_ClusterRoleBinding_subjects_kind {doc 'Kind of object being referenced Values defined by this API group are User, Group, and ServiceAccount If the Authorizer does not recognized the kind value, the Authorizer should report an error'}
								alternative
									io_k8s_api_rbac_v1_ClusterRoleBinding_subjects_kind_User {doc 'Specific value: User'}
									io_k8s_api_rbac_v1_ClusterRoleBinding_subjects_kind_ServiceAccount {doc 'Specific value: ServiceAccount'}
									io_k8s_api_rbac_v1_ClusterRoleBinding_subjects_kind_Group {doc 'Specific value: Group'}
							String io_k8s_api_rbac_v1_ClusterRoleBinding_subjects_name {doc 'Name of the object being referenced'}
						optional
							String io_k8s_api_rbac_v1_ClusterRoleBinding_subjects_apiGroup {doc 'APIGroup holds the API group of the referenced subject Defaults to  for ServiceAccount subjects Defaults to rbacauthorizationk8sio for User and Group subjects'}
							String io_k8s_api_rbac_v1_ClusterRoleBinding_subjects_namespace {doc 'Namespace of the referenced object  If the object kind is non-namespace, such as User or Group, and this value is not empty the Authorizer should report an error'}
			io_k8s_api_rbac_v1_ClusterRoleBindingList {doc 'ClusterRoleBindingList is a collection of ClusterRoleBindings'}
				mandatory
					io_k8s_api_rbac_v1_ClusterRoleBindingList_items cardinality [1..*] {doc 'Items is a list of ClusterRoleBindings'}
						mandatory
							io_k8s_api_rbac_v1_ClusterRoleBindingList_items_roleRef {doc 'RoleRef can only reference a ClusterRole in the global namespace If the RoleRef cannot be resolved, the Authorizer must return an error This field is immutable'}
								mandatory
									String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_roleRef_apiGroup {doc 'APIGroup is the group for the resource being referenced'}
									String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_roleRef_kind {doc 'Kind is the type of resource being referenced'}
									String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_roleRef_name {doc 'Name is the name of resource being referenced'}
						optional
							String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_kind {default 'ClusterRoleBinding', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata {doc 'Standard object_s metadata'}
								optional
									io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_rbac_v1_ClusterRoleBindingList_items_subjects cardinality [1..*] {doc 'Subjects holds references to the objects the role applies to'}
								mandatory
									io_k8s_api_rbac_v1_ClusterRoleBindingList_items_subjects_kind {doc 'Kind of object being referenced Values defined by this API group are User, Group, and ServiceAccount If the Authorizer does not recognized the kind value, the Authorizer should report an error'}
										alternative
											io_k8s_api_rbac_v1_ClusterRoleBindingList_items_subjects_kind_User {doc 'Specific value: User'}
											io_k8s_api_rbac_v1_ClusterRoleBindingList_items_subjects_kind_ServiceAccount {doc 'Specific value: ServiceAccount'}
											io_k8s_api_rbac_v1_ClusterRoleBindingList_items_subjects_kind_Group {doc 'Specific value: Group'}
									String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_subjects_name {doc 'Name of the object being referenced'}
								optional
									String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_subjects_apiGroup {doc 'APIGroup holds the API group of the referenced subject Defaults to  for ServiceAccount subjects Defaults to rbacauthorizationk8sio for User and Group subjects'}
									String io_k8s_api_rbac_v1_ClusterRoleBindingList_items_subjects_namespace {doc 'Namespace of the referenced object  If the object kind is non-namespace, such as User or Group, and this value is not empty the Authorizer should report an error'}
				optional
					String io_k8s_api_rbac_v1_ClusterRoleBindingList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_rbac_v1_ClusterRoleBindingList_kind {default 'ClusterRoleBindingList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_rbac_v1_ClusterRoleBindingList_metadata {doc 'Standard object_s metadata'}
						optional
							String io_k8s_api_rbac_v1_ClusterRoleBindingList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_rbac_v1_ClusterRoleBindingList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_rbac_v1_ClusterRoleBindingList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_rbac_v1_ClusterRoleBindingList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_rbac_v1_ClusterRoleList {doc 'ClusterRoleList is a collection of ClusterRoles'}
				mandatory
					io_k8s_api_rbac_v1_ClusterRoleList_items cardinality [1..*] {doc 'Items is a list of ClusterRoles'}
						optional
							io_k8s_api_rbac_v1_ClusterRoleList_items_aggregationRule {doc 'AggregationRule is an optional field that describes how to build the Rules for this ClusterRole If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller'}
								optional
									io_k8s_api_rbac_v1_ClusterRoleList_items_aggregationRule_clusterRoleSelectors cardinality [1..*] {doc 'ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules If any of the selectors match, then the ClusterRole_s permissions will be added'}
										optional
											io_k8s_api_rbac_v1_ClusterRoleList_items_aggregationRule_clusterRoleSelectors_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
												mandatory
													String io_k8s_api_rbac_v1_ClusterRoleList_items_aggregationRule_clusterRoleSelectors_matchExpressions_key {doc 'key is the label key that the selector applies to'}
													io_k8s_api_rbac_v1_ClusterRoleList_items_aggregationRule_clusterRoleSelectors_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
														alternative
															io_k8s_api_rbac_v1_ClusterRoleList_items_aggregationRule_clusterRoleSelectors_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_rbac_v1_ClusterRoleList_items_aggregationRule_clusterRoleSelectors_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_rbac_v1_ClusterRoleList_items_aggregationRule_clusterRoleSelectors_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_rbac_v1_ClusterRoleList_items_aggregationRule_clusterRoleSelectors_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_rbac_v1_ClusterRoleList_items_aggregationRule_clusterRoleSelectors_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_rbac_v1_ClusterRoleList_items_aggregationRule_clusterRoleSelectors_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_rbac_v1_ClusterRoleList_items_aggregationRule_clusterRoleSelectors_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
												mandatory
													String io_k8s_api_rbac_v1_ClusterRoleList_items_aggregationRule_clusterRoleSelectors_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_rbac_v1_ClusterRoleList_items_aggregationRule_clusterRoleSelectors_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							String io_k8s_api_rbac_v1_ClusterRoleList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_rbac_v1_ClusterRoleList_items_kind {default 'ClusterRole', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_rbac_v1_ClusterRoleList_items_metadata {doc 'Standard object_s metadata'}
								optional
									io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_rbac_v1_ClusterRoleList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_rbac_v1_ClusterRoleList_items_rules cardinality [1..*] {doc 'Rules holds all the PolicyRules for this ClusterRole'}
								mandatory
									io_k8s_api_rbac_v1_ClusterRoleList_items_rules_verbs cardinality [1..*] {doc 'Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule _*_ represents all verbs'}
										mandatory
											String io_k8s_api_rbac_v1_ClusterRoleList_items_rules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_rbac_v1_ClusterRoleList_items_rules_apiGroups cardinality [1..*] {doc 'APIGroups is the name of the APIGroup that contains the resources  If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed  represents the core API group and * represents all API groups'}
										mandatory
											String io_k8s_api_rbac_v1_ClusterRoleList_items_rules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_rbac_v1_ClusterRoleList_items_rules_nonResourceURLs cardinality [1..*] {doc 'NonResourceURLs is a set of partial urls that a user should have access to  *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding Rules can either apply to API resources (such as pods or secrets) or non-resource URL paths (such as /api),  but not both'}
										mandatory
											String io_k8s_api_rbac_v1_ClusterRoleList_items_rules_nonResourceURLs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_rbac_v1_ClusterRoleList_items_rules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
										mandatory
											String io_k8s_api_rbac_v1_ClusterRoleList_items_rules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_rbac_v1_ClusterRoleList_items_rules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies to _*_ represents all resources'}
										mandatory
											String io_k8s_api_rbac_v1_ClusterRoleList_items_rules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					String io_k8s_api_rbac_v1_ClusterRoleList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_rbac_v1_ClusterRoleList_kind {default 'ClusterRoleList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_rbac_v1_ClusterRoleList_metadata {doc 'Standard object_s metadata'}
						optional
							String io_k8s_api_rbac_v1_ClusterRoleList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_rbac_v1_ClusterRoleList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_rbac_v1_ClusterRoleList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_rbac_v1_ClusterRoleList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_rbac_v1_PolicyRule {doc 'PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to'}
				mandatory
					io_k8s_api_rbac_v1_PolicyRule_verbs cardinality [1..*] {doc 'Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule _*_ represents all verbs'}
						mandatory
							String io_k8s_api_rbac_v1_PolicyRule_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					io_k8s_api_rbac_v1_PolicyRule_apiGroups cardinality [1..*] {doc 'APIGroups is the name of the APIGroup that contains the resources  If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed  represents the core API group and * represents all API groups'}
						mandatory
							String io_k8s_api_rbac_v1_PolicyRule_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_rbac_v1_PolicyRule_nonResourceURLs cardinality [1..*] {doc 'NonResourceURLs is a set of partial urls that a user should have access to  *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding Rules can either apply to API resources (such as pods or secrets) or non-resource URL paths (such as /api),  but not both'}
						mandatory
							String io_k8s_api_rbac_v1_PolicyRule_nonResourceURLs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_rbac_v1_PolicyRule_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
						mandatory
							String io_k8s_api_rbac_v1_PolicyRule_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_rbac_v1_PolicyRule_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies to _*_ represents all resources'}
						mandatory
							String io_k8s_api_rbac_v1_PolicyRule_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_rbac_v1_Role {doc 'Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding'}
				optional
					String io_k8s_api_rbac_v1_Role_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_rbac_v1_Role_kind {default 'Role', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_rbac_v1_Role_metadata {doc 'Standard object_s metadata'}
						optional
							io_k8s_api_rbac_v1_Role_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_rbac_v1_Role_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_rbac_v1_Role_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_rbac_v1_Role_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_rbac_v1_Role_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_rbac_v1_Role_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_rbac_v1_Role_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_rbac_v1_Role_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_rbac_v1_Role_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_rbac_v1_Role_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_rbac_v1_Role_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_rbac_v1_Role_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_rbac_v1_Role_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_rbac_v1_Role_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_rbac_v1_Role_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_rbac_v1_Role_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_rbac_v1_Role_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_rbac_v1_Role_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_rbac_v1_Role_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_rbac_v1_Role_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_rbac_v1_Role_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_rbac_v1_Role_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_rbac_v1_Role_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_rbac_v1_Role_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_rbac_v1_Role_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_rbac_v1_Role_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_rbac_v1_Role_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_rbac_v1_Role_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_rbac_v1_Role_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_rbac_v1_Role_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_rbac_v1_Role_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_rbac_v1_Role_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_rbac_v1_Role_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_rbac_v1_Role_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_rbac_v1_Role_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_rbac_v1_Role_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_rbac_v1_Role_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_rbac_v1_Role_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_rbac_v1_Role_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_rbac_v1_Role_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_rbac_v1_Role_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_rbac_v1_Role_rules cardinality [1..*] {doc 'Rules holds all the PolicyRules for this Role'}
						mandatory
							io_k8s_api_rbac_v1_Role_rules_verbs cardinality [1..*] {doc 'Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule _*_ represents all verbs'}
								mandatory
									String io_k8s_api_rbac_v1_Role_rules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							io_k8s_api_rbac_v1_Role_rules_apiGroups cardinality [1..*] {doc 'APIGroups is the name of the APIGroup that contains the resources  If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed  represents the core API group and * represents all API groups'}
								mandatory
									String io_k8s_api_rbac_v1_Role_rules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_rbac_v1_Role_rules_nonResourceURLs cardinality [1..*] {doc 'NonResourceURLs is a set of partial urls that a user should have access to  *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding Rules can either apply to API resources (such as pods or secrets) or non-resource URL paths (such as /api),  but not both'}
								mandatory
									String io_k8s_api_rbac_v1_Role_rules_nonResourceURLs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_rbac_v1_Role_rules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
								mandatory
									String io_k8s_api_rbac_v1_Role_rules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_rbac_v1_Role_rules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies to _*_ represents all resources'}
								mandatory
									String io_k8s_api_rbac_v1_Role_rules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_rbac_v1_RoleBinding {doc 'RoleBinding references a role, but does not contain it  It can reference a Role in the same namespace or a ClusterRole in the global namespace It adds who information via Subjects and namespace information by which namespace it exists in  RoleBindings in a given namespace only have effect in that namespace'}
				mandatory
					io_k8s_api_rbac_v1_RoleBinding_roleRef {doc 'RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace If the RoleRef cannot be resolved, the Authorizer must return an error This field is immutable'}
						mandatory
							String io_k8s_api_rbac_v1_RoleBinding_roleRef_apiGroup {doc 'APIGroup is the group for the resource being referenced'}
							String io_k8s_api_rbac_v1_RoleBinding_roleRef_kind {doc 'Kind is the type of resource being referenced'}
							String io_k8s_api_rbac_v1_RoleBinding_roleRef_name {doc 'Name is the name of resource being referenced'}
				optional
					String io_k8s_api_rbac_v1_RoleBinding_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_rbac_v1_RoleBinding_kind {default 'RoleBinding', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_rbac_v1_RoleBinding_metadata {doc 'Standard object_s metadata'}
						optional
							io_k8s_api_rbac_v1_RoleBinding_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_rbac_v1_RoleBinding_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_rbac_v1_RoleBinding_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_rbac_v1_RoleBinding_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_rbac_v1_RoleBinding_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_rbac_v1_RoleBinding_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_rbac_v1_RoleBinding_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_rbac_v1_RoleBinding_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_rbac_v1_RoleBinding_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_rbac_v1_RoleBinding_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_rbac_v1_RoleBinding_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_rbac_v1_RoleBinding_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_rbac_v1_RoleBinding_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_rbac_v1_RoleBinding_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_rbac_v1_RoleBinding_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_rbac_v1_RoleBinding_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_rbac_v1_RoleBinding_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_rbac_v1_RoleBinding_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_rbac_v1_RoleBinding_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_rbac_v1_RoleBinding_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_rbac_v1_RoleBinding_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_rbac_v1_RoleBinding_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_rbac_v1_RoleBinding_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_rbac_v1_RoleBinding_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_rbac_v1_RoleBinding_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_rbac_v1_RoleBinding_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_rbac_v1_RoleBinding_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_rbac_v1_RoleBinding_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_rbac_v1_RoleBinding_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_rbac_v1_RoleBinding_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_rbac_v1_RoleBinding_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_rbac_v1_RoleBinding_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_rbac_v1_RoleBinding_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_rbac_v1_RoleBinding_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_rbac_v1_RoleBinding_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_rbac_v1_RoleBinding_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_rbac_v1_RoleBinding_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_rbac_v1_RoleBinding_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_rbac_v1_RoleBinding_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_rbac_v1_RoleBinding_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_rbac_v1_RoleBinding_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_rbac_v1_RoleBinding_subjects cardinality [1..*] {doc 'Subjects holds references to the objects the role applies to'}
						mandatory
							io_k8s_api_rbac_v1_RoleBinding_subjects_kind {doc 'Kind of object being referenced Values defined by this API group are User, Group, and ServiceAccount If the Authorizer does not recognized the kind value, the Authorizer should report an error'}
								alternative
									io_k8s_api_rbac_v1_RoleBinding_subjects_kind_User {doc 'Specific value: User'}
									io_k8s_api_rbac_v1_RoleBinding_subjects_kind_ServiceAccount {doc 'Specific value: ServiceAccount'}
									io_k8s_api_rbac_v1_RoleBinding_subjects_kind_Group {doc 'Specific value: Group'}
							String io_k8s_api_rbac_v1_RoleBinding_subjects_name {doc 'Name of the object being referenced'}
						optional
							String io_k8s_api_rbac_v1_RoleBinding_subjects_apiGroup {doc 'APIGroup holds the API group of the referenced subject Defaults to  for ServiceAccount subjects Defaults to rbacauthorizationk8sio for User and Group subjects'}
							String io_k8s_api_rbac_v1_RoleBinding_subjects_namespace {doc 'Namespace of the referenced object  If the object kind is non-namespace, such as User or Group, and this value is not empty the Authorizer should report an error'}
			io_k8s_api_rbac_v1_RoleBindingList {doc 'RoleBindingList is a collection of RoleBindings'}
				mandatory
					io_k8s_api_rbac_v1_RoleBindingList_items cardinality [1..*] {doc 'Items is a list of RoleBindings'}
						mandatory
							io_k8s_api_rbac_v1_RoleBindingList_items_roleRef {doc 'RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace If the RoleRef cannot be resolved, the Authorizer must return an error This field is immutable'}
								mandatory
									String io_k8s_api_rbac_v1_RoleBindingList_items_roleRef_apiGroup {doc 'APIGroup is the group for the resource being referenced'}
									String io_k8s_api_rbac_v1_RoleBindingList_items_roleRef_kind {doc 'Kind is the type of resource being referenced'}
									String io_k8s_api_rbac_v1_RoleBindingList_items_roleRef_name {doc 'Name is the name of resource being referenced'}
						optional
							String io_k8s_api_rbac_v1_RoleBindingList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_rbac_v1_RoleBindingList_items_kind {default 'RoleBinding', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_rbac_v1_RoleBindingList_items_metadata {doc 'Standard object_s metadata'}
								optional
									io_k8s_api_rbac_v1_RoleBindingList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_rbac_v1_RoleBindingList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_rbac_v1_RoleBindingList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_rbac_v1_RoleBindingList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_rbac_v1_RoleBindingList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_rbac_v1_RoleBindingList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_rbac_v1_RoleBindingList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_rbac_v1_RoleBindingList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_rbac_v1_RoleBindingList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_rbac_v1_RoleBindingList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_rbac_v1_RoleBindingList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_rbac_v1_RoleBindingList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_rbac_v1_RoleBindingList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_rbac_v1_RoleBindingList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_rbac_v1_RoleBindingList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_rbac_v1_RoleBindingList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_rbac_v1_RoleBindingList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_rbac_v1_RoleBindingList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_rbac_v1_RoleBindingList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_rbac_v1_RoleBindingList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_rbac_v1_RoleBindingList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_rbac_v1_RoleBindingList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_rbac_v1_RoleBindingList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_rbac_v1_RoleBindingList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_rbac_v1_RoleBindingList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_rbac_v1_RoleBindingList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_rbac_v1_RoleBindingList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_rbac_v1_RoleBindingList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_rbac_v1_RoleBindingList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_rbac_v1_RoleBindingList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_rbac_v1_RoleBindingList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_rbac_v1_RoleBindingList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_rbac_v1_RoleBindingList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_rbac_v1_RoleBindingList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_rbac_v1_RoleBindingList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_rbac_v1_RoleBindingList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_rbac_v1_RoleBindingList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_rbac_v1_RoleBindingList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_rbac_v1_RoleBindingList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_rbac_v1_RoleBindingList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_rbac_v1_RoleBindingList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_rbac_v1_RoleBindingList_items_subjects cardinality [1..*] {doc 'Subjects holds references to the objects the role applies to'}
								mandatory
									io_k8s_api_rbac_v1_RoleBindingList_items_subjects_kind {doc 'Kind of object being referenced Values defined by this API group are User, Group, and ServiceAccount If the Authorizer does not recognized the kind value, the Authorizer should report an error'}
										alternative
											io_k8s_api_rbac_v1_RoleBindingList_items_subjects_kind_User {doc 'Specific value: User'}
											io_k8s_api_rbac_v1_RoleBindingList_items_subjects_kind_ServiceAccount {doc 'Specific value: ServiceAccount'}
											io_k8s_api_rbac_v1_RoleBindingList_items_subjects_kind_Group {doc 'Specific value: Group'}
									String io_k8s_api_rbac_v1_RoleBindingList_items_subjects_name {doc 'Name of the object being referenced'}
								optional
									String io_k8s_api_rbac_v1_RoleBindingList_items_subjects_apiGroup {doc 'APIGroup holds the API group of the referenced subject Defaults to  for ServiceAccount subjects Defaults to rbacauthorizationk8sio for User and Group subjects'}
									String io_k8s_api_rbac_v1_RoleBindingList_items_subjects_namespace {doc 'Namespace of the referenced object  If the object kind is non-namespace, such as User or Group, and this value is not empty the Authorizer should report an error'}
				optional
					String io_k8s_api_rbac_v1_RoleBindingList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_rbac_v1_RoleBindingList_kind {default 'RoleBindingList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_rbac_v1_RoleBindingList_metadata {doc 'Standard object_s metadata'}
						optional
							String io_k8s_api_rbac_v1_RoleBindingList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_rbac_v1_RoleBindingList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_rbac_v1_RoleBindingList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_rbac_v1_RoleBindingList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_rbac_v1_RoleList {doc 'RoleList is a collection of Roles'}
				mandatory
					io_k8s_api_rbac_v1_RoleList_items cardinality [1..*] {doc 'Items is a list of Roles'}
						optional
							String io_k8s_api_rbac_v1_RoleList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_rbac_v1_RoleList_items_kind {default 'Role', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_rbac_v1_RoleList_items_metadata {doc 'Standard object_s metadata'}
								optional
									io_k8s_api_rbac_v1_RoleList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_rbac_v1_RoleList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_rbac_v1_RoleList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_rbac_v1_RoleList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_rbac_v1_RoleList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_rbac_v1_RoleList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_rbac_v1_RoleList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_rbac_v1_RoleList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_rbac_v1_RoleList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_rbac_v1_RoleList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_rbac_v1_RoleList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_rbac_v1_RoleList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_rbac_v1_RoleList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_rbac_v1_RoleList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_rbac_v1_RoleList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_rbac_v1_RoleList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_rbac_v1_RoleList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_rbac_v1_RoleList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_rbac_v1_RoleList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_rbac_v1_RoleList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_rbac_v1_RoleList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_rbac_v1_RoleList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_rbac_v1_RoleList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_rbac_v1_RoleList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_rbac_v1_RoleList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_rbac_v1_RoleList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_rbac_v1_RoleList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_rbac_v1_RoleList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_rbac_v1_RoleList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_rbac_v1_RoleList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_rbac_v1_RoleList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_rbac_v1_RoleList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_rbac_v1_RoleList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_rbac_v1_RoleList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_rbac_v1_RoleList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_rbac_v1_RoleList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_rbac_v1_RoleList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_rbac_v1_RoleList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_rbac_v1_RoleList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_rbac_v1_RoleList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_rbac_v1_RoleList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_rbac_v1_RoleList_items_rules cardinality [1..*] {doc 'Rules holds all the PolicyRules for this Role'}
								mandatory
									io_k8s_api_rbac_v1_RoleList_items_rules_verbs cardinality [1..*] {doc 'Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule _*_ represents all verbs'}
										mandatory
											String io_k8s_api_rbac_v1_RoleList_items_rules_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_rbac_v1_RoleList_items_rules_apiGroups cardinality [1..*] {doc 'APIGroups is the name of the APIGroup that contains the resources  If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed  represents the core API group and * represents all API groups'}
										mandatory
											String io_k8s_api_rbac_v1_RoleList_items_rules_apiGroups_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_rbac_v1_RoleList_items_rules_nonResourceURLs cardinality [1..*] {doc 'NonResourceURLs is a set of partial urls that a user should have access to  *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding Rules can either apply to API resources (such as pods or secrets) or non-resource URL paths (such as /api),  but not both'}
										mandatory
											String io_k8s_api_rbac_v1_RoleList_items_rules_nonResourceURLs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_rbac_v1_RoleList_items_rules_resourceNames cardinality [1..*] {doc 'ResourceNames is an optional white list of names that the rule applies to  An empty set means that everything is allowed'}
										mandatory
											String io_k8s_api_rbac_v1_RoleList_items_rules_resourceNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_rbac_v1_RoleList_items_rules_resources cardinality [1..*] {doc 'Resources is a list of resources this rule applies to _*_ represents all resources'}
										mandatory
											String io_k8s_api_rbac_v1_RoleList_items_rules_resources_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					String io_k8s_api_rbac_v1_RoleList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_rbac_v1_RoleList_kind {default 'RoleList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_rbac_v1_RoleList_metadata {doc 'Standard object_s metadata'}
						optional
							String io_k8s_api_rbac_v1_RoleList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_rbac_v1_RoleList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_rbac_v1_RoleList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_rbac_v1_RoleList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_rbac_v1_RoleRef {doc 'RoleRef contains information that points to the role being used'}
				mandatory
					String io_k8s_api_rbac_v1_RoleRef_apiGroup {doc 'APIGroup is the group for the resource being referenced'}
					String io_k8s_api_rbac_v1_RoleRef_kind {doc 'Kind is the type of resource being referenced'}
					String io_k8s_api_rbac_v1_RoleRef_name {doc 'Name is the name of resource being referenced'}
			io_k8s_api_rbac_v1_Subject {doc 'Subject contains a reference to the object or user identities a role binding applies to  This can either hold a direct API object reference, or a value for non-objects such as user and group names'}
				mandatory
					io_k8s_api_rbac_v1_Subject_kind {doc 'Kind of object being referenced Values defined by this API group are User, Group, and ServiceAccount If the Authorizer does not recognized the kind value, the Authorizer should report an error'}
						alternative
							io_k8s_api_rbac_v1_Subject_kind_User {doc 'Specific value: User'}
							io_k8s_api_rbac_v1_Subject_kind_ServiceAccount {doc 'Specific value: ServiceAccount'}
							io_k8s_api_rbac_v1_Subject_kind_Group {doc 'Specific value: Group'}
					String io_k8s_api_rbac_v1_Subject_name {doc 'Name of the object being referenced'}
				optional
					String io_k8s_api_rbac_v1_Subject_apiGroup {doc 'APIGroup holds the API group of the referenced subject Defaults to  for ServiceAccount subjects Defaults to rbacauthorizationk8sio for User and Group subjects'}
					String io_k8s_api_rbac_v1_Subject_namespace {doc 'Namespace of the referenced object  If the object kind is non-namespace, such as User or Group, and this value is not empty the Authorizer should report an error'}
			io_k8s_api_resource_v1alpha2_AllocationResult {doc 'AllocationResult contains attributes of an allocated resource'}
				optional
					io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes {doc 'This field will get set by the resource driver after it has allocated the resource to inform the scheduler where it can schedule Pods using the ResourceClaimSetting this field is optional If null, the resource is available everywhere'}
						mandatory
							io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
								optional
									io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
										mandatory
											String io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
											io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
												alternative
													io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
													io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
													io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
										mandatory
											String io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
											io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
												alternative
													io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
													io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
													io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
													io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_resource_v1alpha2_AllocationResult_resourceHandles cardinality [1..*] {doc 'ResourceHandles contain the state associated with an allocation that should be maintained throughout the lifetime of a claim Each ResourceHandle contains data that should be passed to a specific kubelet plugin once it lands on a node This data is returned by the driver after a successful allocation and is opaque to Kubernetes Driver documentation may explain to users how to interpret this data if neededSetting this field is optional It has a maximum size of 32 entries If null (or empty), it is assumed this allocation will be processed by a single kubelet plugin with no ResourceHandle data attached The name of the kubelet plugin invoked will match the DriverName set in the ResourceClaimStatus this AllocationResult is embedded in'}
						optional
							String io_k8s_api_resource_v1alpha2_AllocationResult_resourceHandles_data {doc 'Data contains the opaque data associated with this ResourceHandle It is set by the controller component of the resource driver whose name matches the DriverName set in the ResourceClaimStatus this ResourceHandle is embedded in It is set at allocation time and is intended for processing by the kubelet plugin whose name matches the DriverName set in this ResourceHandleThe maximum size of this field is 16KiB This may get increased in the future, but not reduced'}
							String io_k8s_api_resource_v1alpha2_AllocationResult_resourceHandles_driverName {doc 'DriverName specifies the name of the resource driver whose kubelet plugin should be invoked to process this ResourceHandle_s data once it lands on a node This may differ from the DriverName set in ResourceClaimStatus this ResourceHandle is embedded in'}
							io_k8s_api_resource_v1alpha2_AllocationResult_resourceHandles_structuredData {doc 'If StructuredData is set, then it needs to be used instead of Data'}
								mandatory
									io_k8s_api_resource_v1alpha2_AllocationResult_resourceHandles_structuredData_results cardinality [1..*] {doc 'Results lists all allocated driver resources'}
										optional
											io_k8s_api_resource_v1alpha2_AllocationResult_resourceHandles_structuredData_results_namedResources {doc 'NamedResources describes the allocation result when using the named resources model'}
												mandatory
													String io_k8s_api_resource_v1alpha2_AllocationResult_resourceHandles_structuredData_results_namedResources_name {doc 'Name is the name of the selected resource instance'}
											io_k8s_api_resource_v1alpha2_AllocationResult_resourceHandles_structuredData_results_vendorRequestParameters {doc 'VendorRequestParameters are the per-request configuration parameters from the time that the claim was allocated'}
												optional
													io_k8s_api_resource_v1alpha2_AllocationResult_resourceHandles_structuredData_results_vendorRequestParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
								optional
									String io_k8s_api_resource_v1alpha2_AllocationResult_resourceHandles_structuredData_nodeName {doc 'NodeName is the name of the node providing the necessary resources if the resources are local to a node'}
									io_k8s_api_resource_v1alpha2_AllocationResult_resourceHandles_structuredData_vendorClaimParameters {doc 'VendorClaimParameters are the per-claim configuration parameters from the resource claim parameters at the time that the claim was allocated'}
										optional
											io_k8s_api_resource_v1alpha2_AllocationResult_resourceHandles_structuredData_vendorClaimParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
									io_k8s_api_resource_v1alpha2_AllocationResult_resourceHandles_structuredData_vendorClassParameters {doc 'VendorClassParameters are the per-claim configuration parameters from the resource class at the time that the claim was allocated'}
										optional
											io_k8s_api_resource_v1alpha2_AllocationResult_resourceHandles_structuredData_vendorClassParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
					io_k8s_api_resource_v1alpha2_AllocationResult_shareable {doc 'Shareable determines whether the resource supports more than one consumer at a time'}
			io_k8s_api_resource_v1alpha2_DriverAllocationResult {doc 'DriverAllocationResult contains vendor parameters and the allocation result for one request'}
				optional
					io_k8s_api_resource_v1alpha2_DriverAllocationResult_namedResources {doc 'NamedResources describes the allocation result when using the named resources model'}
						mandatory
							String io_k8s_api_resource_v1alpha2_DriverAllocationResult_namedResources_name {doc 'Name is the name of the selected resource instance'}
					io_k8s_api_resource_v1alpha2_DriverAllocationResult_vendorRequestParameters {doc 'VendorRequestParameters are the per-request configuration parameters from the time that the claim was allocated'}
						optional
							io_k8s_api_resource_v1alpha2_DriverAllocationResult_vendorRequestParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
			io_k8s_api_resource_v1alpha2_DriverRequests {doc 'DriverRequests describes all resources that are needed from one particular driver'}
				optional
					String io_k8s_api_resource_v1alpha2_DriverRequests_driverName {doc 'DriverName is the name used by the DRA driver kubelet plugin'}
					io_k8s_api_resource_v1alpha2_DriverRequests_requests cardinality [1..*] {doc 'Requests describes all resources that are needed from the driver'}
						optional
							io_k8s_api_resource_v1alpha2_DriverRequests_requests_namedResources {doc 'NamedResources describes a request for resources with the named resources model'}
								mandatory
									String io_k8s_api_resource_v1alpha2_DriverRequests_requests_namedResources_selector {doc 'Selector is a CEL expression which must evaluate to true if a resource instance is suitable The language is as defined in https:_kubernetesio/docs/reference/using-api/cel/In addition, for each type NamedResourcesin AttributeValue there is a map that resolves to the corresponding value of the instance under evaluation For example:   attributesquantity[a]isGreaterThan(quantity(0)) &&   attributesstringslice[b]isSorted()'}
							io_k8s_api_resource_v1alpha2_DriverRequests_requests_vendorParameters {doc 'VendorParameters are arbitrary setup parameters for the requested resource They are ignored while allocating a claim'}
								optional
									io_k8s_api_resource_v1alpha2_DriverRequests_requests_vendorParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
					io_k8s_api_resource_v1alpha2_DriverRequests_vendorParameters {doc 'VendorParameters are arbitrary setup parameters for all requests of the claim They are ignored while allocating the claim'}
						optional
							io_k8s_api_resource_v1alpha2_DriverRequests_vendorParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
			io_k8s_api_resource_v1alpha2_NamedResourcesAllocationResult {doc 'NamedResourcesAllocationResult is used in AllocationResultModel'}
				mandatory
					String io_k8s_api_resource_v1alpha2_NamedResourcesAllocationResult_name {doc 'Name is the name of the selected resource instance'}
			io_k8s_api_resource_v1alpha2_NamedResourcesAttribute {doc 'NamedResourcesAttribute is a combination of an attribute name and its value'}
				mandatory
					String io_k8s_api_resource_v1alpha2_NamedResourcesAttribute_name {doc 'Name is unique identifier among all resource instances managed by the driver on the node It must be a DNS subdomain'}
				optional
					io_k8s_api_resource_v1alpha2_NamedResourcesAttribute_bool {doc 'BoolValue is a true/false value'}
					Integer io_k8s_api_resource_v1alpha2_NamedResourcesAttribute_int {doc 'IntValue is a 64-bit integer'}
					io_k8s_api_resource_v1alpha2_NamedResourcesAttribute_intSlice {doc 'IntSliceValue is an array of 64-bit integers'}
						mandatory
							io_k8s_api_resource_v1alpha2_NamedResourcesAttribute_intSlice_ints cardinality [1..*] {doc 'Ints is the slice of 64-bit integers'}
								mandatory
									Integer io_k8s_api_resource_v1alpha2_NamedResourcesAttribute_intSlice_ints_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
					io_k8s_api_resource_v1alpha2_NamedResourcesAttribute_quantity {doc 'QuantityValue is a quantity'}
						alternative
							String io_k8s_api_resource_v1alpha2_NamedResourcesAttribute_quantity_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_resource_v1alpha2_NamedResourcesAttribute_quantity_asNumber {doc 'Sub-feature added of type Number'}
					String io_k8s_api_resource_v1alpha2_NamedResourcesAttribute_string {doc 'StringValue is a string'}
					io_k8s_api_resource_v1alpha2_NamedResourcesAttribute_stringSlice {doc 'StringSliceValue is an array of strings'}
						mandatory
							io_k8s_api_resource_v1alpha2_NamedResourcesAttribute_stringSlice_strings cardinality [1..*] {doc 'Strings is the slice of strings'}
								mandatory
									String io_k8s_api_resource_v1alpha2_NamedResourcesAttribute_stringSlice_strings_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					String io_k8s_api_resource_v1alpha2_NamedResourcesAttribute_version {doc 'VersionValue is a semantic version according to semverorg spec 200'}
			io_k8s_api_resource_v1alpha2_NamedResourcesFilter {doc 'NamedResourcesFilter is used in ResourceFilterModel'}
				mandatory
					String io_k8s_api_resource_v1alpha2_NamedResourcesFilter_selector {doc 'Selector is a CEL expression which must evaluate to true if a resource instance is suitable The language is as defined in https:_kubernetesio/docs/reference/using-api/cel/In addition, for each type NamedResourcesin AttributeValue there is a map that resolves to the corresponding value of the instance under evaluation For example:   attributesquantity[a]isGreaterThan(quantity(0)) &&   attributesstringslice[b]isSorted()'}
			io_k8s_api_resource_v1alpha2_NamedResourcesInstance {doc 'NamedResourcesInstance represents one individual hardware instance that can be selected based on its attributes'}
				mandatory
					String io_k8s_api_resource_v1alpha2_NamedResourcesInstance_name {doc 'Name is unique identifier among all resource instances managed by the driver on the node It must be a DNS subdomain'}
				optional
					io_k8s_api_resource_v1alpha2_NamedResourcesInstance_attributes cardinality [1..*] {doc 'Attributes defines the attributes of this resource instance The name of each attribute must be unique'}
						mandatory
							String io_k8s_api_resource_v1alpha2_NamedResourcesInstance_attributes_name {doc 'Name is unique identifier among all resource instances managed by the driver on the node It must be a DNS subdomain'}
						optional
							io_k8s_api_resource_v1alpha2_NamedResourcesInstance_attributes_bool {doc 'BoolValue is a true/false value'}
							Integer io_k8s_api_resource_v1alpha2_NamedResourcesInstance_attributes_int {doc 'IntValue is a 64-bit integer'}
							io_k8s_api_resource_v1alpha2_NamedResourcesInstance_attributes_intSlice {doc 'IntSliceValue is an array of 64-bit integers'}
								mandatory
									io_k8s_api_resource_v1alpha2_NamedResourcesInstance_attributes_intSlice_ints cardinality [1..*] {doc 'Ints is the slice of 64-bit integers'}
										mandatory
											Integer io_k8s_api_resource_v1alpha2_NamedResourcesInstance_attributes_intSlice_ints_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
							io_k8s_api_resource_v1alpha2_NamedResourcesInstance_attributes_quantity {doc 'QuantityValue is a quantity'}
								alternative
									String io_k8s_api_resource_v1alpha2_NamedResourcesInstance_attributes_quantity_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_resource_v1alpha2_NamedResourcesInstance_attributes_quantity_asNumber {doc 'Sub-feature added of type Number'}
							String io_k8s_api_resource_v1alpha2_NamedResourcesInstance_attributes_string {doc 'StringValue is a string'}
							io_k8s_api_resource_v1alpha2_NamedResourcesInstance_attributes_stringSlice {doc 'StringSliceValue is an array of strings'}
								mandatory
									io_k8s_api_resource_v1alpha2_NamedResourcesInstance_attributes_stringSlice_strings cardinality [1..*] {doc 'Strings is the slice of strings'}
										mandatory
											String io_k8s_api_resource_v1alpha2_NamedResourcesInstance_attributes_stringSlice_strings_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_resource_v1alpha2_NamedResourcesInstance_attributes_version {doc 'VersionValue is a semantic version according to semverorg spec 200'}
			io_k8s_api_resource_v1alpha2_NamedResourcesIntSlice {doc 'NamedResourcesIntSlice contains a slice of 64-bit integers'}
				mandatory
					io_k8s_api_resource_v1alpha2_NamedResourcesIntSlice_ints cardinality [1..*] {doc 'Ints is the slice of 64-bit integers'}
						mandatory
							Integer io_k8s_api_resource_v1alpha2_NamedResourcesIntSlice_ints_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
			io_k8s_api_resource_v1alpha2_NamedResourcesRequest {doc 'NamedResourcesRequest is used in ResourceRequestModel'}
				mandatory
					String io_k8s_api_resource_v1alpha2_NamedResourcesRequest_selector {doc 'Selector is a CEL expression which must evaluate to true if a resource instance is suitable The language is as defined in https:_kubernetesio/docs/reference/using-api/cel/In addition, for each type NamedResourcesin AttributeValue there is a map that resolves to the corresponding value of the instance under evaluation For example:   attributesquantity[a]isGreaterThan(quantity(0)) &&   attributesstringslice[b]isSorted()'}
			io_k8s_api_resource_v1alpha2_NamedResourcesResources {doc 'NamedResourcesResources is used in ResourceModel'}
				mandatory
					io_k8s_api_resource_v1alpha2_NamedResourcesResources_instances cardinality [1..*] {doc 'The list of all individual resources instances currently available'}
						mandatory
							String io_k8s_api_resource_v1alpha2_NamedResourcesResources_instances_name {doc 'Name is unique identifier among all resource instances managed by the driver on the node It must be a DNS subdomain'}
						optional
							io_k8s_api_resource_v1alpha2_NamedResourcesResources_instances_attributes cardinality [1..*] {doc 'Attributes defines the attributes of this resource instance The name of each attribute must be unique'}
								mandatory
									String io_k8s_api_resource_v1alpha2_NamedResourcesResources_instances_attributes_name {doc 'Name is unique identifier among all resource instances managed by the driver on the node It must be a DNS subdomain'}
								optional
									io_k8s_api_resource_v1alpha2_NamedResourcesResources_instances_attributes_bool {doc 'BoolValue is a true/false value'}
									Integer io_k8s_api_resource_v1alpha2_NamedResourcesResources_instances_attributes_int {doc 'IntValue is a 64-bit integer'}
									io_k8s_api_resource_v1alpha2_NamedResourcesResources_instances_attributes_intSlice {doc 'IntSliceValue is an array of 64-bit integers'}
										mandatory
											io_k8s_api_resource_v1alpha2_NamedResourcesResources_instances_attributes_intSlice_ints cardinality [1..*] {doc 'Ints is the slice of 64-bit integers'}
												mandatory
													Integer io_k8s_api_resource_v1alpha2_NamedResourcesResources_instances_attributes_intSlice_ints_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
									io_k8s_api_resource_v1alpha2_NamedResourcesResources_instances_attributes_quantity {doc 'QuantityValue is a quantity'}
										alternative
											String io_k8s_api_resource_v1alpha2_NamedResourcesResources_instances_attributes_quantity_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_resource_v1alpha2_NamedResourcesResources_instances_attributes_quantity_asNumber {doc 'Sub-feature added of type Number'}
									String io_k8s_api_resource_v1alpha2_NamedResourcesResources_instances_attributes_string {doc 'StringValue is a string'}
									io_k8s_api_resource_v1alpha2_NamedResourcesResources_instances_attributes_stringSlice {doc 'StringSliceValue is an array of strings'}
										mandatory
											io_k8s_api_resource_v1alpha2_NamedResourcesResources_instances_attributes_stringSlice_strings cardinality [1..*] {doc 'Strings is the slice of strings'}
												mandatory
													String io_k8s_api_resource_v1alpha2_NamedResourcesResources_instances_attributes_stringSlice_strings_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_resource_v1alpha2_NamedResourcesResources_instances_attributes_version {doc 'VersionValue is a semantic version according to semverorg spec 200'}
			io_k8s_api_resource_v1alpha2_NamedResourcesStringSlice {doc 'NamedResourcesStringSlice contains a slice of strings'}
				mandatory
					io_k8s_api_resource_v1alpha2_NamedResourcesStringSlice_strings cardinality [1..*] {doc 'Strings is the slice of strings'}
						mandatory
							String io_k8s_api_resource_v1alpha2_NamedResourcesStringSlice_strings_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_resource_v1alpha2_PodSchedulingContext {doc 'PodSchedulingContext objects hold information that is needed to schedule a Pod with ResourceClaims that use WaitForFirstConsumer allocation modeThis is an alpha type and requires enabling the DynamicResourceAllocation feature gate'}
				mandatory
					io_k8s_api_resource_v1alpha2_PodSchedulingContext_spec {doc 'Spec describes where resources for the Pod are needed'}
						optional
							io_k8s_api_resource_v1alpha2_PodSchedulingContext_spec_potentialNodes cardinality [1..*] {doc 'PotentialNodes lists nodes where the Pod might be able to runThe size of this field is limited to 128 This is large enough for many clusters Larger clusters may need more attempts to find a node that suits all pending resources This may get increased in the future, but not reduced'}
								mandatory
									String io_k8s_api_resource_v1alpha2_PodSchedulingContext_spec_potentialNodes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_resource_v1alpha2_PodSchedulingContext_spec_selectedNode {doc 'SelectedNode is the node for which allocation of ResourceClaims that are referenced by the Pod and that use WaitForFirstConsumer allocation is to be attempted'}
				optional
					String io_k8s_api_resource_v1alpha2_PodSchedulingContext_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_resource_v1alpha2_PodSchedulingContext_kind {default 'PodSchedulingContext', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata {doc 'Standard object metadata'}
						optional
							io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_resource_v1alpha2_PodSchedulingContext_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_resource_v1alpha2_PodSchedulingContext_status {doc 'Status describes where resources for the Pod can be allocated'}
						optional
							io_k8s_api_resource_v1alpha2_PodSchedulingContext_status_resourceClaims cardinality [1..*] {doc 'ResourceClaims describes resource availability for each podspecresourceClaim entry where the corresponding ResourceClaim uses WaitForFirstConsumer allocation mode'}
								optional
									String io_k8s_api_resource_v1alpha2_PodSchedulingContext_status_resourceClaims_name {doc 'Name matches the podspecresourceClaims[*]Name field'}
									io_k8s_api_resource_v1alpha2_PodSchedulingContext_status_resourceClaims_unsuitableNodes cardinality [1..*] {doc 'UnsuitableNodes lists nodes that the ResourceClaim cannot be allocated forThe size of this field is limited to 128, the same as for PodSchedulingSpecPotentialNodes This may get increased in the future, but not reduced'}
										mandatory
											String io_k8s_api_resource_v1alpha2_PodSchedulingContext_status_resourceClaims_unsuitableNodes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_resource_v1alpha2_PodSchedulingContextList {doc 'PodSchedulingContextList is a collection of Pod scheduling objects'}
				mandatory
					io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items cardinality [1..*] {doc 'Items is the list of PodSchedulingContext objects'}
						mandatory
							io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_spec {doc 'Spec describes where resources for the Pod are needed'}
								optional
									io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_spec_potentialNodes cardinality [1..*] {doc 'PotentialNodes lists nodes where the Pod might be able to runThe size of this field is limited to 128 This is large enough for many clusters Larger clusters may need more attempts to find a node that suits all pending resources This may get increased in the future, but not reduced'}
										mandatory
											String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_spec_potentialNodes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_spec_selectedNode {doc 'SelectedNode is the node for which allocation of ResourceClaims that are referenced by the Pod and that use WaitForFirstConsumer allocation is to be attempted'}
						optional
							String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_kind {default 'PodSchedulingContext', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata {doc 'Standard object metadata'}
								optional
									io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_status {doc 'Status describes where resources for the Pod can be allocated'}
								optional
									io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_status_resourceClaims cardinality [1..*] {doc 'ResourceClaims describes resource availability for each podspecresourceClaim entry where the corresponding ResourceClaim uses WaitForFirstConsumer allocation mode'}
										optional
											String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_status_resourceClaims_name {doc 'Name matches the podspecresourceClaims[*]Name field'}
											io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_status_resourceClaims_unsuitableNodes cardinality [1..*] {doc 'UnsuitableNodes lists nodes that the ResourceClaim cannot be allocated forThe size of this field is limited to 128, the same as for PodSchedulingSpecPotentialNodes This may get increased in the future, but not reduced'}
												mandatory
													String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_items_status_resourceClaims_unsuitableNodes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_kind {default 'PodSchedulingContextList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_resource_v1alpha2_PodSchedulingContextList_metadata {doc 'Standard list metadata'}
						optional
							String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_resource_v1alpha2_PodSchedulingContextList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_resource_v1alpha2_PodSchedulingContextList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_resource_v1alpha2_PodSchedulingContextSpec {doc 'PodSchedulingContextSpec describes where resources for the Pod are needed'}
				optional
					io_k8s_api_resource_v1alpha2_PodSchedulingContextSpec_potentialNodes cardinality [1..*] {doc 'PotentialNodes lists nodes where the Pod might be able to runThe size of this field is limited to 128 This is large enough for many clusters Larger clusters may need more attempts to find a node that suits all pending resources This may get increased in the future, but not reduced'}
						mandatory
							String io_k8s_api_resource_v1alpha2_PodSchedulingContextSpec_potentialNodes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					String io_k8s_api_resource_v1alpha2_PodSchedulingContextSpec_selectedNode {doc 'SelectedNode is the node for which allocation of ResourceClaims that are referenced by the Pod and that use WaitForFirstConsumer allocation is to be attempted'}
			io_k8s_api_resource_v1alpha2_PodSchedulingContextStatus {doc 'PodSchedulingContextStatus describes where resources for the Pod can be allocated'}
				optional
					io_k8s_api_resource_v1alpha2_PodSchedulingContextStatus_resourceClaims cardinality [1..*] {doc 'ResourceClaims describes resource availability for each podspecresourceClaim entry where the corresponding ResourceClaim uses WaitForFirstConsumer allocation mode'}
						optional
							String io_k8s_api_resource_v1alpha2_PodSchedulingContextStatus_resourceClaims_name {doc 'Name matches the podspecresourceClaims[*]Name field'}
							io_k8s_api_resource_v1alpha2_PodSchedulingContextStatus_resourceClaims_unsuitableNodes cardinality [1..*] {doc 'UnsuitableNodes lists nodes that the ResourceClaim cannot be allocated forThe size of this field is limited to 128, the same as for PodSchedulingSpecPotentialNodes This may get increased in the future, but not reduced'}
								mandatory
									String io_k8s_api_resource_v1alpha2_PodSchedulingContextStatus_resourceClaims_unsuitableNodes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_resource_v1alpha2_ResourceClaim {doc 'ResourceClaim describes which resources are needed by a resource consumer Its status tracks whether the resource has been allocated and what the resulting attributes areThis is an alpha type and requires enabling the DynamicResourceAllocation feature gate'}
				mandatory
					io_k8s_api_resource_v1alpha2_ResourceClaim_spec {doc 'Spec describes the desired attributes of a resource that then needs to be allocated It can only be set once when creating the ResourceClaim'}
						mandatory
							String io_k8s_api_resource_v1alpha2_ResourceClaim_spec_resourceClassName {doc 'ResourceClassName references the driver and additional parameters via the name of a ResourceClass that was created as part of the driver deployment'}
						optional
							String io_k8s_api_resource_v1alpha2_ResourceClaim_spec_allocationMode {doc 'Allocation can start immediately or when a Pod wants to use the resource WaitForFirstConsumer is the default'}
							io_k8s_api_resource_v1alpha2_ResourceClaim_spec_parametersRef {doc 'ParametersRef references a separate object with arbitrary parameters that will be used by the driver when allocating a resource for the claimThe object must be in the same namespace as the ResourceClaim'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClaim_spec_parametersRef_kind {doc 'Kind is the type of resource being referenced This is the same value as in the parameter object_s metadata, for example ConfigMap'}
									String io_k8s_api_resource_v1alpha2_ResourceClaim_spec_parametersRef_name {doc 'Name is the name of resource being referenced'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaim_spec_parametersRef_apiGroup {doc 'APIGroup is the group for the resource being referenced It is empty for the core API This matches the group in the APIVersion that is used when creating the resources'}
				optional
					String io_k8s_api_resource_v1alpha2_ResourceClaim_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_resource_v1alpha2_ResourceClaim_kind {default 'ResourceClaim', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_resource_v1alpha2_ResourceClaim_metadata {doc 'Standard object metadata'}
						optional
							io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_resource_v1alpha2_ResourceClaim_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_resource_v1alpha2_ResourceClaim_status {doc 'Status describes whether the resource is available and with which attributes'}
						optional
							io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation {doc 'Allocation is set by the resource driver once a resource or set of resources has been allocated successfully If this is not specified, the resources have not been allocated yet'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes {doc 'This field will get set by the resource driver after it has allocated the resource to inform the scheduler where it can schedule Pods using the ResourceClaimSetting this field is optional If null, the resource is available everywhere'}
										mandatory
											io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
												optional
													io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
														mandatory
															String io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
															io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																alternative
																	io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																	io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																	io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
														mandatory
															String io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
															io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																alternative
																	io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																	io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																	io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																	io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_resourceHandles cardinality [1..*] {doc 'ResourceHandles contain the state associated with an allocation that should be maintained throughout the lifetime of a claim Each ResourceHandle contains data that should be passed to a specific kubelet plugin once it lands on a node This data is returned by the driver after a successful allocation and is opaque to Kubernetes Driver documentation may explain to users how to interpret this data if neededSetting this field is optional It has a maximum size of 32 entries If null (or empty), it is assumed this allocation will be processed by a single kubelet plugin with no ResourceHandle data attached The name of the kubelet plugin invoked will match the DriverName set in the ResourceClaimStatus this AllocationResult is embedded in'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_resourceHandles_data {doc 'Data contains the opaque data associated with this ResourceHandle It is set by the controller component of the resource driver whose name matches the DriverName set in the ResourceClaimStatus this ResourceHandle is embedded in It is set at allocation time and is intended for processing by the kubelet plugin whose name matches the DriverName set in this ResourceHandleThe maximum size of this field is 16KiB This may get increased in the future, but not reduced'}
											String io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_resourceHandles_driverName {doc 'DriverName specifies the name of the resource driver whose kubelet plugin should be invoked to process this ResourceHandle_s data once it lands on a node This may differ from the DriverName set in ResourceClaimStatus this ResourceHandle is embedded in'}
											io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_resourceHandles_structuredData {doc 'If StructuredData is set, then it needs to be used instead of Data'}
												mandatory
													io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_resourceHandles_structuredData_results cardinality [1..*] {doc 'Results lists all allocated driver resources'}
														optional
															io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_resourceHandles_structuredData_results_namedResources {doc 'NamedResources describes the allocation result when using the named resources model'}
																mandatory
																	String io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_resourceHandles_structuredData_results_namedResources_name {doc 'Name is the name of the selected resource instance'}
															io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_resourceHandles_structuredData_results_vendorRequestParameters {doc 'VendorRequestParameters are the per-request configuration parameters from the time that the claim was allocated'}
																optional
																	io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_resourceHandles_structuredData_results_vendorRequestParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
												optional
													String io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_resourceHandles_structuredData_nodeName {doc 'NodeName is the name of the node providing the necessary resources if the resources are local to a node'}
													io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_resourceHandles_structuredData_vendorClaimParameters {doc 'VendorClaimParameters are the per-claim configuration parameters from the resource claim parameters at the time that the claim was allocated'}
														optional
															io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_resourceHandles_structuredData_vendorClaimParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
													io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_resourceHandles_structuredData_vendorClassParameters {doc 'VendorClassParameters are the per-claim configuration parameters from the resource class at the time that the claim was allocated'}
														optional
															io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_resourceHandles_structuredData_vendorClassParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
									io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_shareable {doc 'Shareable determines whether the resource supports more than one consumer at a time'}
							io_k8s_api_resource_v1alpha2_ResourceClaim_status_deallocationRequested {doc 'DeallocationRequested indicates that a ResourceClaim is to be deallocatedThe driver then must deallocate this claim and reset the field together with clearing the Allocation fieldWhile DeallocationRequested is set, no new consumers may be added to ReservedFor'}
							String io_k8s_api_resource_v1alpha2_ResourceClaim_status_driverName {doc 'DriverName is a copy of the driver name from the ResourceClass at the time when allocation started'}
							io_k8s_api_resource_v1alpha2_ResourceClaim_status_reservedFor cardinality [1..*] {doc 'ReservedFor indicates which entities are currently allowed to use the claim A Pod which references a ResourceClaim which is not reserved for that Pod will not be startedThere can be at most 32 such reservations This may get increased in the future, but not reduced'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClaim_status_reservedFor_name {doc 'Name is the name of resource being referenced'}
									String io_k8s_api_resource_v1alpha2_ResourceClaim_status_reservedFor_resource {doc 'Resource is the type of resource being referenced, for example pods'}
									String io_k8s_api_resource_v1alpha2_ResourceClaim_status_reservedFor_uid {doc 'UID identifies exactly one incarnation of the resource'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaim_status_reservedFor_apiGroup {doc 'APIGroup is the group for the resource being referenced It is empty for the core API This matches the group in the APIVersion that is used when creating the resources'}
			io_k8s_api_resource_v1alpha2_ResourceClaimConsumerReference {doc 'ResourceClaimConsumerReference contains enough information to let you locate the consumer of a ResourceClaim The user must be a resource in the same namespace as the ResourceClaim'}
				mandatory
					String io_k8s_api_resource_v1alpha2_ResourceClaimConsumerReference_name {doc 'Name is the name of resource being referenced'}
					String io_k8s_api_resource_v1alpha2_ResourceClaimConsumerReference_resource {doc 'Resource is the type of resource being referenced, for example pods'}
					String io_k8s_api_resource_v1alpha2_ResourceClaimConsumerReference_uid {doc 'UID identifies exactly one incarnation of the resource'}
				optional
					String io_k8s_api_resource_v1alpha2_ResourceClaimConsumerReference_apiGroup {doc 'APIGroup is the group for the resource being referenced It is empty for the core API This matches the group in the APIVersion that is used when creating the resources'}
			io_k8s_api_resource_v1alpha2_ResourceClaimList {doc 'ResourceClaimList is a collection of claims'}
				mandatory
					io_k8s_api_resource_v1alpha2_ResourceClaimList_items cardinality [1..*] {doc 'Items is the list of resource claims'}
						mandatory
							io_k8s_api_resource_v1alpha2_ResourceClaimList_items_spec {doc 'Spec describes the desired attributes of a resource that then needs to be allocated It can only be set once when creating the ResourceClaim'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_spec_resourceClassName {doc 'ResourceClassName references the driver and additional parameters via the name of a ResourceClass that was created as part of the driver deployment'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_spec_allocationMode {doc 'Allocation can start immediately or when a Pod wants to use the resource WaitForFirstConsumer is the default'}
									io_k8s_api_resource_v1alpha2_ResourceClaimList_items_spec_parametersRef {doc 'ParametersRef references a separate object with arbitrary parameters that will be used by the driver when allocating a resource for the claimThe object must be in the same namespace as the ResourceClaim'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_spec_parametersRef_kind {doc 'Kind is the type of resource being referenced This is the same value as in the parameter object_s metadata, for example ConfigMap'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_spec_parametersRef_name {doc 'Name is the name of resource being referenced'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_spec_parametersRef_apiGroup {doc 'APIGroup is the group for the resource being referenced It is empty for the core API This matches the group in the APIVersion that is used when creating the resources'}
						optional
							String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_kind {default 'ResourceClaim', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata {doc 'Standard object metadata'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status {doc 'Status describes whether the resource is available and with which attributes'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation {doc 'Allocation is set by the resource driver once a resource or set of resources has been allocated successfully If this is not specified, the resources have not been allocated yet'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes {doc 'This field will get set by the resource driver after it has allocated the resource to inform the scheduler where it can schedule Pods using the ResourceClaimSetting this field is optional If null, the resource is available everywhere'}
												mandatory
													io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
														optional
															io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																mandatory
																	String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																	io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																		alternative
																			io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																			io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																			io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																mandatory
																	String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																	io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																		alternative
																			io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																			io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																			io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																			io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_resourceHandles cardinality [1..*] {doc 'ResourceHandles contain the state associated with an allocation that should be maintained throughout the lifetime of a claim Each ResourceHandle contains data that should be passed to a specific kubelet plugin once it lands on a node This data is returned by the driver after a successful allocation and is opaque to Kubernetes Driver documentation may explain to users how to interpret this data if neededSetting this field is optional It has a maximum size of 32 entries If null (or empty), it is assumed this allocation will be processed by a single kubelet plugin with no ResourceHandle data attached The name of the kubelet plugin invoked will match the DriverName set in the ResourceClaimStatus this AllocationResult is embedded in'}
												optional
													String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_resourceHandles_data {doc 'Data contains the opaque data associated with this ResourceHandle It is set by the controller component of the resource driver whose name matches the DriverName set in the ResourceClaimStatus this ResourceHandle is embedded in It is set at allocation time and is intended for processing by the kubelet plugin whose name matches the DriverName set in this ResourceHandleThe maximum size of this field is 16KiB This may get increased in the future, but not reduced'}
													String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_resourceHandles_driverName {doc 'DriverName specifies the name of the resource driver whose kubelet plugin should be invoked to process this ResourceHandle_s data once it lands on a node This may differ from the DriverName set in ResourceClaimStatus this ResourceHandle is embedded in'}
													io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_resourceHandles_structuredData {doc 'If StructuredData is set, then it needs to be used instead of Data'}
														mandatory
															io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_resourceHandles_structuredData_results cardinality [1..*] {doc 'Results lists all allocated driver resources'}
																optional
																	io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_resourceHandles_structuredData_results_namedResources {doc 'NamedResources describes the allocation result when using the named resources model'}
																		mandatory
																			String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_resourceHandles_structuredData_results_namedResources_name {doc 'Name is the name of the selected resource instance'}
																	io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_resourceHandles_structuredData_results_vendorRequestParameters {doc 'VendorRequestParameters are the per-request configuration parameters from the time that the claim was allocated'}
																		optional
																			io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_resourceHandles_structuredData_results_vendorRequestParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
														optional
															String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_resourceHandles_structuredData_nodeName {doc 'NodeName is the name of the node providing the necessary resources if the resources are local to a node'}
															io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_resourceHandles_structuredData_vendorClaimParameters {doc 'VendorClaimParameters are the per-claim configuration parameters from the resource claim parameters at the time that the claim was allocated'}
																optional
																	io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_resourceHandles_structuredData_vendorClaimParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
															io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_resourceHandles_structuredData_vendorClassParameters {doc 'VendorClassParameters are the per-claim configuration parameters from the resource class at the time that the claim was allocated'}
																optional
																	io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_resourceHandles_structuredData_vendorClassParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
											io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_shareable {doc 'Shareable determines whether the resource supports more than one consumer at a time'}
									io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_deallocationRequested {doc 'DeallocationRequested indicates that a ResourceClaim is to be deallocatedThe driver then must deallocate this claim and reset the field together with clearing the Allocation fieldWhile DeallocationRequested is set, no new consumers may be added to ReservedFor'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_driverName {doc 'DriverName is a copy of the driver name from the ResourceClass at the time when allocation started'}
									io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_reservedFor cardinality [1..*] {doc 'ReservedFor indicates which entities are currently allowed to use the claim A Pod which references a ResourceClaim which is not reserved for that Pod will not be startedThere can be at most 32 such reservations This may get increased in the future, but not reduced'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_reservedFor_name {doc 'Name is the name of resource being referenced'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_reservedFor_resource {doc 'Resource is the type of resource being referenced, for example pods'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_reservedFor_uid {doc 'UID identifies exactly one incarnation of the resource'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_reservedFor_apiGroup {doc 'APIGroup is the group for the resource being referenced It is empty for the core API This matches the group in the APIVersion that is used when creating the resources'}
				optional
					String io_k8s_api_resource_v1alpha2_ResourceClaimList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_resource_v1alpha2_ResourceClaimList_kind {default 'ResourceClaimList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_resource_v1alpha2_ResourceClaimList_metadata {doc 'Standard list metadata'}
						optional
							String io_k8s_api_resource_v1alpha2_ResourceClaimList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_resource_v1alpha2_ResourceClaimList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_resource_v1alpha2_ResourceClaimParameters {doc 'ResourceClaimParameters defines resource requests for a ResourceClaim in an in-tree format understood by Kubernetes'}
				optional
					String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					io_k8s_api_resource_v1alpha2_ResourceClaimParameters_driverRequests cardinality [1..*] {doc 'DriverRequests describes all resources that are needed for the allocated claim A single claim may use resources coming from different drivers For each driver, this array has at most one entry which then may have one or more per-driver requestsMay be empty, in which case the claim can always be allocated'}
						optional
							String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_driverRequests_driverName {doc 'DriverName is the name used by the DRA driver kubelet plugin'}
							io_k8s_api_resource_v1alpha2_ResourceClaimParameters_driverRequests_requests cardinality [1..*] {doc 'Requests describes all resources that are needed from the driver'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceClaimParameters_driverRequests_requests_namedResources {doc 'NamedResources describes a request for resources with the named resources model'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_driverRequests_requests_namedResources_selector {doc 'Selector is a CEL expression which must evaluate to true if a resource instance is suitable The language is as defined in https:_kubernetesio/docs/reference/using-api/cel/In addition, for each type NamedResourcesin AttributeValue there is a map that resolves to the corresponding value of the instance under evaluation For example:   attributesquantity[a]isGreaterThan(quantity(0)) &&   attributesstringslice[b]isSorted()'}
									io_k8s_api_resource_v1alpha2_ResourceClaimParameters_driverRequests_requests_vendorParameters {doc 'VendorParameters are arbitrary setup parameters for the requested resource They are ignored while allocating a claim'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceClaimParameters_driverRequests_requests_vendorParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
							io_k8s_api_resource_v1alpha2_ResourceClaimParameters_driverRequests_vendorParameters {doc 'VendorParameters are arbitrary setup parameters for all requests of the claim They are ignored while allocating the claim'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceClaimParameters_driverRequests_vendorParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
					io_k8s_api_resource_v1alpha2_ResourceClaimParameters_generatedFrom {doc 'If this object was created from some other resource, then this links back to that resource This field is used to find the in-tree representation of the claim parameters when the parameter reference of the claim refers to some unknown type'}
						mandatory
							String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_generatedFrom_kind {doc 'Kind is the type of resource being referenced This is the same value as in the parameter object_s metadata, for example ConfigMap'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_generatedFrom_name {doc 'Name is the name of resource being referenced'}
						optional
							String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_generatedFrom_apiGroup {doc 'APIGroup is the group for the resource being referenced It is empty for the core API This matches the group in the APIVersion that is used when creating the resources'}
					String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_kind {default 'ResourceClaimParameters', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata {doc 'Standard object metadata'}
						optional
							io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimParameters_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_resource_v1alpha2_ResourceClaimParameters_shareable {doc 'Shareable indicates whether the allocated claim is meant to be shareable by multiple consumers at the same time'}
			io_k8s_api_resource_v1alpha2_ResourceClaimParametersList {doc 'ResourceClaimParametersList is a collection of ResourceClaimParameters'}
				mandatory
					io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items cardinality [1..*] {doc 'Items is the list of node resource capacity objects'}
						optional
							String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_driverRequests cardinality [1..*] {doc 'DriverRequests describes all resources that are needed for the allocated claim A single claim may use resources coming from different drivers For each driver, this array has at most one entry which then may have one or more per-driver requestsMay be empty, in which case the claim can always be allocated'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_driverRequests_driverName {doc 'DriverName is the name used by the DRA driver kubelet plugin'}
									io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_driverRequests_requests cardinality [1..*] {doc 'Requests describes all resources that are needed from the driver'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_driverRequests_requests_namedResources {doc 'NamedResources describes a request for resources with the named resources model'}
												mandatory
													String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_driverRequests_requests_namedResources_selector {doc 'Selector is a CEL expression which must evaluate to true if a resource instance is suitable The language is as defined in https:_kubernetesio/docs/reference/using-api/cel/In addition, for each type NamedResourcesin AttributeValue there is a map that resolves to the corresponding value of the instance under evaluation For example:   attributesquantity[a]isGreaterThan(quantity(0)) &&   attributesstringslice[b]isSorted()'}
											io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_driverRequests_requests_vendorParameters {doc 'VendorParameters are arbitrary setup parameters for the requested resource They are ignored while allocating a claim'}
												optional
													io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_driverRequests_requests_vendorParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
									io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_driverRequests_vendorParameters {doc 'VendorParameters are arbitrary setup parameters for all requests of the claim They are ignored while allocating the claim'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_driverRequests_vendorParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
							io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_generatedFrom {doc 'If this object was created from some other resource, then this links back to that resource This field is used to find the in-tree representation of the claim parameters when the parameter reference of the claim refers to some unknown type'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_generatedFrom_kind {doc 'Kind is the type of resource being referenced This is the same value as in the parameter object_s metadata, for example ConfigMap'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_generatedFrom_name {doc 'Name is the name of resource being referenced'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_generatedFrom_apiGroup {doc 'APIGroup is the group for the resource being referenced It is empty for the core API This matches the group in the APIVersion that is used when creating the resources'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_kind {default 'ResourceClaimParameters', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata {doc 'Standard object metadata'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_items_shareable {doc 'Shareable indicates whether the allocated claim is meant to be shareable by multiple consumers at the same time'}
				optional
					String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_kind {default 'ResourceClaimParametersList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_metadata {doc 'Standard list metadata'}
						optional
							String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimParametersList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_resource_v1alpha2_ResourceClaimParametersReference {doc 'ResourceClaimParametersReference contains enough information to let you locate the parameters for a ResourceClaim The object must be in the same namespace as the ResourceClaim'}
				mandatory
					String io_k8s_api_resource_v1alpha2_ResourceClaimParametersReference_kind {doc 'Kind is the type of resource being referenced This is the same value as in the parameter object_s metadata, for example ConfigMap'}
					String io_k8s_api_resource_v1alpha2_ResourceClaimParametersReference_name {doc 'Name is the name of resource being referenced'}
				optional
					String io_k8s_api_resource_v1alpha2_ResourceClaimParametersReference_apiGroup {doc 'APIGroup is the group for the resource being referenced It is empty for the core API This matches the group in the APIVersion that is used when creating the resources'}
			io_k8s_api_resource_v1alpha2_ResourceClaimSchedulingStatus {doc 'ResourceClaimSchedulingStatus contains information about one particular ResourceClaim with WaitForFirstConsumer allocation mode'}
				optional
					String io_k8s_api_resource_v1alpha2_ResourceClaimSchedulingStatus_name {doc 'Name matches the podspecresourceClaims[*]Name field'}
					io_k8s_api_resource_v1alpha2_ResourceClaimSchedulingStatus_unsuitableNodes cardinality [1..*] {doc 'UnsuitableNodes lists nodes that the ResourceClaim cannot be allocated forThe size of this field is limited to 128, the same as for PodSchedulingSpecPotentialNodes This may get increased in the future, but not reduced'}
						mandatory
							String io_k8s_api_resource_v1alpha2_ResourceClaimSchedulingStatus_unsuitableNodes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_resource_v1alpha2_ResourceClaimSpec {doc 'ResourceClaimSpec defines how a resource is to be allocated'}
				mandatory
					String io_k8s_api_resource_v1alpha2_ResourceClaimSpec_resourceClassName {doc 'ResourceClassName references the driver and additional parameters via the name of a ResourceClass that was created as part of the driver deployment'}
				optional
					String io_k8s_api_resource_v1alpha2_ResourceClaimSpec_allocationMode {doc 'Allocation can start immediately or when a Pod wants to use the resource WaitForFirstConsumer is the default'}
					io_k8s_api_resource_v1alpha2_ResourceClaimSpec_parametersRef {doc 'ParametersRef references a separate object with arbitrary parameters that will be used by the driver when allocating a resource for the claimThe object must be in the same namespace as the ResourceClaim'}
						mandatory
							String io_k8s_api_resource_v1alpha2_ResourceClaimSpec_parametersRef_kind {doc 'Kind is the type of resource being referenced This is the same value as in the parameter object_s metadata, for example ConfigMap'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimSpec_parametersRef_name {doc 'Name is the name of resource being referenced'}
						optional
							String io_k8s_api_resource_v1alpha2_ResourceClaimSpec_parametersRef_apiGroup {doc 'APIGroup is the group for the resource being referenced It is empty for the core API This matches the group in the APIVersion that is used when creating the resources'}
			io_k8s_api_resource_v1alpha2_ResourceClaimStatus {doc 'ResourceClaimStatus tracks whether the resource has been allocated and what the resulting attributes are'}
				optional
					io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation {doc 'Allocation is set by the resource driver once a resource or set of resources has been allocated successfully If this is not specified, the resources have not been allocated yet'}
						optional
							io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes {doc 'This field will get set by the resource driver after it has allocated the resource to inform the scheduler where it can schedule Pods using the ResourceClaimSetting this field is optional If null, the resource is available everywhere'}
								mandatory
									io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
												mandatory
													String io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
													io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
														alternative
															io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
															io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
															io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
												mandatory
													String io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
													io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
														alternative
															io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
															io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
															io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
															io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_resourceHandles cardinality [1..*] {doc 'ResourceHandles contain the state associated with an allocation that should be maintained throughout the lifetime of a claim Each ResourceHandle contains data that should be passed to a specific kubelet plugin once it lands on a node This data is returned by the driver after a successful allocation and is opaque to Kubernetes Driver documentation may explain to users how to interpret this data if neededSetting this field is optional It has a maximum size of 32 entries If null (or empty), it is assumed this allocation will be processed by a single kubelet plugin with no ResourceHandle data attached The name of the kubelet plugin invoked will match the DriverName set in the ResourceClaimStatus this AllocationResult is embedded in'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_resourceHandles_data {doc 'Data contains the opaque data associated with this ResourceHandle It is set by the controller component of the resource driver whose name matches the DriverName set in the ResourceClaimStatus this ResourceHandle is embedded in It is set at allocation time and is intended for processing by the kubelet plugin whose name matches the DriverName set in this ResourceHandleThe maximum size of this field is 16KiB This may get increased in the future, but not reduced'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_resourceHandles_driverName {doc 'DriverName specifies the name of the resource driver whose kubelet plugin should be invoked to process this ResourceHandle_s data once it lands on a node This may differ from the DriverName set in ResourceClaimStatus this ResourceHandle is embedded in'}
									io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_resourceHandles_structuredData {doc 'If StructuredData is set, then it needs to be used instead of Data'}
										mandatory
											io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_resourceHandles_structuredData_results cardinality [1..*] {doc 'Results lists all allocated driver resources'}
												optional
													io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_resourceHandles_structuredData_results_namedResources {doc 'NamedResources describes the allocation result when using the named resources model'}
														mandatory
															String io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_resourceHandles_structuredData_results_namedResources_name {doc 'Name is the name of the selected resource instance'}
													io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_resourceHandles_structuredData_results_vendorRequestParameters {doc 'VendorRequestParameters are the per-request configuration parameters from the time that the claim was allocated'}
														optional
															io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_resourceHandles_structuredData_results_vendorRequestParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_resourceHandles_structuredData_nodeName {doc 'NodeName is the name of the node providing the necessary resources if the resources are local to a node'}
											io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_resourceHandles_structuredData_vendorClaimParameters {doc 'VendorClaimParameters are the per-claim configuration parameters from the resource claim parameters at the time that the claim was allocated'}
												optional
													io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_resourceHandles_structuredData_vendorClaimParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
											io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_resourceHandles_structuredData_vendorClassParameters {doc 'VendorClassParameters are the per-claim configuration parameters from the resource class at the time that the claim was allocated'}
												optional
													io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_resourceHandles_structuredData_vendorClassParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
							io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_shareable {doc 'Shareable determines whether the resource supports more than one consumer at a time'}
					io_k8s_api_resource_v1alpha2_ResourceClaimStatus_deallocationRequested {doc 'DeallocationRequested indicates that a ResourceClaim is to be deallocatedThe driver then must deallocate this claim and reset the field together with clearing the Allocation fieldWhile DeallocationRequested is set, no new consumers may be added to ReservedFor'}
					String io_k8s_api_resource_v1alpha2_ResourceClaimStatus_driverName {doc 'DriverName is a copy of the driver name from the ResourceClass at the time when allocation started'}
					io_k8s_api_resource_v1alpha2_ResourceClaimStatus_reservedFor cardinality [1..*] {doc 'ReservedFor indicates which entities are currently allowed to use the claim A Pod which references a ResourceClaim which is not reserved for that Pod will not be startedThere can be at most 32 such reservations This may get increased in the future, but not reduced'}
						mandatory
							String io_k8s_api_resource_v1alpha2_ResourceClaimStatus_reservedFor_name {doc 'Name is the name of resource being referenced'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimStatus_reservedFor_resource {doc 'Resource is the type of resource being referenced, for example pods'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimStatus_reservedFor_uid {doc 'UID identifies exactly one incarnation of the resource'}
						optional
							String io_k8s_api_resource_v1alpha2_ResourceClaimStatus_reservedFor_apiGroup {doc 'APIGroup is the group for the resource being referenced It is empty for the core API This matches the group in the APIVersion that is used when creating the resources'}
			io_k8s_api_resource_v1alpha2_ResourceClaimTemplate {doc 'ResourceClaimTemplate is used to produce ResourceClaim objects'}
				mandatory
					io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec {doc 'Describes the ResourceClaim that is to be generatedThis field is immutable A ResourceClaim will get created by the control plane for a Pod when needed and then not get updated anymore'}
						mandatory
							io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_spec {doc 'Spec for the ResourceClaim The entire content is copied unchanged into the ResourceClaim that gets created from this template The same fields as in a ResourceClaim are also valid here'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_spec_resourceClassName {doc 'ResourceClassName references the driver and additional parameters via the name of a ResourceClass that was created as part of the driver deployment'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_spec_allocationMode {doc 'Allocation can start immediately or when a Pod wants to use the resource WaitForFirstConsumer is the default'}
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_spec_parametersRef {doc 'ParametersRef references a separate object with arbitrary parameters that will be used by the driver when allocating a resource for the claimThe object must be in the same namespace as the ResourceClaim'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_spec_parametersRef_kind {doc 'Kind is the type of resource being referenced This is the same value as in the parameter object_s metadata, for example ConfigMap'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_spec_parametersRef_name {doc 'Name is the name of resource being referenced'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_spec_parametersRef_apiGroup {doc 'APIGroup is the group for the resource being referenced It is empty for the core API This matches the group in the APIVersion that is used when creating the resources'}
						optional
							io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata {doc 'ObjectMeta may contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_spec_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
				optional
					String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_kind {default 'ResourceClaimTemplate', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata {doc 'Standard object metadata'}
						optional
							io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimTemplate_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
			io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList {doc 'ResourceClaimTemplateList is a collection of claim templates'}
				mandatory
					io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items cardinality [1..*] {doc 'Items is the list of resource claim templates'}
						mandatory
							io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec {doc 'Describes the ResourceClaim that is to be generatedThis field is immutable A ResourceClaim will get created by the control plane for a Pod when needed and then not get updated anymore'}
								mandatory
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_spec {doc 'Spec for the ResourceClaim The entire content is copied unchanged into the ResourceClaim that gets created from this template The same fields as in a ResourceClaim are also valid here'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_spec_resourceClassName {doc 'ResourceClassName references the driver and additional parameters via the name of a ResourceClass that was created as part of the driver deployment'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_spec_allocationMode {doc 'Allocation can start immediately or when a Pod wants to use the resource WaitForFirstConsumer is the default'}
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_spec_parametersRef {doc 'ParametersRef references a separate object with arbitrary parameters that will be used by the driver when allocating a resource for the claimThe object must be in the same namespace as the ResourceClaim'}
												mandatory
													String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_spec_parametersRef_kind {doc 'Kind is the type of resource being referenced This is the same value as in the parameter object_s metadata, for example ConfigMap'}
													String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_spec_parametersRef_name {doc 'Name is the name of resource being referenced'}
												optional
													String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_spec_parametersRef_apiGroup {doc 'APIGroup is the group for the resource being referenced It is empty for the core API This matches the group in the APIVersion that is used when creating the resources'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata {doc 'ObjectMeta may contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
												optional
													String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
													io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
											Integer io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_deletionGracePeriodSeconds {doc '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'}
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
												optional
													String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_finalizers cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
											Integer io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
												mandatory
													String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
													String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_managedFields cardinality [1..*] {doc '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'}
												optional
													String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_managedFields_apiVersion {doc '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'}
													String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
													io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
														optional
															io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
															io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
													String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
													io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
														alternative
															io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
															io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
													String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_managedFields_subresource {doc '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'}
													io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_managedFields_time {doc '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'}
														optional
															String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_ownerReferences cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
													String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
													String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
													String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
												optional
													io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
													io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_spec_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
						optional
							String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_kind {default 'ResourceClaimTemplate', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata {doc 'Standard object metadata'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
				optional
					String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_kind {default 'ResourceClaimTemplateList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_metadata {doc 'Standard list metadata'}
						optional
							String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec {doc 'ResourceClaimTemplateSpec contains the metadata and fields for a ResourceClaim'}
				mandatory
					io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_spec {doc 'Spec for the ResourceClaim The entire content is copied unchanged into the ResourceClaim that gets created from this template The same fields as in a ResourceClaim are also valid here'}
						mandatory
							String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_spec_resourceClassName {doc 'ResourceClassName references the driver and additional parameters via the name of a ResourceClass that was created as part of the driver deployment'}
						optional
							String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_spec_allocationMode {doc 'Allocation can start immediately or when a Pod wants to use the resource WaitForFirstConsumer is the default'}
							io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_spec_parametersRef {doc 'ParametersRef references a separate object with arbitrary parameters that will be used by the driver when allocating a resource for the claimThe object must be in the same namespace as the ResourceClaim'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_spec_parametersRef_kind {doc 'Kind is the type of resource being referenced This is the same value as in the parameter object_s metadata, for example ConfigMap'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_spec_parametersRef_name {doc 'Name is the name of resource being referenced'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_spec_parametersRef_apiGroup {doc 'APIGroup is the group for the resource being referenced It is empty for the core API This matches the group in the APIVersion that is used when creating the resources'}
				optional
					io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata {doc 'ObjectMeta may contain labels and annotations that will be copied into the PVC when creating it No other fields are allowed and will be rejected during validation'}
						optional
							io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_resource_v1alpha2_ResourceClaimTemplateSpec_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
			io_k8s_api_resource_v1alpha2_ResourceClass {doc 'ResourceClass is used by administrators to influence how resources are allocatedThis is an alpha type and requires enabling the DynamicResourceAllocation feature gate'}
				mandatory
					String io_k8s_api_resource_v1alpha2_ResourceClass_driverName {doc 'DriverName defines the name of the dynamic resource driver that is used for allocation of a ResourceClaim that uses this classResource drivers have a unique name in forward domain order (acmeexamplecom)'}
				optional
					String io_k8s_api_resource_v1alpha2_ResourceClass_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_resource_v1alpha2_ResourceClass_kind {default 'ResourceClass', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_resource_v1alpha2_ResourceClass_metadata {doc 'Standard object metadata'}
						optional
							io_k8s_api_resource_v1alpha2_ResourceClass_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClass_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_resource_v1alpha2_ResourceClass_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_resource_v1alpha2_ResourceClass_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClass_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_resource_v1alpha2_ResourceClass_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_resource_v1alpha2_ResourceClass_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_resource_v1alpha2_ResourceClass_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClass_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_resource_v1alpha2_ResourceClass_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClass_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_resource_v1alpha2_ResourceClass_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_resource_v1alpha2_ResourceClass_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_resource_v1alpha2_ResourceClass_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClass_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_resource_v1alpha2_ResourceClass_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_resource_v1alpha2_ResourceClass_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClass_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_resource_v1alpha2_ResourceClass_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_resource_v1alpha2_ResourceClass_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceClass_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_resource_v1alpha2_ResourceClass_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_resource_v1alpha2_ResourceClass_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_resource_v1alpha2_ResourceClass_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_resource_v1alpha2_ResourceClass_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_resource_v1alpha2_ResourceClass_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_resource_v1alpha2_ResourceClass_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_resource_v1alpha2_ResourceClass_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClass_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_resource_v1alpha2_ResourceClass_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_resource_v1alpha2_ResourceClass_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_resource_v1alpha2_ResourceClass_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClass_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_resource_v1alpha2_ResourceClass_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_resource_v1alpha2_ResourceClass_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_resource_v1alpha2_ResourceClass_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceClass_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_resource_v1alpha2_ResourceClass_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_resource_v1alpha2_ResourceClass_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_resource_v1alpha2_ResourceClass_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_resource_v1alpha2_ResourceClass_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_resource_v1alpha2_ResourceClass_parametersRef {doc 'ParametersRef references an arbitrary separate object that may hold parameters that will be used by the driver when allocating a resource that uses this class A dynamic resource driver can distinguish between parameters stored here and and those stored in ResourceClaimSpec'}
						mandatory
							String io_k8s_api_resource_v1alpha2_ResourceClass_parametersRef_kind {doc 'Kind is the type of resource being referenced This is the same value as in the parameter object_s metadata'}
							String io_k8s_api_resource_v1alpha2_ResourceClass_parametersRef_name {doc 'Name is the name of resource being referenced'}
						optional
							String io_k8s_api_resource_v1alpha2_ResourceClass_parametersRef_apiGroup {doc 'APIGroup is the group for the resource being referenced It is empty for the core API This matches the group in the APIVersion that is used when creating the resources'}
							String io_k8s_api_resource_v1alpha2_ResourceClass_parametersRef_namespace {doc 'Namespace that contains the referenced resource Must be empty for cluster-scoped resources and non-empty for namespaced resources'}
					io_k8s_api_resource_v1alpha2_ResourceClass_structuredParameters {doc 'If and only if allocation of claims using this class is handled via structured parameters, then StructuredParameters must be set to true'}
					io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes {doc 'Only nodes matching the selector will be considered by the scheduler when trying to find a Node that fits a Pod when that Pod uses a ResourceClaim that has not been allocated yetSetting this field is optional If null, all nodes are candidates'}
						mandatory
							io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
											io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
												alternative
													io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
													io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
													io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
											io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
												alternative
													io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
													io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
													io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
													io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_resource_v1alpha2_ResourceClassList {doc 'ResourceClassList is a collection of classes'}
				mandatory
					io_k8s_api_resource_v1alpha2_ResourceClassList_items cardinality [1..*] {doc 'Items is the list of resource classes'}
						mandatory
							String io_k8s_api_resource_v1alpha2_ResourceClassList_items_driverName {doc 'DriverName defines the name of the dynamic resource driver that is used for allocation of a ResourceClaim that uses this classResource drivers have a unique name in forward domain order (acmeexamplecom)'}
						optional
							String io_k8s_api_resource_v1alpha2_ResourceClassList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_resource_v1alpha2_ResourceClassList_items_kind {default 'ResourceClass', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata {doc 'Standard object metadata'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_resource_v1alpha2_ResourceClassList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_resource_v1alpha2_ResourceClassList_items_parametersRef {doc 'ParametersRef references an arbitrary separate object that may hold parameters that will be used by the driver when allocating a resource that uses this class A dynamic resource driver can distinguish between parameters stored here and and those stored in ResourceClaimSpec'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClassList_items_parametersRef_kind {doc 'Kind is the type of resource being referenced This is the same value as in the parameter object_s metadata'}
									String io_k8s_api_resource_v1alpha2_ResourceClassList_items_parametersRef_name {doc 'Name is the name of resource being referenced'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClassList_items_parametersRef_apiGroup {doc 'APIGroup is the group for the resource being referenced It is empty for the core API This matches the group in the APIVersion that is used when creating the resources'}
									String io_k8s_api_resource_v1alpha2_ResourceClassList_items_parametersRef_namespace {doc 'Namespace that contains the referenced resource Must be empty for cluster-scoped resources and non-empty for namespaced resources'}
							io_k8s_api_resource_v1alpha2_ResourceClassList_items_structuredParameters {doc 'If and only if allocation of claims using this class is handled via structured parameters, then StructuredParameters must be set to true'}
							io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes {doc 'Only nodes matching the selector will be considered by the scheduler when trying to find a Node that fits a Pod when that Pod uses a ResourceClaim that has not been allocated yetSetting this field is optional If null, all nodes are candidates'}
								mandatory
									io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
												mandatory
													String io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
													io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
														alternative
															io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
															io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
															io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
															io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
												mandatory
													String io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
													io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
														alternative
															io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
															io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
															io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
															io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
															io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
															io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
												optional
													io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
														mandatory
															String io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					String io_k8s_api_resource_v1alpha2_ResourceClassList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_resource_v1alpha2_ResourceClassList_kind {default 'ResourceClassList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_resource_v1alpha2_ResourceClassList_metadata {doc 'Standard list metadata'}
						optional
							String io_k8s_api_resource_v1alpha2_ResourceClassList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_resource_v1alpha2_ResourceClassList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_resource_v1alpha2_ResourceClassList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_resource_v1alpha2_ResourceClassList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_resource_v1alpha2_ResourceClassParameters {doc 'ResourceClassParameters defines resource requests for a ResourceClass in an in-tree format understood by Kubernetes'}
				optional
					String io_k8s_api_resource_v1alpha2_ResourceClassParameters_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					io_k8s_api_resource_v1alpha2_ResourceClassParameters_filters cardinality [1..*] {doc 'Filters describes additional contraints that must be met when using the class'}
						optional
							String io_k8s_api_resource_v1alpha2_ResourceClassParameters_filters_driverName {doc 'DriverName is the name used by the DRA driver kubelet plugin'}
							io_k8s_api_resource_v1alpha2_ResourceClassParameters_filters_namedResources {doc 'NamedResources describes a resource filter using the named resources model'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClassParameters_filters_namedResources_selector {doc 'Selector is a CEL expression which must evaluate to true if a resource instance is suitable The language is as defined in https:_kubernetesio/docs/reference/using-api/cel/In addition, for each type NamedResourcesin AttributeValue there is a map that resolves to the corresponding value of the instance under evaluation For example:   attributesquantity[a]isGreaterThan(quantity(0)) &&   attributesstringslice[b]isSorted()'}
					io_k8s_api_resource_v1alpha2_ResourceClassParameters_generatedFrom {doc 'If this object was created from some other resource, then this links back to that resource This field is used to find the in-tree representation of the class parameters when the parameter reference of the class refers to some unknown type'}
						mandatory
							String io_k8s_api_resource_v1alpha2_ResourceClassParameters_generatedFrom_kind {doc 'Kind is the type of resource being referenced This is the same value as in the parameter object_s metadata'}
							String io_k8s_api_resource_v1alpha2_ResourceClassParameters_generatedFrom_name {doc 'Name is the name of resource being referenced'}
						optional
							String io_k8s_api_resource_v1alpha2_ResourceClassParameters_generatedFrom_apiGroup {doc 'APIGroup is the group for the resource being referenced It is empty for the core API This matches the group in the APIVersion that is used when creating the resources'}
							String io_k8s_api_resource_v1alpha2_ResourceClassParameters_generatedFrom_namespace {doc 'Namespace that contains the referenced resource Must be empty for cluster-scoped resources and non-empty for namespaced resources'}
					String io_k8s_api_resource_v1alpha2_ResourceClassParameters_kind {default 'ResourceClassParameters', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata {doc 'Standard object metadata'}
						optional
							io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_resource_v1alpha2_ResourceClassParameters_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_resource_v1alpha2_ResourceClassParameters_vendorParameters cardinality [1..*] {doc 'VendorParameters are arbitrary setup parameters for all claims using this class They are ignored while allocating the claim There must not be more than one entry per driver'}
						optional
							String io_k8s_api_resource_v1alpha2_ResourceClassParameters_vendorParameters_driverName {doc 'DriverName is the name used by the DRA driver kubelet plugin'}
							io_k8s_api_resource_v1alpha2_ResourceClassParameters_vendorParameters_parameters {doc 'Parameters can be arbitrary setup parameters They are ignored while allocating a claim'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceClassParameters_vendorParameters_parameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
			io_k8s_api_resource_v1alpha2_ResourceClassParametersList {doc 'ResourceClassParametersList is a collection of ResourceClassParameters'}
				mandatory
					io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items cardinality [1..*] {doc 'Items is the list of node resource capacity objects'}
						optional
							String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_filters cardinality [1..*] {doc 'Filters describes additional contraints that must be met when using the class'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_filters_driverName {doc 'DriverName is the name used by the DRA driver kubelet plugin'}
									io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_filters_namedResources {doc 'NamedResources describes a resource filter using the named resources model'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_filters_namedResources_selector {doc 'Selector is a CEL expression which must evaluate to true if a resource instance is suitable The language is as defined in https:_kubernetesio/docs/reference/using-api/cel/In addition, for each type NamedResourcesin AttributeValue there is a map that resolves to the corresponding value of the instance under evaluation For example:   attributesquantity[a]isGreaterThan(quantity(0)) &&   attributesstringslice[b]isSorted()'}
							io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_generatedFrom {doc 'If this object was created from some other resource, then this links back to that resource This field is used to find the in-tree representation of the class parameters when the parameter reference of the class refers to some unknown type'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_generatedFrom_kind {doc 'Kind is the type of resource being referenced This is the same value as in the parameter object_s metadata'}
									String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_generatedFrom_name {doc 'Name is the name of resource being referenced'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_generatedFrom_apiGroup {doc 'APIGroup is the group for the resource being referenced It is empty for the core API This matches the group in the APIVersion that is used when creating the resources'}
									String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_generatedFrom_namespace {doc 'Namespace that contains the referenced resource Must be empty for cluster-scoped resources and non-empty for namespaced resources'}
							String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_kind {default 'ResourceClassParameters', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata {doc 'Standard object metadata'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_vendorParameters cardinality [1..*] {doc 'VendorParameters are arbitrary setup parameters for all claims using this class They are ignored while allocating the claim There must not be more than one entry per driver'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_vendorParameters_driverName {doc 'DriverName is the name used by the DRA driver kubelet plugin'}
									io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_vendorParameters_parameters {doc 'Parameters can be arbitrary setup parameters They are ignored while allocating a claim'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceClassParametersList_items_vendorParameters_parameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
				optional
					String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_kind {default 'ResourceClassParametersList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_resource_v1alpha2_ResourceClassParametersList_metadata {doc 'Standard list metadata'}
						optional
							String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_resource_v1alpha2_ResourceClassParametersList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_resource_v1alpha2_ResourceClassParametersList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_resource_v1alpha2_ResourceClassParametersReference {doc 'ResourceClassParametersReference contains enough information to let you locate the parameters for a ResourceClass'}
				mandatory
					String io_k8s_api_resource_v1alpha2_ResourceClassParametersReference_kind {doc 'Kind is the type of resource being referenced This is the same value as in the parameter object_s metadata'}
					String io_k8s_api_resource_v1alpha2_ResourceClassParametersReference_name {doc 'Name is the name of resource being referenced'}
				optional
					String io_k8s_api_resource_v1alpha2_ResourceClassParametersReference_apiGroup {doc 'APIGroup is the group for the resource being referenced It is empty for the core API This matches the group in the APIVersion that is used when creating the resources'}
					String io_k8s_api_resource_v1alpha2_ResourceClassParametersReference_namespace {doc 'Namespace that contains the referenced resource Must be empty for cluster-scoped resources and non-empty for namespaced resources'}
			io_k8s_api_resource_v1alpha2_ResourceFilter {doc 'ResourceFilter is a filter for resources from one particular driver'}
				optional
					String io_k8s_api_resource_v1alpha2_ResourceFilter_driverName {doc 'DriverName is the name used by the DRA driver kubelet plugin'}
					io_k8s_api_resource_v1alpha2_ResourceFilter_namedResources {doc 'NamedResources describes a resource filter using the named resources model'}
						mandatory
							String io_k8s_api_resource_v1alpha2_ResourceFilter_namedResources_selector {doc 'Selector is a CEL expression which must evaluate to true if a resource instance is suitable The language is as defined in https:_kubernetesio/docs/reference/using-api/cel/In addition, for each type NamedResourcesin AttributeValue there is a map that resolves to the corresponding value of the instance under evaluation For example:   attributesquantity[a]isGreaterThan(quantity(0)) &&   attributesstringslice[b]isSorted()'}
			io_k8s_api_resource_v1alpha2_ResourceHandle {doc 'ResourceHandle holds opaque resource data for processing by a specific kubelet plugin'}
				optional
					String io_k8s_api_resource_v1alpha2_ResourceHandle_data {doc 'Data contains the opaque data associated with this ResourceHandle It is set by the controller component of the resource driver whose name matches the DriverName set in the ResourceClaimStatus this ResourceHandle is embedded in It is set at allocation time and is intended for processing by the kubelet plugin whose name matches the DriverName set in this ResourceHandleThe maximum size of this field is 16KiB This may get increased in the future, but not reduced'}
					String io_k8s_api_resource_v1alpha2_ResourceHandle_driverName {doc 'DriverName specifies the name of the resource driver whose kubelet plugin should be invoked to process this ResourceHandle_s data once it lands on a node This may differ from the DriverName set in ResourceClaimStatus this ResourceHandle is embedded in'}
					io_k8s_api_resource_v1alpha2_ResourceHandle_structuredData {doc 'If StructuredData is set, then it needs to be used instead of Data'}
						mandatory
							io_k8s_api_resource_v1alpha2_ResourceHandle_structuredData_results cardinality [1..*] {doc 'Results lists all allocated driver resources'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceHandle_structuredData_results_namedResources {doc 'NamedResources describes the allocation result when using the named resources model'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceHandle_structuredData_results_namedResources_name {doc 'Name is the name of the selected resource instance'}
									io_k8s_api_resource_v1alpha2_ResourceHandle_structuredData_results_vendorRequestParameters {doc 'VendorRequestParameters are the per-request configuration parameters from the time that the claim was allocated'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceHandle_structuredData_results_vendorRequestParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
						optional
							String io_k8s_api_resource_v1alpha2_ResourceHandle_structuredData_nodeName {doc 'NodeName is the name of the node providing the necessary resources if the resources are local to a node'}
							io_k8s_api_resource_v1alpha2_ResourceHandle_structuredData_vendorClaimParameters {doc 'VendorClaimParameters are the per-claim configuration parameters from the resource claim parameters at the time that the claim was allocated'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceHandle_structuredData_vendorClaimParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
							io_k8s_api_resource_v1alpha2_ResourceHandle_structuredData_vendorClassParameters {doc 'VendorClassParameters are the per-claim configuration parameters from the resource class at the time that the claim was allocated'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceHandle_structuredData_vendorClassParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
			io_k8s_api_resource_v1alpha2_ResourceRequest {doc 'ResourceRequest is a request for resources from one particular driver'}
				optional
					io_k8s_api_resource_v1alpha2_ResourceRequest_namedResources {doc 'NamedResources describes a request for resources with the named resources model'}
						mandatory
							String io_k8s_api_resource_v1alpha2_ResourceRequest_namedResources_selector {doc 'Selector is a CEL expression which must evaluate to true if a resource instance is suitable The language is as defined in https:_kubernetesio/docs/reference/using-api/cel/In addition, for each type NamedResourcesin AttributeValue there is a map that resolves to the corresponding value of the instance under evaluation For example:   attributesquantity[a]isGreaterThan(quantity(0)) &&   attributesstringslice[b]isSorted()'}
					io_k8s_api_resource_v1alpha2_ResourceRequest_vendorParameters {doc 'VendorParameters are arbitrary setup parameters for the requested resource They are ignored while allocating a claim'}
						optional
							io_k8s_api_resource_v1alpha2_ResourceRequest_vendorParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
			io_k8s_api_resource_v1alpha2_ResourceSlice {doc 'ResourceSlice provides information about available resources on individual nodes'}
				mandatory
					String io_k8s_api_resource_v1alpha2_ResourceSlice_driverName {doc 'DriverName identifies the DRA driver providing the capacity information A field selector can be used to list only ResourceSlice objects with a certain driver name'}
				optional
					String io_k8s_api_resource_v1alpha2_ResourceSlice_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_resource_v1alpha2_ResourceSlice_kind {default 'ResourceSlice', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_resource_v1alpha2_ResourceSlice_metadata {doc 'Standard object metadata'}
						optional
							io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_resource_v1alpha2_ResourceSlice_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_resource_v1alpha2_ResourceSlice_namedResources {doc 'NamedResources describes available resources using the named resources model'}
						mandatory
							io_k8s_api_resource_v1alpha2_ResourceSlice_namedResources_instances cardinality [1..*] {doc 'The list of all individual resources instances currently available'}
								mandatory
									String io_k8s_api_resource_v1alpha2_ResourceSlice_namedResources_instances_name {doc 'Name is unique identifier among all resource instances managed by the driver on the node It must be a DNS subdomain'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceSlice_namedResources_instances_attributes cardinality [1..*] {doc 'Attributes defines the attributes of this resource instance The name of each attribute must be unique'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceSlice_namedResources_instances_attributes_name {doc 'Name is unique identifier among all resource instances managed by the driver on the node It must be a DNS subdomain'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceSlice_namedResources_instances_attributes_bool {doc 'BoolValue is a true/false value'}
											Integer io_k8s_api_resource_v1alpha2_ResourceSlice_namedResources_instances_attributes_int {doc 'IntValue is a 64-bit integer'}
											io_k8s_api_resource_v1alpha2_ResourceSlice_namedResources_instances_attributes_intSlice {doc 'IntSliceValue is an array of 64-bit integers'}
												mandatory
													io_k8s_api_resource_v1alpha2_ResourceSlice_namedResources_instances_attributes_intSlice_ints cardinality [1..*] {doc 'Ints is the slice of 64-bit integers'}
														mandatory
															Integer io_k8s_api_resource_v1alpha2_ResourceSlice_namedResources_instances_attributes_intSlice_ints_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
											io_k8s_api_resource_v1alpha2_ResourceSlice_namedResources_instances_attributes_quantity {doc 'QuantityValue is a quantity'}
												alternative
													String io_k8s_api_resource_v1alpha2_ResourceSlice_namedResources_instances_attributes_quantity_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_resource_v1alpha2_ResourceSlice_namedResources_instances_attributes_quantity_asNumber {doc 'Sub-feature added of type Number'}
											String io_k8s_api_resource_v1alpha2_ResourceSlice_namedResources_instances_attributes_string {doc 'StringValue is a string'}
											io_k8s_api_resource_v1alpha2_ResourceSlice_namedResources_instances_attributes_stringSlice {doc 'StringSliceValue is an array of strings'}
												mandatory
													io_k8s_api_resource_v1alpha2_ResourceSlice_namedResources_instances_attributes_stringSlice_strings cardinality [1..*] {doc 'Strings is the slice of strings'}
														mandatory
															String io_k8s_api_resource_v1alpha2_ResourceSlice_namedResources_instances_attributes_stringSlice_strings_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											String io_k8s_api_resource_v1alpha2_ResourceSlice_namedResources_instances_attributes_version {doc 'VersionValue is a semantic version according to semverorg spec 200'}
					String io_k8s_api_resource_v1alpha2_ResourceSlice_nodeName {doc 'NodeName identifies the node which provides the resources if they are local to a nodeA field selector can be used to list only ResourceSlice objects with a certain node name'}
			io_k8s_api_resource_v1alpha2_ResourceSliceList {doc 'ResourceSliceList is a collection of ResourceSlices'}
				mandatory
					io_k8s_api_resource_v1alpha2_ResourceSliceList_items cardinality [1..*] {doc 'Items is the list of node resource capacity objects'}
						mandatory
							String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_driverName {doc 'DriverName identifies the DRA driver providing the capacity information A field selector can be used to list only ResourceSlice objects with a certain driver name'}
						optional
							String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_kind {default 'ResourceSlice', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata {doc 'Standard object metadata'}
								optional
									io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_resource_v1alpha2_ResourceSliceList_items_namedResources {doc 'NamedResources describes available resources using the named resources model'}
								mandatory
									io_k8s_api_resource_v1alpha2_ResourceSliceList_items_namedResources_instances cardinality [1..*] {doc 'The list of all individual resources instances currently available'}
										mandatory
											String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_namedResources_instances_name {doc 'Name is unique identifier among all resource instances managed by the driver on the node It must be a DNS subdomain'}
										optional
											io_k8s_api_resource_v1alpha2_ResourceSliceList_items_namedResources_instances_attributes cardinality [1..*] {doc 'Attributes defines the attributes of this resource instance The name of each attribute must be unique'}
												mandatory
													String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_namedResources_instances_attributes_name {doc 'Name is unique identifier among all resource instances managed by the driver on the node It must be a DNS subdomain'}
												optional
													io_k8s_api_resource_v1alpha2_ResourceSliceList_items_namedResources_instances_attributes_bool {doc 'BoolValue is a true/false value'}
													Integer io_k8s_api_resource_v1alpha2_ResourceSliceList_items_namedResources_instances_attributes_int {doc 'IntValue is a 64-bit integer'}
													io_k8s_api_resource_v1alpha2_ResourceSliceList_items_namedResources_instances_attributes_intSlice {doc 'IntSliceValue is an array of 64-bit integers'}
														mandatory
															io_k8s_api_resource_v1alpha2_ResourceSliceList_items_namedResources_instances_attributes_intSlice_ints cardinality [1..*] {doc 'Ints is the slice of 64-bit integers'}
																mandatory
																	Integer io_k8s_api_resource_v1alpha2_ResourceSliceList_items_namedResources_instances_attributes_intSlice_ints_IntegerValue {doc 'Added Integer mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Integers: IntegerValue'}
													io_k8s_api_resource_v1alpha2_ResourceSliceList_items_namedResources_instances_attributes_quantity {doc 'QuantityValue is a quantity'}
														alternative
															String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_namedResources_instances_attributes_quantity_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_resource_v1alpha2_ResourceSliceList_items_namedResources_instances_attributes_quantity_asNumber {doc 'Sub-feature added of type Number'}
													String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_namedResources_instances_attributes_string {doc 'StringValue is a string'}
													io_k8s_api_resource_v1alpha2_ResourceSliceList_items_namedResources_instances_attributes_stringSlice {doc 'StringSliceValue is an array of strings'}
														mandatory
															io_k8s_api_resource_v1alpha2_ResourceSliceList_items_namedResources_instances_attributes_stringSlice_strings cardinality [1..*] {doc 'Strings is the slice of strings'}
																mandatory
																	String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_namedResources_instances_attributes_stringSlice_strings_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_namedResources_instances_attributes_version {doc 'VersionValue is a semantic version according to semverorg spec 200'}
							String io_k8s_api_resource_v1alpha2_ResourceSliceList_items_nodeName {doc 'NodeName identifies the node which provides the resources if they are local to a nodeA field selector can be used to list only ResourceSlice objects with a certain node name'}
				optional
					String io_k8s_api_resource_v1alpha2_ResourceSliceList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_resource_v1alpha2_ResourceSliceList_kind {default 'ResourceSliceList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_resource_v1alpha2_ResourceSliceList_metadata {doc 'Standard list metadata'}
						optional
							String io_k8s_api_resource_v1alpha2_ResourceSliceList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_resource_v1alpha2_ResourceSliceList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_resource_v1alpha2_ResourceSliceList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_resource_v1alpha2_ResourceSliceList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_resource_v1alpha2_StructuredResourceHandle {doc 'StructuredResourceHandle is the in-tree representation of the allocation result'}
				mandatory
					io_k8s_api_resource_v1alpha2_StructuredResourceHandle_results cardinality [1..*] {doc 'Results lists all allocated driver resources'}
						optional
							io_k8s_api_resource_v1alpha2_StructuredResourceHandle_results_namedResources {doc 'NamedResources describes the allocation result when using the named resources model'}
								mandatory
									String io_k8s_api_resource_v1alpha2_StructuredResourceHandle_results_namedResources_name {doc 'Name is the name of the selected resource instance'}
							io_k8s_api_resource_v1alpha2_StructuredResourceHandle_results_vendorRequestParameters {doc 'VendorRequestParameters are the per-request configuration parameters from the time that the claim was allocated'}
								optional
									io_k8s_api_resource_v1alpha2_StructuredResourceHandle_results_vendorRequestParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
				optional
					String io_k8s_api_resource_v1alpha2_StructuredResourceHandle_nodeName {doc 'NodeName is the name of the node providing the necessary resources if the resources are local to a node'}
					io_k8s_api_resource_v1alpha2_StructuredResourceHandle_vendorClaimParameters {doc 'VendorClaimParameters are the per-claim configuration parameters from the resource claim parameters at the time that the claim was allocated'}
						optional
							io_k8s_api_resource_v1alpha2_StructuredResourceHandle_vendorClaimParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
					io_k8s_api_resource_v1alpha2_StructuredResourceHandle_vendorClassParameters {doc 'VendorClassParameters are the per-claim configuration parameters from the resource class at the time that the claim was allocated'}
						optional
							io_k8s_api_resource_v1alpha2_StructuredResourceHandle_vendorClassParameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
			io_k8s_api_resource_v1alpha2_VendorParameters {doc 'VendorParameters are opaque parameters for one particular driver'}
				optional
					String io_k8s_api_resource_v1alpha2_VendorParameters_driverName {doc 'DriverName is the name used by the DRA driver kubelet plugin'}
					io_k8s_api_resource_v1alpha2_VendorParameters_parameters {doc 'Parameters can be arbitrary setup parameters They are ignored while allocating a claim'}
						optional
							io_k8s_api_resource_v1alpha2_VendorParameters_parameters_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
			io_k8s_api_scheduling_v1_PriorityClass {doc 'PriorityClass defines mapping from a priority class name to the priority integer value The value can be any valid integer'}
				mandatory
					Integer io_k8s_api_scheduling_v1_PriorityClass_value {doc 'value represents the integer value of this priority class This is the actual priority that pods receive when they have the name of this class in their pod spec'}
				optional
					String io_k8s_api_scheduling_v1_PriorityClass_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_scheduling_v1_PriorityClass_description {doc 'description is an arbitrary string that usually provides guidelines on when this priority class should be used'}
					io_k8s_api_scheduling_v1_PriorityClass_globalDefault {doc 'globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class Only one PriorityClass can be marked as globalDefault However, if more than one PriorityClasses exists with their globalDefault field set to true, the smallest value of such global default PriorityClasses will be used as the default priority'}
					String io_k8s_api_scheduling_v1_PriorityClass_kind {default 'PriorityClass', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_scheduling_v1_PriorityClass_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_scheduling_v1_PriorityClass_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_scheduling_v1_PriorityClass_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_scheduling_v1_PriorityClass_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_scheduling_v1_PriorityClass_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_scheduling_v1_PriorityClass_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_scheduling_v1_PriorityClass_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_scheduling_v1_PriorityClass_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_scheduling_v1_PriorityClass_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_scheduling_v1_PriorityClass_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_scheduling_v1_PriorityClass_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_scheduling_v1_PriorityClass_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_scheduling_v1_PriorityClass_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_scheduling_v1_PriorityClass_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_scheduling_v1_PriorityClass_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_scheduling_v1_PriorityClass_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_scheduling_v1_PriorityClass_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_scheduling_v1_PriorityClass_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_scheduling_v1_PriorityClass_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_scheduling_v1_PriorityClass_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_scheduling_v1_PriorityClass_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_scheduling_v1_PriorityClass_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_scheduling_v1_PriorityClass_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_scheduling_v1_PriorityClass_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_scheduling_v1_PriorityClass_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_scheduling_v1_PriorityClass_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_scheduling_v1_PriorityClass_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_scheduling_v1_PriorityClass_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_scheduling_v1_PriorityClass_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_scheduling_v1_PriorityClass_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_scheduling_v1_PriorityClass_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_scheduling_v1_PriorityClass_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_scheduling_v1_PriorityClass_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_scheduling_v1_PriorityClass_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_scheduling_v1_PriorityClass_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_scheduling_v1_PriorityClass_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_scheduling_v1_PriorityClass_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_scheduling_v1_PriorityClass_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_scheduling_v1_PriorityClass_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_scheduling_v1_PriorityClass_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_scheduling_v1_PriorityClass_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_scheduling_v1_PriorityClass_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_scheduling_v1_PriorityClass_preemptionPolicy {doc 'preemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
						alternative
							io_k8s_api_scheduling_v1_PriorityClass_preemptionPolicy_Never {doc 'Specific value: Never'}
							io_k8s_api_scheduling_v1_PriorityClass_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
			io_k8s_api_scheduling_v1_PriorityClassList {doc 'PriorityClassList is a collection of priority classes'}
				mandatory
					io_k8s_api_scheduling_v1_PriorityClassList_items cardinality [1..*] {doc 'items is the list of PriorityClasses'}
						mandatory
							Integer io_k8s_api_scheduling_v1_PriorityClassList_items_value {doc 'value represents the integer value of this priority class This is the actual priority that pods receive when they have the name of this class in their pod spec'}
						optional
							String io_k8s_api_scheduling_v1_PriorityClassList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_scheduling_v1_PriorityClassList_items_description {doc 'description is an arbitrary string that usually provides guidelines on when this priority class should be used'}
							io_k8s_api_scheduling_v1_PriorityClassList_items_globalDefault {doc 'globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class Only one PriorityClass can be marked as globalDefault However, if more than one PriorityClasses exists with their globalDefault field set to true, the smallest value of such global default PriorityClasses will be used as the default priority'}
							String io_k8s_api_scheduling_v1_PriorityClassList_items_kind {default 'PriorityClass', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_scheduling_v1_PriorityClassList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_scheduling_v1_PriorityClassList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_scheduling_v1_PriorityClassList_items_preemptionPolicy {doc 'preemptionPolicy is the Policy for preempting pods with lower priority One of Never, PreemptLowerPriority Defaults to PreemptLowerPriority if unset'}
								alternative
									io_k8s_api_scheduling_v1_PriorityClassList_items_preemptionPolicy_Never {doc 'Specific value: Never'}
									io_k8s_api_scheduling_v1_PriorityClassList_items_preemptionPolicy_PreemptLowerPriority {doc 'Specific value: PreemptLowerPriority'}
				optional
					String io_k8s_api_scheduling_v1_PriorityClassList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_scheduling_v1_PriorityClassList_kind {default 'PriorityClassList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_scheduling_v1_PriorityClassList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_scheduling_v1_PriorityClassList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_scheduling_v1_PriorityClassList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_scheduling_v1_PriorityClassList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_scheduling_v1_PriorityClassList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_storage_v1_CSIDriver {doc 'CSIDriver captures information about a Container Storage Interface (CSI) volume driver deployed on the cluster Kubernetes attach detach controller uses this object to determine whether attach is required Kubelet uses this object to determine whether pod information needs to be passed on mount CSIDriver objects are non-namespaced'}
				mandatory
					io_k8s_api_storage_v1_CSIDriver_spec {doc 'spec represents the specification of the CSI Driver'}
						optional
							io_k8s_api_storage_v1_CSIDriver_spec_attachRequired {doc 'attachRequired indicates this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that the Kubernetes attach detach controller should call the attach volume interface which checks the volumeattachment status and waits until the volume is attached before proceeding to mounting The CSI external-attacher coordinates with CSI volume driver and updates the volumeattachment status when the attach operation is complete If the CSIDriverRegistry feature gate is enabled and the value is specified to false, the attach operation will be skipped Otherwise the attach operation will be calledThis field is immutable'}
							String io_k8s_api_storage_v1_CSIDriver_spec_fsGroupPolicy {doc 'fsGroupPolicy defines if the underlying volume supports changing ownership and permission of the volume before being mounted Refer to the specific FSGroupPolicy values for additional detailsThis field was immutable in Kubernetes < 129 and now is mutableDefaults to ReadWriteOnceWithFSType, which will examine each volume to determine if Kubernetes should modify ownership and permissions of the volume With the default policy the defined fsGroup will only be applied if a fstype is defined and the volume_s access mode contains ReadWriteOnce'}
							io_k8s_api_storage_v1_CSIDriver_spec_podInfoOnMount {doc 'podInfoOnMount indicates this CSI volume driver requires additional pod information (like podName, podUID, etc) during mount operations, if set to true If set to false, pod information will not be passed on mount Default is falseThe CSI driver specifies podInfoOnMount as part of driver deployment If true, Kubelet will pass pod information as VolumeContext in the CSI NodePublishVolume() calls The CSI driver is responsible for parsing and validating the information passed in as VolumeContextThe following VolumeContext will be passed if podInfoOnMount is set to true This list might grow, but the prefix will be used csistoragek8sio/podname: podName csistoragek8sio/podnamespace: podNamespace csistoragek8sio/poduid: string(podUID) csistoragek8sio/ephemeral: true if the volume is an ephemeral inline volume                                defined by a CSIVolumeSource, otherwise falsecsistoragek8sio/ephemeral is a new feature in Kubernetes 116 It is only required for drivers which support both the Persistent and Ephemeral VolumeLifecycleMode Other drivers can leave pod info disabled and/or ignore this field As Kubernetes 115 doesn_t support this field, drivers can only support one mode when deployed on such a cluster and the deployment determines which mode that is, for example via a command line parameter of the driverThis field was immutable in Kubernetes < 129 and now is mutable'}
							io_k8s_api_storage_v1_CSIDriver_spec_requiresRepublish {default false, doc 'requiresRepublish indicates the CSI driver wants NodePublishVolume being periodically called to reflect any possible change in the mounted volume This field defaults to falseNote: After a successful initial NodePublishVolume call, subsequent calls to NodePublishVolume should only update the contents of the volume New mount points will not be seen by a running container'}
							io_k8s_api_storage_v1_CSIDriver_spec_seLinuxMount {default false, doc 'seLinuxMount specifies if the CSI driver supports -o context mount optionWhen true, the CSI driver must ensure that all volumes provided by this CSI driver can be mounted separately with different -o context options This is typical for storage backends that provide volumes as filesystems on block devices or as independent shared volumes Kubernetes will call NodeStage / NodePublish with -o context=xyz mount option when mounting a ReadWriteOncePod volume used in Pod that has explicitly set SELinux context In the future, it may be expanded to other volume AccessModes In any case, Kubernetes will ensure that the volume is mounted only with a single SELinux contextWhen false, Kubernetes won_t pass any special SELinux mount options to the driver This is typical for volumes that represent subdirectories of a bigger shared filesystemDefault is false'}
							io_k8s_api_storage_v1_CSIDriver_spec_storageCapacity {doc 'storageCapacity indicates that the CSI volume driver wants pod scheduling to consider the storage capacity that the driver deployment will report by creating CSIStorageCapacity objects with capacity information, if set to trueThe check can be enabled immediately when deploying a driver In that case, provisioning new volumes with late binding will pause until the driver deployment has published some suitable CSIStorageCapacity objectAlternatively, the driver can be deployed with the field unset or false and it can be flipped later when storage capacity information has been publishedThis field was immutable in Kubernetes <= 122 and now is mutable'}
							io_k8s_api_storage_v1_CSIDriver_spec_tokenRequests cardinality [1..*] {doc 'tokenRequests indicates the CSI driver needs pods_ service account tokens it is mounting volume for to do necessary authentication Kubelet will pass the tokens in VolumeContext in the CSI NodePublishVolume calls The CSI driver should parse and validate the following VolumeContext: csistoragek8sio/serviceAccounttokens:   <audience>:     token: <token>,    expirationTimestamp: <expiration timestamp in RFC3339>,  ,  Note: Audience in each TokenRequest should be different and at most one token is empty string To receive a new token after expiry, RequiresRepublish can be used to trigger NodePublishVolume periodically'}
								mandatory
									String io_k8s_api_storage_v1_CSIDriver_spec_tokenRequests_audience {doc 'audience is the intended audience of the token in TokenRequestSpec It will default to the audiences of kube apiserver'}
								optional
									Integer io_k8s_api_storage_v1_CSIDriver_spec_tokenRequests_expirationSeconds {doc 'expirationSeconds is the duration of validity of the token in TokenRequestSpec It has the same default value of ExpirationSeconds in TokenRequestSpec'}
							io_k8s_api_storage_v1_CSIDriver_spec_volumeLifecycleModes cardinality [1..*] {doc 'volumeLifecycleModes defines what kind of volumes this CSI volume driver supports The default if the list is empty is Persistent, which is the usage defined by the CSI specification and implemented in Kubernetes via the usual PV/PVC mechanismThe other mode is Ephemeral In this mode, volumes are defined inline inside the pod spec with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volumeFor more information about implementing this mode, see https:_kubernetes-csigithubio/docs/ephemeral-local-volumeshtml A driver can support one or more of these modes and more modes may be added in the futureThis field is beta This field is immutable'}
								mandatory
									String io_k8s_api_storage_v1_CSIDriver_spec_volumeLifecycleModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					String io_k8s_api_storage_v1_CSIDriver_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_storage_v1_CSIDriver_kind {default 'CSIDriver', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_storage_v1_CSIDriver_metadata {doc 'Standard object metadata metadataName indicates the name of the CSI driver that this object refers to; it MUST be the same name returned by the CSI GetPluginName() call for that driver The driver name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), dots (), and alphanumerics between More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_storage_v1_CSIDriver_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_storage_v1_CSIDriver_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_storage_v1_CSIDriver_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_storage_v1_CSIDriver_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_storage_v1_CSIDriver_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_storage_v1_CSIDriver_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_storage_v1_CSIDriver_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_storage_v1_CSIDriver_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_storage_v1_CSIDriver_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_storage_v1_CSIDriver_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_storage_v1_CSIDriver_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_storage_v1_CSIDriver_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_storage_v1_CSIDriver_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_storage_v1_CSIDriver_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_storage_v1_CSIDriver_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_storage_v1_CSIDriver_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_storage_v1_CSIDriver_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_storage_v1_CSIDriver_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_storage_v1_CSIDriver_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_storage_v1_CSIDriver_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_storage_v1_CSIDriver_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_storage_v1_CSIDriver_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_storage_v1_CSIDriver_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_storage_v1_CSIDriver_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_storage_v1_CSIDriver_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_storage_v1_CSIDriver_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_storage_v1_CSIDriver_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_storage_v1_CSIDriver_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_storage_v1_CSIDriver_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_storage_v1_CSIDriver_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_storage_v1_CSIDriver_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_storage_v1_CSIDriver_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_storage_v1_CSIDriver_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_storage_v1_CSIDriver_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_storage_v1_CSIDriver_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_storage_v1_CSIDriver_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_storage_v1_CSIDriver_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_storage_v1_CSIDriver_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_storage_v1_CSIDriver_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_storage_v1_CSIDriver_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_storage_v1_CSIDriver_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
			io_k8s_api_storage_v1_CSIDriverList {doc 'CSIDriverList is a collection of CSIDriver objects'}
				mandatory
					io_k8s_api_storage_v1_CSIDriverList_items cardinality [1..*] {doc 'items is the list of CSIDriver'}
						mandatory
							io_k8s_api_storage_v1_CSIDriverList_items_spec {doc 'spec represents the specification of the CSI Driver'}
								optional
									io_k8s_api_storage_v1_CSIDriverList_items_spec_attachRequired {doc 'attachRequired indicates this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that the Kubernetes attach detach controller should call the attach volume interface which checks the volumeattachment status and waits until the volume is attached before proceeding to mounting The CSI external-attacher coordinates with CSI volume driver and updates the volumeattachment status when the attach operation is complete If the CSIDriverRegistry feature gate is enabled and the value is specified to false, the attach operation will be skipped Otherwise the attach operation will be calledThis field is immutable'}
									String io_k8s_api_storage_v1_CSIDriverList_items_spec_fsGroupPolicy {doc 'fsGroupPolicy defines if the underlying volume supports changing ownership and permission of the volume before being mounted Refer to the specific FSGroupPolicy values for additional detailsThis field was immutable in Kubernetes < 129 and now is mutableDefaults to ReadWriteOnceWithFSType, which will examine each volume to determine if Kubernetes should modify ownership and permissions of the volume With the default policy the defined fsGroup will only be applied if a fstype is defined and the volume_s access mode contains ReadWriteOnce'}
									io_k8s_api_storage_v1_CSIDriverList_items_spec_podInfoOnMount {doc 'podInfoOnMount indicates this CSI volume driver requires additional pod information (like podName, podUID, etc) during mount operations, if set to true If set to false, pod information will not be passed on mount Default is falseThe CSI driver specifies podInfoOnMount as part of driver deployment If true, Kubelet will pass pod information as VolumeContext in the CSI NodePublishVolume() calls The CSI driver is responsible for parsing and validating the information passed in as VolumeContextThe following VolumeContext will be passed if podInfoOnMount is set to true This list might grow, but the prefix will be used csistoragek8sio/podname: podName csistoragek8sio/podnamespace: podNamespace csistoragek8sio/poduid: string(podUID) csistoragek8sio/ephemeral: true if the volume is an ephemeral inline volume                                defined by a CSIVolumeSource, otherwise falsecsistoragek8sio/ephemeral is a new feature in Kubernetes 116 It is only required for drivers which support both the Persistent and Ephemeral VolumeLifecycleMode Other drivers can leave pod info disabled and/or ignore this field As Kubernetes 115 doesn_t support this field, drivers can only support one mode when deployed on such a cluster and the deployment determines which mode that is, for example via a command line parameter of the driverThis field was immutable in Kubernetes < 129 and now is mutable'}
									io_k8s_api_storage_v1_CSIDriverList_items_spec_requiresRepublish {default false, doc 'requiresRepublish indicates the CSI driver wants NodePublishVolume being periodically called to reflect any possible change in the mounted volume This field defaults to falseNote: After a successful initial NodePublishVolume call, subsequent calls to NodePublishVolume should only update the contents of the volume New mount points will not be seen by a running container'}
									io_k8s_api_storage_v1_CSIDriverList_items_spec_seLinuxMount {default false, doc 'seLinuxMount specifies if the CSI driver supports -o context mount optionWhen true, the CSI driver must ensure that all volumes provided by this CSI driver can be mounted separately with different -o context options This is typical for storage backends that provide volumes as filesystems on block devices or as independent shared volumes Kubernetes will call NodeStage / NodePublish with -o context=xyz mount option when mounting a ReadWriteOncePod volume used in Pod that has explicitly set SELinux context In the future, it may be expanded to other volume AccessModes In any case, Kubernetes will ensure that the volume is mounted only with a single SELinux contextWhen false, Kubernetes won_t pass any special SELinux mount options to the driver This is typical for volumes that represent subdirectories of a bigger shared filesystemDefault is false'}
									io_k8s_api_storage_v1_CSIDriverList_items_spec_storageCapacity {doc 'storageCapacity indicates that the CSI volume driver wants pod scheduling to consider the storage capacity that the driver deployment will report by creating CSIStorageCapacity objects with capacity information, if set to trueThe check can be enabled immediately when deploying a driver In that case, provisioning new volumes with late binding will pause until the driver deployment has published some suitable CSIStorageCapacity objectAlternatively, the driver can be deployed with the field unset or false and it can be flipped later when storage capacity information has been publishedThis field was immutable in Kubernetes <= 122 and now is mutable'}
									io_k8s_api_storage_v1_CSIDriverList_items_spec_tokenRequests cardinality [1..*] {doc 'tokenRequests indicates the CSI driver needs pods_ service account tokens it is mounting volume for to do necessary authentication Kubelet will pass the tokens in VolumeContext in the CSI NodePublishVolume calls The CSI driver should parse and validate the following VolumeContext: csistoragek8sio/serviceAccounttokens:   <audience>:     token: <token>,    expirationTimestamp: <expiration timestamp in RFC3339>,  ,  Note: Audience in each TokenRequest should be different and at most one token is empty string To receive a new token after expiry, RequiresRepublish can be used to trigger NodePublishVolume periodically'}
										mandatory
											String io_k8s_api_storage_v1_CSIDriverList_items_spec_tokenRequests_audience {doc 'audience is the intended audience of the token in TokenRequestSpec It will default to the audiences of kube apiserver'}
										optional
											Integer io_k8s_api_storage_v1_CSIDriverList_items_spec_tokenRequests_expirationSeconds {doc 'expirationSeconds is the duration of validity of the token in TokenRequestSpec It has the same default value of ExpirationSeconds in TokenRequestSpec'}
									io_k8s_api_storage_v1_CSIDriverList_items_spec_volumeLifecycleModes cardinality [1..*] {doc 'volumeLifecycleModes defines what kind of volumes this CSI volume driver supports The default if the list is empty is Persistent, which is the usage defined by the CSI specification and implemented in Kubernetes via the usual PV/PVC mechanismThe other mode is Ephemeral In this mode, volumes are defined inline inside the pod spec with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volumeFor more information about implementing this mode, see https:_kubernetes-csigithubio/docs/ephemeral-local-volumeshtml A driver can support one or more of these modes and more modes may be added in the futureThis field is beta This field is immutable'}
										mandatory
											String io_k8s_api_storage_v1_CSIDriverList_items_spec_volumeLifecycleModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							String io_k8s_api_storage_v1_CSIDriverList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_storage_v1_CSIDriverList_items_kind {default 'CSIDriver', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_storage_v1_CSIDriverList_items_metadata {doc 'Standard object metadata metadataName indicates the name of the CSI driver that this object refers to; it MUST be the same name returned by the CSI GetPluginName() call for that driver The driver name must be 63 characters or less, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), dots (), and alphanumerics between More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_storage_v1_CSIDriverList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_storage_v1_CSIDriverList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_storage_v1_CSIDriverList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_storage_v1_CSIDriverList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_storage_v1_CSIDriverList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_storage_v1_CSIDriverList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_storage_v1_CSIDriverList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_storage_v1_CSIDriverList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_storage_v1_CSIDriverList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_storage_v1_CSIDriverList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_storage_v1_CSIDriverList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_storage_v1_CSIDriverList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_storage_v1_CSIDriverList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_storage_v1_CSIDriverList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_storage_v1_CSIDriverList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_storage_v1_CSIDriverList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_storage_v1_CSIDriverList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_storage_v1_CSIDriverList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_storage_v1_CSIDriverList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_storage_v1_CSIDriverList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_storage_v1_CSIDriverList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_storage_v1_CSIDriverList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_storage_v1_CSIDriverList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_storage_v1_CSIDriverList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_storage_v1_CSIDriverList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_storage_v1_CSIDriverList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_storage_v1_CSIDriverList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_storage_v1_CSIDriverList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_storage_v1_CSIDriverList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_storage_v1_CSIDriverList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_storage_v1_CSIDriverList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_storage_v1_CSIDriverList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_storage_v1_CSIDriverList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_storage_v1_CSIDriverList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_storage_v1_CSIDriverList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_storage_v1_CSIDriverList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_storage_v1_CSIDriverList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_storage_v1_CSIDriverList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_storage_v1_CSIDriverList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_storage_v1_CSIDriverList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_storage_v1_CSIDriverList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
				optional
					String io_k8s_api_storage_v1_CSIDriverList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_storage_v1_CSIDriverList_kind {default 'CSIDriverList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_storage_v1_CSIDriverList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_storage_v1_CSIDriverList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_storage_v1_CSIDriverList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_storage_v1_CSIDriverList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_storage_v1_CSIDriverList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_storage_v1_CSIDriverSpec {doc 'CSIDriverSpec is the specification of a CSIDriver'}
				optional
					io_k8s_api_storage_v1_CSIDriverSpec_attachRequired {doc 'attachRequired indicates this CSI volume driver requires an attach operation (because it implements the CSI ControllerPublishVolume() method), and that the Kubernetes attach detach controller should call the attach volume interface which checks the volumeattachment status and waits until the volume is attached before proceeding to mounting The CSI external-attacher coordinates with CSI volume driver and updates the volumeattachment status when the attach operation is complete If the CSIDriverRegistry feature gate is enabled and the value is specified to false, the attach operation will be skipped Otherwise the attach operation will be calledThis field is immutable'}
					String io_k8s_api_storage_v1_CSIDriverSpec_fsGroupPolicy {doc 'fsGroupPolicy defines if the underlying volume supports changing ownership and permission of the volume before being mounted Refer to the specific FSGroupPolicy values for additional detailsThis field was immutable in Kubernetes < 129 and now is mutableDefaults to ReadWriteOnceWithFSType, which will examine each volume to determine if Kubernetes should modify ownership and permissions of the volume With the default policy the defined fsGroup will only be applied if a fstype is defined and the volume_s access mode contains ReadWriteOnce'}
					io_k8s_api_storage_v1_CSIDriverSpec_podInfoOnMount {doc 'podInfoOnMount indicates this CSI volume driver requires additional pod information (like podName, podUID, etc) during mount operations, if set to true If set to false, pod information will not be passed on mount Default is falseThe CSI driver specifies podInfoOnMount as part of driver deployment If true, Kubelet will pass pod information as VolumeContext in the CSI NodePublishVolume() calls The CSI driver is responsible for parsing and validating the information passed in as VolumeContextThe following VolumeContext will be passed if podInfoOnMount is set to true This list might grow, but the prefix will be used csistoragek8sio/podname: podName csistoragek8sio/podnamespace: podNamespace csistoragek8sio/poduid: string(podUID) csistoragek8sio/ephemeral: true if the volume is an ephemeral inline volume                                defined by a CSIVolumeSource, otherwise falsecsistoragek8sio/ephemeral is a new feature in Kubernetes 116 It is only required for drivers which support both the Persistent and Ephemeral VolumeLifecycleMode Other drivers can leave pod info disabled and/or ignore this field As Kubernetes 115 doesn_t support this field, drivers can only support one mode when deployed on such a cluster and the deployment determines which mode that is, for example via a command line parameter of the driverThis field was immutable in Kubernetes < 129 and now is mutable'}
					io_k8s_api_storage_v1_CSIDriverSpec_requiresRepublish {default false, doc 'requiresRepublish indicates the CSI driver wants NodePublishVolume being periodically called to reflect any possible change in the mounted volume This field defaults to falseNote: After a successful initial NodePublishVolume call, subsequent calls to NodePublishVolume should only update the contents of the volume New mount points will not be seen by a running container'}
					io_k8s_api_storage_v1_CSIDriverSpec_seLinuxMount {default false, doc 'seLinuxMount specifies if the CSI driver supports -o context mount optionWhen true, the CSI driver must ensure that all volumes provided by this CSI driver can be mounted separately with different -o context options This is typical for storage backends that provide volumes as filesystems on block devices or as independent shared volumes Kubernetes will call NodeStage / NodePublish with -o context=xyz mount option when mounting a ReadWriteOncePod volume used in Pod that has explicitly set SELinux context In the future, it may be expanded to other volume AccessModes In any case, Kubernetes will ensure that the volume is mounted only with a single SELinux contextWhen false, Kubernetes won_t pass any special SELinux mount options to the driver This is typical for volumes that represent subdirectories of a bigger shared filesystemDefault is false'}
					io_k8s_api_storage_v1_CSIDriverSpec_storageCapacity {doc 'storageCapacity indicates that the CSI volume driver wants pod scheduling to consider the storage capacity that the driver deployment will report by creating CSIStorageCapacity objects with capacity information, if set to trueThe check can be enabled immediately when deploying a driver In that case, provisioning new volumes with late binding will pause until the driver deployment has published some suitable CSIStorageCapacity objectAlternatively, the driver can be deployed with the field unset or false and it can be flipped later when storage capacity information has been publishedThis field was immutable in Kubernetes <= 122 and now is mutable'}
					io_k8s_api_storage_v1_CSIDriverSpec_tokenRequests cardinality [1..*] {doc 'tokenRequests indicates the CSI driver needs pods_ service account tokens it is mounting volume for to do necessary authentication Kubelet will pass the tokens in VolumeContext in the CSI NodePublishVolume calls The CSI driver should parse and validate the following VolumeContext: csistoragek8sio/serviceAccounttokens:   <audience>:     token: <token>,    expirationTimestamp: <expiration timestamp in RFC3339>,  ,  Note: Audience in each TokenRequest should be different and at most one token is empty string To receive a new token after expiry, RequiresRepublish can be used to trigger NodePublishVolume periodically'}
						mandatory
							String io_k8s_api_storage_v1_CSIDriverSpec_tokenRequests_audience {doc 'audience is the intended audience of the token in TokenRequestSpec It will default to the audiences of kube apiserver'}
						optional
							Integer io_k8s_api_storage_v1_CSIDriverSpec_tokenRequests_expirationSeconds {doc 'expirationSeconds is the duration of validity of the token in TokenRequestSpec It has the same default value of ExpirationSeconds in TokenRequestSpec'}
					io_k8s_api_storage_v1_CSIDriverSpec_volumeLifecycleModes cardinality [1..*] {doc 'volumeLifecycleModes defines what kind of volumes this CSI volume driver supports The default if the list is empty is Persistent, which is the usage defined by the CSI specification and implemented in Kubernetes via the usual PV/PVC mechanismThe other mode is Ephemeral In this mode, volumes are defined inline inside the pod spec with CSIVolumeSource and their lifecycle is tied to the lifecycle of that pod A driver has to be aware of this because it is only going to get a NodePublishVolume call for such a volumeFor more information about implementing this mode, see https:_kubernetes-csigithubio/docs/ephemeral-local-volumeshtml A driver can support one or more of these modes and more modes may be added in the futureThis field is beta This field is immutable'}
						mandatory
							String io_k8s_api_storage_v1_CSIDriverSpec_volumeLifecycleModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_storage_v1_CSINode {doc 'CSINode holds information about all CSI drivers installed on a node CSI drivers do not need to create the CSINode object directly As long as they use the node-driver-registrar sidecar container, the kubelet will automatically populate the CSINode object for the CSI driver as part of kubelet plugin registration CSINode has the same name as a node If the object is missing, it means either there are no CSI Drivers available on the node, or the Kubelet version is low enough that it doesn_t create this object CSINode has an OwnerReference that points to the corresponding node object'}
				mandatory
					io_k8s_api_storage_v1_CSINode_spec {doc 'spec is the specification of CSINode'}
						mandatory
							io_k8s_api_storage_v1_CSINode_spec_drivers cardinality [1..*] {doc 'drivers is a list of information of all CSI Drivers existing on a node If all drivers in the list are uninstalled, this can become empty'}
								mandatory
									String io_k8s_api_storage_v1_CSINode_spec_drivers_name {doc 'name represents the name of the CSI driver that this object refers to This MUST be the same name returned by the CSI GetPluginName() call for that driver'}
									String io_k8s_api_storage_v1_CSINode_spec_drivers_nodeID {doc 'nodeID of the node from the driver point of view This field enables Kubernetes to communicate with storage systems that do not share the same nomenclature for nodes For example, Kubernetes may refer to a given node as node1, but the storage system may refer to the same node as nodeA When Kubernetes issues a command to the storage system to attach a volume to a specific node, it can use this field to refer to the node name using the ID that the storage system will understand, eg nodeA instead of node1 This field is required'}
								optional
									io_k8s_api_storage_v1_CSINode_spec_drivers_allocatable {doc 'allocatable represents the volume resources of a node that are available for scheduling This field is beta'}
										optional
											Integer io_k8s_api_storage_v1_CSINode_spec_drivers_allocatable_count {doc 'count indicates the maximum number of unique volumes managed by the CSI driver that can be used on a node A volume that is both attached and mounted on a node is considered to be used once, not twice The same rule applies for a unique volume that is shared among multiple pods on the same node If this field is not specified, then the supported number of volumes on this node is unbounded'}
									io_k8s_api_storage_v1_CSINode_spec_drivers_topologyKeys cardinality [1..*] {doc 'topologyKeys is the list of keys supported by the driver When a driver is initialized on a cluster, it provides a set of topology keys that it understands (eg companycom/zone, companycom/region) When a driver is initialized on a node, it provides the same topology keys along with values Kubelet will expose these topology keys as labels on its own node object When Kubernetes does topology aware provisioning, it can use this list to determine which labels it should retrieve from the node object and pass back to the driver It is possible for different nodes to use different topology keys This can be empty if driver does not support topology'}
										mandatory
											String io_k8s_api_storage_v1_CSINode_spec_drivers_topologyKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					String io_k8s_api_storage_v1_CSINode_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_storage_v1_CSINode_kind {default 'CSINode', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_storage_v1_CSINode_metadata {doc 'Standard object_s metadata metadataname must be the Kubernetes node name'}
						optional
							io_k8s_api_storage_v1_CSINode_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_storage_v1_CSINode_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_storage_v1_CSINode_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_storage_v1_CSINode_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_storage_v1_CSINode_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_storage_v1_CSINode_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_storage_v1_CSINode_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_storage_v1_CSINode_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_storage_v1_CSINode_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_storage_v1_CSINode_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_storage_v1_CSINode_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_storage_v1_CSINode_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_storage_v1_CSINode_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_storage_v1_CSINode_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_storage_v1_CSINode_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_storage_v1_CSINode_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_storage_v1_CSINode_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_storage_v1_CSINode_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_storage_v1_CSINode_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_storage_v1_CSINode_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_storage_v1_CSINode_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_storage_v1_CSINode_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_storage_v1_CSINode_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_storage_v1_CSINode_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_storage_v1_CSINode_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_storage_v1_CSINode_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_storage_v1_CSINode_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_storage_v1_CSINode_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_storage_v1_CSINode_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_storage_v1_CSINode_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_storage_v1_CSINode_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_storage_v1_CSINode_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_storage_v1_CSINode_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_storage_v1_CSINode_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_storage_v1_CSINode_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_storage_v1_CSINode_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_storage_v1_CSINode_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_storage_v1_CSINode_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_storage_v1_CSINode_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_storage_v1_CSINode_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_storage_v1_CSINode_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
			io_k8s_api_storage_v1_CSINodeDriver {doc 'CSINodeDriver holds information about the specification of one CSI driver installed on a node'}
				mandatory
					String io_k8s_api_storage_v1_CSINodeDriver_name {doc 'name represents the name of the CSI driver that this object refers to This MUST be the same name returned by the CSI GetPluginName() call for that driver'}
					String io_k8s_api_storage_v1_CSINodeDriver_nodeID {doc 'nodeID of the node from the driver point of view This field enables Kubernetes to communicate with storage systems that do not share the same nomenclature for nodes For example, Kubernetes may refer to a given node as node1, but the storage system may refer to the same node as nodeA When Kubernetes issues a command to the storage system to attach a volume to a specific node, it can use this field to refer to the node name using the ID that the storage system will understand, eg nodeA instead of node1 This field is required'}
				optional
					io_k8s_api_storage_v1_CSINodeDriver_allocatable {doc 'allocatable represents the volume resources of a node that are available for scheduling This field is beta'}
						optional
							Integer io_k8s_api_storage_v1_CSINodeDriver_allocatable_count {doc 'count indicates the maximum number of unique volumes managed by the CSI driver that can be used on a node A volume that is both attached and mounted on a node is considered to be used once, not twice The same rule applies for a unique volume that is shared among multiple pods on the same node If this field is not specified, then the supported number of volumes on this node is unbounded'}
					io_k8s_api_storage_v1_CSINodeDriver_topologyKeys cardinality [1..*] {doc 'topologyKeys is the list of keys supported by the driver When a driver is initialized on a cluster, it provides a set of topology keys that it understands (eg companycom/zone, companycom/region) When a driver is initialized on a node, it provides the same topology keys along with values Kubelet will expose these topology keys as labels on its own node object When Kubernetes does topology aware provisioning, it can use this list to determine which labels it should retrieve from the node object and pass back to the driver It is possible for different nodes to use different topology keys This can be empty if driver does not support topology'}
						mandatory
							String io_k8s_api_storage_v1_CSINodeDriver_topologyKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_storage_v1_CSINodeList {doc 'CSINodeList is a collection of CSINode objects'}
				mandatory
					io_k8s_api_storage_v1_CSINodeList_items cardinality [1..*] {doc 'items is the list of CSINode'}
						mandatory
							io_k8s_api_storage_v1_CSINodeList_items_spec {doc 'spec is the specification of CSINode'}
								mandatory
									io_k8s_api_storage_v1_CSINodeList_items_spec_drivers cardinality [1..*] {doc 'drivers is a list of information of all CSI Drivers existing on a node If all drivers in the list are uninstalled, this can become empty'}
										mandatory
											String io_k8s_api_storage_v1_CSINodeList_items_spec_drivers_name {doc 'name represents the name of the CSI driver that this object refers to This MUST be the same name returned by the CSI GetPluginName() call for that driver'}
											String io_k8s_api_storage_v1_CSINodeList_items_spec_drivers_nodeID {doc 'nodeID of the node from the driver point of view This field enables Kubernetes to communicate with storage systems that do not share the same nomenclature for nodes For example, Kubernetes may refer to a given node as node1, but the storage system may refer to the same node as nodeA When Kubernetes issues a command to the storage system to attach a volume to a specific node, it can use this field to refer to the node name using the ID that the storage system will understand, eg nodeA instead of node1 This field is required'}
										optional
											io_k8s_api_storage_v1_CSINodeList_items_spec_drivers_allocatable {doc 'allocatable represents the volume resources of a node that are available for scheduling This field is beta'}
												optional
													Integer io_k8s_api_storage_v1_CSINodeList_items_spec_drivers_allocatable_count {doc 'count indicates the maximum number of unique volumes managed by the CSI driver that can be used on a node A volume that is both attached and mounted on a node is considered to be used once, not twice The same rule applies for a unique volume that is shared among multiple pods on the same node If this field is not specified, then the supported number of volumes on this node is unbounded'}
											io_k8s_api_storage_v1_CSINodeList_items_spec_drivers_topologyKeys cardinality [1..*] {doc 'topologyKeys is the list of keys supported by the driver When a driver is initialized on a cluster, it provides a set of topology keys that it understands (eg companycom/zone, companycom/region) When a driver is initialized on a node, it provides the same topology keys along with values Kubelet will expose these topology keys as labels on its own node object When Kubernetes does topology aware provisioning, it can use this list to determine which labels it should retrieve from the node object and pass back to the driver It is possible for different nodes to use different topology keys This can be empty if driver does not support topology'}
												mandatory
													String io_k8s_api_storage_v1_CSINodeList_items_spec_drivers_topologyKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							String io_k8s_api_storage_v1_CSINodeList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_storage_v1_CSINodeList_items_kind {default 'CSINode', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_storage_v1_CSINodeList_items_metadata {doc 'Standard object_s metadata metadataname must be the Kubernetes node name'}
								optional
									io_k8s_api_storage_v1_CSINodeList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_storage_v1_CSINodeList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_storage_v1_CSINodeList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_storage_v1_CSINodeList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_storage_v1_CSINodeList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_storage_v1_CSINodeList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_storage_v1_CSINodeList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_storage_v1_CSINodeList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_storage_v1_CSINodeList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_storage_v1_CSINodeList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_storage_v1_CSINodeList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_storage_v1_CSINodeList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_storage_v1_CSINodeList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_storage_v1_CSINodeList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_storage_v1_CSINodeList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_storage_v1_CSINodeList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_storage_v1_CSINodeList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_storage_v1_CSINodeList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_storage_v1_CSINodeList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_storage_v1_CSINodeList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_storage_v1_CSINodeList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_storage_v1_CSINodeList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_storage_v1_CSINodeList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_storage_v1_CSINodeList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_storage_v1_CSINodeList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_storage_v1_CSINodeList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_storage_v1_CSINodeList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_storage_v1_CSINodeList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_storage_v1_CSINodeList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_storage_v1_CSINodeList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_storage_v1_CSINodeList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_storage_v1_CSINodeList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_storage_v1_CSINodeList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_storage_v1_CSINodeList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_storage_v1_CSINodeList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_storage_v1_CSINodeList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_storage_v1_CSINodeList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_storage_v1_CSINodeList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_storage_v1_CSINodeList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_storage_v1_CSINodeList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_storage_v1_CSINodeList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
				optional
					String io_k8s_api_storage_v1_CSINodeList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_storage_v1_CSINodeList_kind {default 'CSINodeList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_storage_v1_CSINodeList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_storage_v1_CSINodeList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_storage_v1_CSINodeList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_storage_v1_CSINodeList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_storage_v1_CSINodeList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_storage_v1_CSINodeSpec {doc 'CSINodeSpec holds information about the specification of all CSI drivers installed on a node'}
				mandatory
					io_k8s_api_storage_v1_CSINodeSpec_drivers cardinality [1..*] {doc 'drivers is a list of information of all CSI Drivers existing on a node If all drivers in the list are uninstalled, this can become empty'}
						mandatory
							String io_k8s_api_storage_v1_CSINodeSpec_drivers_name {doc 'name represents the name of the CSI driver that this object refers to This MUST be the same name returned by the CSI GetPluginName() call for that driver'}
							String io_k8s_api_storage_v1_CSINodeSpec_drivers_nodeID {doc 'nodeID of the node from the driver point of view This field enables Kubernetes to communicate with storage systems that do not share the same nomenclature for nodes For example, Kubernetes may refer to a given node as node1, but the storage system may refer to the same node as nodeA When Kubernetes issues a command to the storage system to attach a volume to a specific node, it can use this field to refer to the node name using the ID that the storage system will understand, eg nodeA instead of node1 This field is required'}
						optional
							io_k8s_api_storage_v1_CSINodeSpec_drivers_allocatable {doc 'allocatable represents the volume resources of a node that are available for scheduling This field is beta'}
								optional
									Integer io_k8s_api_storage_v1_CSINodeSpec_drivers_allocatable_count {doc 'count indicates the maximum number of unique volumes managed by the CSI driver that can be used on a node A volume that is both attached and mounted on a node is considered to be used once, not twice The same rule applies for a unique volume that is shared among multiple pods on the same node If this field is not specified, then the supported number of volumes on this node is unbounded'}
							io_k8s_api_storage_v1_CSINodeSpec_drivers_topologyKeys cardinality [1..*] {doc 'topologyKeys is the list of keys supported by the driver When a driver is initialized on a cluster, it provides a set of topology keys that it understands (eg companycom/zone, companycom/region) When a driver is initialized on a node, it provides the same topology keys along with values Kubelet will expose these topology keys as labels on its own node object When Kubernetes does topology aware provisioning, it can use this list to determine which labels it should retrieve from the node object and pass back to the driver It is possible for different nodes to use different topology keys This can be empty if driver does not support topology'}
								mandatory
									String io_k8s_api_storage_v1_CSINodeSpec_drivers_topologyKeys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_storage_v1_CSIStorageCapacity {doc 'CSIStorageCapacity stores the result of one CSI GetCapacity call For a given StorageClass, this describes the available capacity in a particular topology segment  This can be used when considering where to instantiate new PersistentVolumesFor example this can express things like: - StorageClass standard has 1234 GiB available in topologykubernetesio/zone=us-east1 - StorageClass localssd has 10 GiB available in kubernetesio/hostname=knode-abc123The following three cases all imply that no capacity is available for a certain combination: - no object exists with suitable topology and storage class name - such an object exists, but the capacity is unset - such an object exists, but the capacity is zeroThe producer of these objects can decide which approach is more suitableThey are consumed by the kube-scheduler when a CSI driver opts into capacity-aware scheduling with CSIDriverSpecStorageCapacity The scheduler compares the MaximumVolumeSize against the requested size of pending volumes to filter out unsuitable nodes If MaximumVolumeSize is unset, it falls back to a comparison against the less precise Capacity If that is also unset, the scheduler assumes that capacity is insufficient and tries some other node'}
				mandatory
					String io_k8s_api_storage_v1_CSIStorageCapacity_storageClassName {doc 'storageClassName represents the name of the StorageClass that the reported capacity applies to It must meet the same requirements as the name of a StorageClass object (non-empty, DNS subdomain) If that object no longer exists, the CSIStorageCapacity object is obsolete and should be removed by its creator This field is immutable'}
				optional
					String io_k8s_api_storage_v1_CSIStorageCapacity_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					io_k8s_api_storage_v1_CSIStorageCapacity_capacity {doc 'capacity is the value reported by the CSI driver in its GetCapacityResponse for a GetCapacityRequest with topology and parameters that match the previous fieldsThe semantic is currently (CSI spec 12) defined as: The available capacity, in bytes, of the storage that can be used to provision volumes If not set, that information is currently unavailable'}
						alternative
							String io_k8s_api_storage_v1_CSIStorageCapacity_capacity_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_storage_v1_CSIStorageCapacity_capacity_asNumber {doc 'Sub-feature added of type Number'}
					String io_k8s_api_storage_v1_CSIStorageCapacity_kind {default 'CSIStorageCapacity', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_storage_v1_CSIStorageCapacity_maximumVolumeSize {doc 'maximumVolumeSize is the value reported by the CSI driver in its GetCapacityResponse for a GetCapacityRequest with topology and parameters that match the previous fieldsThis is defined since CSI spec 140 as the largest size that may be used in a CreateVolumeRequestcapacity_rangerequired_bytes field to create a volume with the same parameters as those in GetCapacityRequest The corresponding value in the Kubernetes API is ResourceRequirementsRequests in a volume claim'}
						alternative
							String io_k8s_api_storage_v1_CSIStorageCapacity_maximumVolumeSize_asString {doc 'Sub-feature added of type String'}
							Integer io_k8s_api_storage_v1_CSIStorageCapacity_maximumVolumeSize_asNumber {doc 'Sub-feature added of type Number'}
					io_k8s_api_storage_v1_CSIStorageCapacity_metadata {doc 'Standard object_s metadata The name has no particular meaning It must be a DNS subdomain (dots allowed, 253 characters) To ensure that there are no conflicts with other CSI drivers on the cluster, the recommendation is to use csisc-<uuid>, a generated name, or a reverse-domain name which ends with the unique CSI driver nameObjects are namespacedMore info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_storage_v1_CSIStorageCapacity_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_storage_v1_CSIStorageCapacity_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_storage_v1_CSIStorageCapacity_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_storage_v1_CSIStorageCapacity_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_storage_v1_CSIStorageCapacity_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_storage_v1_CSIStorageCapacity_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_storage_v1_CSIStorageCapacity_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_storage_v1_CSIStorageCapacity_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_storage_v1_CSIStorageCapacity_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_storage_v1_CSIStorageCapacity_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_storage_v1_CSIStorageCapacity_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_storage_v1_CSIStorageCapacity_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_storage_v1_CSIStorageCapacity_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_storage_v1_CSIStorageCapacity_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_storage_v1_CSIStorageCapacity_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_storage_v1_CSIStorageCapacity_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_storage_v1_CSIStorageCapacity_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_storage_v1_CSIStorageCapacity_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_storage_v1_CSIStorageCapacity_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_storage_v1_CSIStorageCapacity_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_storage_v1_CSIStorageCapacity_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_storage_v1_CSIStorageCapacity_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_storage_v1_CSIStorageCapacity_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_storage_v1_CSIStorageCapacity_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_storage_v1_CSIStorageCapacity_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_storage_v1_CSIStorageCapacity_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_storage_v1_CSIStorageCapacity_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_storage_v1_CSIStorageCapacity_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_storage_v1_CSIStorageCapacity_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_storage_v1_CSIStorageCapacity_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_storage_v1_CSIStorageCapacity_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_storage_v1_CSIStorageCapacity_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_storage_v1_CSIStorageCapacity_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_storage_v1_CSIStorageCapacity_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_storage_v1_CSIStorageCapacity_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_storage_v1_CSIStorageCapacity_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_storage_v1_CSIStorageCapacity_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_storage_v1_CSIStorageCapacity_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_storage_v1_CSIStorageCapacity_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_storage_v1_CSIStorageCapacity_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_storage_v1_CSIStorageCapacity_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_storage_v1_CSIStorageCapacity_nodeTopology {doc 'nodeTopology defines which nodes have access to the storage for which capacity was reported If not set, the storage is not accessible from any node in the cluster If empty, the storage is accessible from all nodes This field is immutable'}
						optional
							io_k8s_api_storage_v1_CSIStorageCapacity_nodeTopology_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
								mandatory
									String io_k8s_api_storage_v1_CSIStorageCapacity_nodeTopology_matchExpressions_key {doc 'key is the label key that the selector applies to'}
									io_k8s_api_storage_v1_CSIStorageCapacity_nodeTopology_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
										alternative
											io_k8s_api_storage_v1_CSIStorageCapacity_nodeTopology_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
											io_k8s_api_storage_v1_CSIStorageCapacity_nodeTopology_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
											io_k8s_api_storage_v1_CSIStorageCapacity_nodeTopology_matchExpressions_operator_In {doc 'Specific value: In'}
											io_k8s_api_storage_v1_CSIStorageCapacity_nodeTopology_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
								optional
									io_k8s_api_storage_v1_CSIStorageCapacity_nodeTopology_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
										mandatory
											String io_k8s_api_storage_v1_CSIStorageCapacity_nodeTopology_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_storage_v1_CSIStorageCapacity_nodeTopology_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
								mandatory
									String io_k8s_api_storage_v1_CSIStorageCapacity_nodeTopology_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_storage_v1_CSIStorageCapacity_nodeTopology_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
			io_k8s_api_storage_v1_CSIStorageCapacityList {doc 'CSIStorageCapacityList is a collection of CSIStorageCapacity objects'}
				mandatory
					io_k8s_api_storage_v1_CSIStorageCapacityList_items cardinality [1..*] {doc 'items is the list of CSIStorageCapacity objects'}
						mandatory
							String io_k8s_api_storage_v1_CSIStorageCapacityList_items_storageClassName {doc 'storageClassName represents the name of the StorageClass that the reported capacity applies to It must meet the same requirements as the name of a StorageClass object (non-empty, DNS subdomain) If that object no longer exists, the CSIStorageCapacity object is obsolete and should be removed by its creator This field is immutable'}
						optional
							String io_k8s_api_storage_v1_CSIStorageCapacityList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							io_k8s_api_storage_v1_CSIStorageCapacityList_items_capacity {doc 'capacity is the value reported by the CSI driver in its GetCapacityResponse for a GetCapacityRequest with topology and parameters that match the previous fieldsThe semantic is currently (CSI spec 12) defined as: The available capacity, in bytes, of the storage that can be used to provision volumes If not set, that information is currently unavailable'}
								alternative
									String io_k8s_api_storage_v1_CSIStorageCapacityList_items_capacity_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_storage_v1_CSIStorageCapacityList_items_capacity_asNumber {doc 'Sub-feature added of type Number'}
							String io_k8s_api_storage_v1_CSIStorageCapacityList_items_kind {default 'CSIStorageCapacity', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_storage_v1_CSIStorageCapacityList_items_maximumVolumeSize {doc 'maximumVolumeSize is the value reported by the CSI driver in its GetCapacityResponse for a GetCapacityRequest with topology and parameters that match the previous fieldsThis is defined since CSI spec 140 as the largest size that may be used in a CreateVolumeRequestcapacity_rangerequired_bytes field to create a volume with the same parameters as those in GetCapacityRequest The corresponding value in the Kubernetes API is ResourceRequirementsRequests in a volume claim'}
								alternative
									String io_k8s_api_storage_v1_CSIStorageCapacityList_items_maximumVolumeSize_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_storage_v1_CSIStorageCapacityList_items_maximumVolumeSize_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata {doc 'Standard object_s metadata The name has no particular meaning It must be a DNS subdomain (dots allowed, 253 characters) To ensure that there are no conflicts with other CSI drivers on the cluster, the recommendation is to use csisc-<uuid>, a generated name, or a reverse-domain name which ends with the unique CSI driver nameObjects are namespacedMore info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_storage_v1_CSIStorageCapacityList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_storage_v1_CSIStorageCapacityList_items_nodeTopology {doc 'nodeTopology defines which nodes have access to the storage for which capacity was reported If not set, the storage is not accessible from any node in the cluster If empty, the storage is accessible from all nodes This field is immutable'}
								optional
									io_k8s_api_storage_v1_CSIStorageCapacityList_items_nodeTopology_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
										mandatory
											String io_k8s_api_storage_v1_CSIStorageCapacityList_items_nodeTopology_matchExpressions_key {doc 'key is the label key that the selector applies to'}
											io_k8s_api_storage_v1_CSIStorageCapacityList_items_nodeTopology_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
												alternative
													io_k8s_api_storage_v1_CSIStorageCapacityList_items_nodeTopology_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
													io_k8s_api_storage_v1_CSIStorageCapacityList_items_nodeTopology_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
													io_k8s_api_storage_v1_CSIStorageCapacityList_items_nodeTopology_matchExpressions_operator_In {doc 'Specific value: In'}
													io_k8s_api_storage_v1_CSIStorageCapacityList_items_nodeTopology_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
										optional
											io_k8s_api_storage_v1_CSIStorageCapacityList_items_nodeTopology_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
												mandatory
													String io_k8s_api_storage_v1_CSIStorageCapacityList_items_nodeTopology_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_storage_v1_CSIStorageCapacityList_items_nodeTopology_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
										mandatory
											String io_k8s_api_storage_v1_CSIStorageCapacityList_items_nodeTopology_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_storage_v1_CSIStorageCapacityList_items_nodeTopology_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
				optional
					String io_k8s_api_storage_v1_CSIStorageCapacityList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_storage_v1_CSIStorageCapacityList_kind {default 'CSIStorageCapacityList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_storage_v1_CSIStorageCapacityList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_storage_v1_CSIStorageCapacityList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_storage_v1_CSIStorageCapacityList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_storage_v1_CSIStorageCapacityList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_storage_v1_CSIStorageCapacityList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_storage_v1_StorageClass {doc 'StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisionedStorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMetaName'}
				mandatory
					String io_k8s_api_storage_v1_StorageClass_provisioner {doc 'provisioner indicates the type of the provisioner'}
				optional
					io_k8s_api_storage_v1_StorageClass_allowVolumeExpansion {doc 'allowVolumeExpansion shows whether the storage class allow volume expand'}
					io_k8s_api_storage_v1_StorageClass_allowedTopologies cardinality [1..*] {doc 'allowedTopologies restrict the node topologies where volumes can be dynamically provisioned Each volume plugin defines its own supported topology specifications An empty TopologySelectorTerm list means there is no topology restriction This field is only honored by servers that enable the VolumeScheduling feature'}
						optional
							io_k8s_api_storage_v1_StorageClass_allowedTopologies_matchLabelExpressions cardinality [1..*] {doc 'A list of topology selector requirements by labels'}
								mandatory
									String io_k8s_api_storage_v1_StorageClass_allowedTopologies_matchLabelExpressions_key {doc 'The label key that the selector applies to'}
									io_k8s_api_storage_v1_StorageClass_allowedTopologies_matchLabelExpressions_values cardinality [1..*] {doc 'An array of string values One value must match the label to be selected Each entry in Values is ORed'}
										mandatory
											String io_k8s_api_storage_v1_StorageClass_allowedTopologies_matchLabelExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					String io_k8s_api_storage_v1_StorageClass_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_storage_v1_StorageClass_kind {default 'StorageClass', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_storage_v1_StorageClass_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_storage_v1_StorageClass_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_storage_v1_StorageClass_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_storage_v1_StorageClass_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_storage_v1_StorageClass_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_storage_v1_StorageClass_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_storage_v1_StorageClass_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_storage_v1_StorageClass_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_storage_v1_StorageClass_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_storage_v1_StorageClass_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_storage_v1_StorageClass_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_storage_v1_StorageClass_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_storage_v1_StorageClass_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_storage_v1_StorageClass_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_storage_v1_StorageClass_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_storage_v1_StorageClass_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_storage_v1_StorageClass_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_storage_v1_StorageClass_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_storage_v1_StorageClass_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_storage_v1_StorageClass_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_storage_v1_StorageClass_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_storage_v1_StorageClass_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_storage_v1_StorageClass_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_storage_v1_StorageClass_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_storage_v1_StorageClass_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_storage_v1_StorageClass_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_storage_v1_StorageClass_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_storage_v1_StorageClass_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_storage_v1_StorageClass_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_storage_v1_StorageClass_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_storage_v1_StorageClass_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_storage_v1_StorageClass_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_storage_v1_StorageClass_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_storage_v1_StorageClass_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_storage_v1_StorageClass_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_storage_v1_StorageClass_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_storage_v1_StorageClass_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_storage_v1_StorageClass_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_storage_v1_StorageClass_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_storage_v1_StorageClass_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_storage_v1_StorageClass_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_storage_v1_StorageClass_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_storage_v1_StorageClass_mountOptions cardinality [1..*] {doc 'mountOptions controls the mountOptions for dynamically provisioned PersistentVolumes of this storage class eg [ro, soft] Not validated - mount of the PVs will simply fail if one is invalid'}
						mandatory
							String io_k8s_api_storage_v1_StorageClass_mountOptions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_storage_v1_StorageClass_parameters cardinality [1..*] {doc 'parameters holds the parameters for the provisioner that should create volumes of this storage class'}
						mandatory
							String io_k8s_api_storage_v1_StorageClass_parameters_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					String io_k8s_api_storage_v1_StorageClass_reclaimPolicy {doc 'reclaimPolicy controls the reclaimPolicy for dynamically provisioned PersistentVolumes of this storage class Defaults to Delete'}
					String io_k8s_api_storage_v1_StorageClass_volumeBindingMode {doc 'volumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound  When unset, VolumeBindingImmediate is used This field is only honored by servers that enable the VolumeScheduling feature'}
			io_k8s_api_storage_v1_StorageClassList {doc 'StorageClassList is a collection of storage classes'}
				mandatory
					io_k8s_api_storage_v1_StorageClassList_items cardinality [1..*] {doc 'items is the list of StorageClasses'}
						mandatory
							String io_k8s_api_storage_v1_StorageClassList_items_provisioner {doc 'provisioner indicates the type of the provisioner'}
						optional
							io_k8s_api_storage_v1_StorageClassList_items_allowVolumeExpansion {doc 'allowVolumeExpansion shows whether the storage class allow volume expand'}
							io_k8s_api_storage_v1_StorageClassList_items_allowedTopologies cardinality [1..*] {doc 'allowedTopologies restrict the node topologies where volumes can be dynamically provisioned Each volume plugin defines its own supported topology specifications An empty TopologySelectorTerm list means there is no topology restriction This field is only honored by servers that enable the VolumeScheduling feature'}
								optional
									io_k8s_api_storage_v1_StorageClassList_items_allowedTopologies_matchLabelExpressions cardinality [1..*] {doc 'A list of topology selector requirements by labels'}
										mandatory
											String io_k8s_api_storage_v1_StorageClassList_items_allowedTopologies_matchLabelExpressions_key {doc 'The label key that the selector applies to'}
											io_k8s_api_storage_v1_StorageClassList_items_allowedTopologies_matchLabelExpressions_values cardinality [1..*] {doc 'An array of string values One value must match the label to be selected Each entry in Values is ORed'}
												mandatory
													String io_k8s_api_storage_v1_StorageClassList_items_allowedTopologies_matchLabelExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_storage_v1_StorageClassList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_storage_v1_StorageClassList_items_kind {default 'StorageClass', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_storage_v1_StorageClassList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_storage_v1_StorageClassList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_storage_v1_StorageClassList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_storage_v1_StorageClassList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_storage_v1_StorageClassList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_storage_v1_StorageClassList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_storage_v1_StorageClassList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_storage_v1_StorageClassList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_storage_v1_StorageClassList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_storage_v1_StorageClassList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_storage_v1_StorageClassList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_storage_v1_StorageClassList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_storage_v1_StorageClassList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_storage_v1_StorageClassList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_storage_v1_StorageClassList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_storage_v1_StorageClassList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_storage_v1_StorageClassList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_storage_v1_StorageClassList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_storage_v1_StorageClassList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_storage_v1_StorageClassList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_storage_v1_StorageClassList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_storage_v1_StorageClassList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_storage_v1_StorageClassList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_storage_v1_StorageClassList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_storage_v1_StorageClassList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_storage_v1_StorageClassList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_storage_v1_StorageClassList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_storage_v1_StorageClassList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_storage_v1_StorageClassList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_storage_v1_StorageClassList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_storage_v1_StorageClassList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_storage_v1_StorageClassList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_storage_v1_StorageClassList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_storage_v1_StorageClassList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_storage_v1_StorageClassList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_storage_v1_StorageClassList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_storage_v1_StorageClassList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_storage_v1_StorageClassList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_storage_v1_StorageClassList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_storage_v1_StorageClassList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_storage_v1_StorageClassList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_storage_v1_StorageClassList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_storage_v1_StorageClassList_items_mountOptions cardinality [1..*] {doc 'mountOptions controls the mountOptions for dynamically provisioned PersistentVolumes of this storage class eg [ro, soft] Not validated - mount of the PVs will simply fail if one is invalid'}
								mandatory
									String io_k8s_api_storage_v1_StorageClassList_items_mountOptions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_storage_v1_StorageClassList_items_parameters cardinality [1..*] {doc 'parameters holds the parameters for the provisioner that should create volumes of this storage class'}
								mandatory
									String io_k8s_api_storage_v1_StorageClassList_items_parameters_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_storage_v1_StorageClassList_items_reclaimPolicy {doc 'reclaimPolicy controls the reclaimPolicy for dynamically provisioned PersistentVolumes of this storage class Defaults to Delete'}
							String io_k8s_api_storage_v1_StorageClassList_items_volumeBindingMode {doc 'volumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound  When unset, VolumeBindingImmediate is used This field is only honored by servers that enable the VolumeScheduling feature'}
				optional
					String io_k8s_api_storage_v1_StorageClassList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_storage_v1_StorageClassList_kind {default 'StorageClassList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_storage_v1_StorageClassList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_storage_v1_StorageClassList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_storage_v1_StorageClassList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_storage_v1_StorageClassList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_storage_v1_StorageClassList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_storage_v1_TokenRequest {doc 'TokenRequest contains parameters of a service account token'}
				mandatory
					String io_k8s_api_storage_v1_TokenRequest_audience {doc 'audience is the intended audience of the token in TokenRequestSpec It will default to the audiences of kube apiserver'}
				optional
					Integer io_k8s_api_storage_v1_TokenRequest_expirationSeconds {doc 'expirationSeconds is the duration of validity of the token in TokenRequestSpec It has the same default value of ExpirationSeconds in TokenRequestSpec'}
			io_k8s_api_storage_v1_VolumeAttachment {doc 'VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified nodeVolumeAttachment objects are non-namespaced'}
				mandatory
					io_k8s_api_storage_v1_VolumeAttachment_spec {doc 'spec represents specification of the desired attach/detach volume behavior Populated by the Kubernetes system'}
						mandatory
							String io_k8s_api_storage_v1_VolumeAttachment_spec_attacher {doc 'attacher indicates the name of the volume driver that MUST handle this request This is the name returned by GetPluginName()'}
							String io_k8s_api_storage_v1_VolumeAttachment_spec_nodeName {doc 'nodeName represents the node that the volume should be attached to'}
							io_k8s_api_storage_v1_VolumeAttachment_spec_source {doc 'source represents the volume that should be attached'}
								optional
									io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec {doc 'inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod_s inline VolumeSource This field is populated only for the CSIMigration feature It contains translated fields from a pod_s inline VolumeSource to a PersistentVolumeSpec This field is beta-level and is only honored by servers that enabled the CSIMigration feature'}
										optional
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_accessModes cardinality [1..*] {doc 'accessModes contains all ways the volume can be mounted More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
												optional
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														alternative
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
												optional
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
														alternative
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_azureDisk_cachingMode_None {doc 'Specific value: None'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
														alternative
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_azureDisk_kind_Managed {doc 'Specific value: Managed'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_azureDisk_kind_Shared {doc 'Specific value: Shared'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_azureFile_secretName {doc 'secretName is the name of secret that contains Azure Storage Account Name and Key'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_azureFile_shareName {doc 'shareName is the azure Share Name'}
												optional
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_azureFile_secretNamespace {doc 'secretNamespace is the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_capacity cardinality [1..*] {doc 'capacity is the description of the persistent volume_s resources and capacity More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#capacity'}
												alternative
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_capacity_asString {doc 'Sub-feature added of type String'}
													Integer io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_capacity_asNumber {doc 'Sub-feature added of type Number'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
												mandatory
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
														optional
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_cephfs_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_cephfs_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_cephfs_user {doc 'user is Optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
												optional
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_cinder_fsType {doc 'fsType Filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														alternative
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_cinder_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_cinder_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_cinder_secretRef {doc 'secretRef is Optional: points to a secret object containing parameters used to connect to OpenStack'}
														optional
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_cinder_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_cinder_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_claimRef {doc 'claimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim Expected to be non-nil when bound claimVolumeName is the authoritative bind between PV and PVC More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#binding'}
												optional
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_claimRef_apiVersion {doc 'API version of the referent'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_claimRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_claimRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_claimRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_claimRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_claimRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_claimRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi {doc 'csi represents storage that is handled by an external CSI driver (Beta feature)'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_driver {doc 'driver is the name of the driver to use for this volume Required'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_volumeHandle {doc 'volumeHandle is the unique volume name returned by the CSI volume plugins CreateVolume to refer to the volume on all subsequent calls Required'}
												optional
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_controllerExpandSecretRef {doc 'controllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
														optional
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_controllerExpandSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_controllerExpandSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_controllerPublishSecretRef {doc 'controllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
														optional
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_controllerPublishSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_controllerPublishSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_fsType {doc 'fsType to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs'}
														alternative
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_fsType_ext4 {doc 'Specific value: ext4'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_nodeExpandSecretRef {doc 'nodeExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeExpandVolume call This field is optional, may be omitted if no secret is required If the secret object contains more than one secret, all secrets are passed'}
														optional
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_nodeExpandSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_nodeExpandSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
														optional
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_nodePublishSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_nodePublishSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_nodeStageSecretRef {doc 'nodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
														optional
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_nodeStageSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_nodeStageSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_readOnly {default false, doc 'readOnly value to pass to ControllerPublishVolumeRequest Defaults to false (read/write)'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes of the volume to publish'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
												optional
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_fc_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_fc_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_fc_lun {doc 'lun is Optional: FC target lun number'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
												optional
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_flexVolume_fsType {doc 'fsType is the Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
														alternative
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_flexVolume_secretRef {doc 'secretRef is Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
														optional
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_flexVolume_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_flexVolume_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine and exposed to the pod for its usage This depends on the Flocker control service being running'}
												optional
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod Provisioned by an admin More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
												optional
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														alternative
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													Integer io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_glusterfs {doc 'glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod Provisioned by an admin More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
												optional
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_glusterfs_endpointsNamespace {doc 'endpointsNamespace is the namespace that contains Glusterfs endpoint If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_hostPath {doc 'hostPath represents a directory on the host Provisioned by a developer or tester This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
												optional
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod Provisioned by an admin'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_iscsi_iqn {doc 'iqn is Target iSCSI Qualified Name'}
													Integer io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_iscsi_lun {doc 'lun is iSCSI Target Lun number'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
												optional
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
														alternative
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_iscsi_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
														optional
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_iscsi_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_iscsi_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_local {doc 'local represents directly-attached storage with node affinity'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_local_path {doc 'path of the full path to the volume on the node It can be either a directory or block device (disk, partition, )'}
												optional
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_local_fsType {doc 'fsType is the filesystem type to mount It applies only when the Path is a block device Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default value is to auto-select a filesystem if unspecified'}
														alternative
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_local_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_local_fsType_ext4 {doc 'Specific value: ext4'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_local_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_mountOptions cardinality [1..*] {doc 'mountOptions is the list of mount options, eg [ro, soft] Not validated - mount will simply fail if one is invalid More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes/#mount-options'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_mountOptions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nfs {doc 'nfs represents an NFS mount on the host Provisioned by an admin More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
												optional
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity {doc 'nodeAffinity defines constraints that limit what nodes this volume can be accessed from This field influences the scheduling of pods that use this volume'}
												optional
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required {doc 'required specifies hard node constraints that must be met'}
														mandatory
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																optional
																	io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																		mandatory
																			String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																					io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																	io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																		mandatory
																			String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																			io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																				alternative
																					io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																					io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																					io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																					io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																					io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																					io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																		optional
																			io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																				mandatory
																					String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_persistentVolumeReclaimPolicy {doc 'persistentVolumeReclaimPolicy defines what happens to a persistent volume when released from its claim Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated) Recycle must be supported by the volume plugin underlying this PersistentVolume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#reclaiming'}
												alternative
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_persistentVolumeReclaimPolicy_Retain {doc 'Specific value: Retain'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_persistentVolumeReclaimPolicy_Recycle {doc 'Specific value: Recycle'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_persistentVolumeReclaimPolicy_Delete {doc 'Specific value: Delete'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
												optional
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
												optional
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
												optional
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_quobyte_group {doc 'group to map volume access to Default is no group'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
														alternative
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_rbd_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
														optional
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_rbd_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_rbd_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
														optional
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_scaleIO_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_scaleIO_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
												optional
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
														alternative
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_scaleIO_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_scaleIO_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_scaleIO_sslEnabled {default false, doc 'sslEnabled is the flag to enable/disable SSL communication with Gateway, default false'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
														alternative
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
											String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_storageClassName {doc 'storageClassName is the name of StorageClass to which this persistent volume belongs Empty value means that this volume does not belong to any StorageClass'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_storageos {doc 'storageOS represents a StorageOS volume that is attached to the kubelet_s host machine and mounted into the pod More info: https:_examplesk8sio/volumes/storageos/READMEmd'}
												optional
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_storageos_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
														optional
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_storageos_secretRef_apiVersion {doc 'API version of the referent'}
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_storageos_secretRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_storageos_secretRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_storageos_secretRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_storageos_secretRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_storageos_secretRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
															String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_storageos_secretRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
											String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_volumeAttributesClassName {doc 'Name of VolumeAttributesClass to which this persistent volume belongs Empty value is not allowed When this field is not set, it indicates that this volume does not belong to any VolumeAttributesClass This field is mutable and can be changed by the CSI driver after a volume has been updated successfully to a new class For an unbound PersistentVolume, the volumeAttributesClassName will be matched with unbound PersistentVolumeClaims during the binding process This is an alpha field and requires enabling VolumeAttributesClass feature'}
											String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_volumeMode {doc 'volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state Value of Filesystem is implied when not included in spec'}
											io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
												optional
													io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
														alternative
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
													String io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
									String io_k8s_api_storage_v1_VolumeAttachment_spec_source_persistentVolumeName {doc 'persistentVolumeName represents the name of the persistent volume to attach'}
				optional
					String io_k8s_api_storage_v1_VolumeAttachment_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_storage_v1_VolumeAttachment_kind {default 'VolumeAttachment', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_storage_v1_VolumeAttachment_metadata {doc 'Standard object metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_storage_v1_VolumeAttachment_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_storage_v1_VolumeAttachment_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_storage_v1_VolumeAttachment_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_storage_v1_VolumeAttachment_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_storage_v1_VolumeAttachment_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_storage_v1_VolumeAttachment_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_storage_v1_VolumeAttachment_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_storage_v1_VolumeAttachment_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_storage_v1_VolumeAttachment_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_storage_v1_VolumeAttachment_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachment_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_storage_v1_VolumeAttachment_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_storage_v1_VolumeAttachment_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_storage_v1_VolumeAttachment_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachment_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_storage_v1_VolumeAttachment_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_storage_v1_VolumeAttachment_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_storage_v1_VolumeAttachment_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_storage_v1_VolumeAttachment_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_storage_v1_VolumeAttachment_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_storage_v1_VolumeAttachment_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_storage_v1_VolumeAttachment_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_storage_v1_VolumeAttachment_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_storage_v1_VolumeAttachment_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_storage_v1_VolumeAttachment_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_storage_v1_VolumeAttachment_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_storage_v1_VolumeAttachment_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_storage_v1_VolumeAttachment_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachment_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_storage_v1_VolumeAttachment_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_storage_v1_VolumeAttachment_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_storage_v1_VolumeAttachment_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachment_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_storage_v1_VolumeAttachment_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_storage_v1_VolumeAttachment_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_storage_v1_VolumeAttachment_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_storage_v1_VolumeAttachment_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_storage_v1_VolumeAttachment_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_storage_v1_VolumeAttachment_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_storage_v1_VolumeAttachment_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_storage_v1_VolumeAttachment_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_storage_v1_VolumeAttachment_status {doc 'status represents status of the VolumeAttachment request Populated by the entity completing the attach or detach operation, ie the external-attacher'}
						mandatory
							io_k8s_api_storage_v1_VolumeAttachment_status_attached {doc 'attached indicates the volume is successfully attached This field must only be set by the entity completing the attach operation, ie the external-attacher'}
						optional
							io_k8s_api_storage_v1_VolumeAttachment_status_attachError {doc 'attachError represents the last error encountered during attach operation, if any This field must only be set by the entity completing the attach operation, ie the external-attacher'}
								optional
									String io_k8s_api_storage_v1_VolumeAttachment_status_attachError_message {doc 'message represents the error encountered during Attach or Detach operation This string may be logged, so it should not contain sensitive information'}
									io_k8s_api_storage_v1_VolumeAttachment_status_attachError_time {doc 'time represents the time the error was encountered'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachment_status_attachError_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_storage_v1_VolumeAttachment_status_attachmentMetadata cardinality [1..*] {doc 'attachmentMetadata is populated with any information returned by the attach operation, upon successful attach, that must be passed into subsequent WaitForAttach or Mount calls This field must only be set by the entity completing the attach operation, ie the external-attacher'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachment_status_attachmentMetadata_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_storage_v1_VolumeAttachment_status_detachError {doc 'detachError represents the last error encountered during detach operation, if any This field must only be set by the entity completing the detach operation, ie the external-attacher'}
								optional
									String io_k8s_api_storage_v1_VolumeAttachment_status_detachError_message {doc 'message represents the error encountered during Attach or Detach operation This string may be logged, so it should not contain sensitive information'}
									io_k8s_api_storage_v1_VolumeAttachment_status_detachError_time {doc 'time represents the time the error was encountered'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachment_status_detachError_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
			io_k8s_api_storage_v1_VolumeAttachmentList {doc 'VolumeAttachmentList is a collection of VolumeAttachment objects'}
				mandatory
					io_k8s_api_storage_v1_VolumeAttachmentList_items cardinality [1..*] {doc 'items is the list of VolumeAttachments'}
						mandatory
							io_k8s_api_storage_v1_VolumeAttachmentList_items_spec {doc 'spec represents specification of the desired attach/detach volume behavior Populated by the Kubernetes system'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_attacher {doc 'attacher indicates the name of the volume driver that MUST handle this request This is the name returned by GetPluginName()'}
									String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_nodeName {doc 'nodeName represents the node that the volume should be attached to'}
									io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source {doc 'source represents the volume that should be attached'}
										optional
											io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec {doc 'inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod_s inline VolumeSource This field is populated only for the CSIMigration feature It contains translated fields from a pod_s inline VolumeSource to a PersistentVolumeSpec This field is beta-level and is only honored by servers that enabled the CSIMigration feature'}
												optional
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_accessModes cardinality [1..*] {doc 'accessModes contains all ways the volume can be mounted More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
														optional
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
																alternative
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
														optional
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
																alternative
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_azureDisk_cachingMode_None {doc 'Specific value: None'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
																alternative
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_azureDisk_kind_Managed {doc 'Specific value: Managed'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_azureDisk_kind_Shared {doc 'Specific value: Shared'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_azureFile_secretName {doc 'secretName is the name of secret that contains Azure Storage Account Name and Key'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_azureFile_shareName {doc 'shareName is the azure Share Name'}
														optional
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_azureFile_secretNamespace {doc 'secretNamespace is the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_capacity cardinality [1..*] {doc 'capacity is the description of the persistent volume_s resources and capacity More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#capacity'}
														alternative
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_capacity_asString {doc 'Sub-feature added of type String'}
															Integer io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_capacity_asNumber {doc 'Sub-feature added of type Number'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
														mandatory
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																mandatory
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
														optional
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
																optional
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_cephfs_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_cephfs_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_cephfs_user {doc 'user is Optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
														optional
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_cinder_fsType {doc 'fsType Filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
																alternative
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_cinder_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_cinder_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_cinder_secretRef {doc 'secretRef is Optional: points to a secret object containing parameters used to connect to OpenStack'}
																optional
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_cinder_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_cinder_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_claimRef {doc 'claimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim Expected to be non-nil when bound claimVolumeName is the authoritative bind between PV and PVC More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#binding'}
														optional
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_claimRef_apiVersion {doc 'API version of the referent'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_claimRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_claimRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_claimRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_claimRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_claimRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_claimRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi {doc 'csi represents storage that is handled by an external CSI driver (Beta feature)'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_driver {doc 'driver is the name of the driver to use for this volume Required'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_volumeHandle {doc 'volumeHandle is the unique volume name returned by the CSI volume plugins CreateVolume to refer to the volume on all subsequent calls Required'}
														optional
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_controllerExpandSecretRef {doc 'controllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
																optional
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_controllerExpandSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_controllerExpandSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_controllerPublishSecretRef {doc 'controllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
																optional
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_controllerPublishSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_controllerPublishSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_fsType {doc 'fsType to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs'}
																alternative
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_fsType_ext4 {doc 'Specific value: ext4'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_nodeExpandSecretRef {doc 'nodeExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeExpandVolume call This field is optional, may be omitted if no secret is required If the secret object contains more than one secret, all secrets are passed'}
																optional
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_nodeExpandSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_nodeExpandSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
																optional
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_nodePublishSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_nodePublishSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_nodeStageSecretRef {doc 'nodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
																optional
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_nodeStageSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_nodeStageSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_readOnly {default false, doc 'readOnly value to pass to ControllerPublishVolumeRequest Defaults to false (read/write)'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes of the volume to publish'}
																mandatory
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
														optional
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_fc_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_fc_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_fc_lun {doc 'lun is Optional: FC target lun number'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
																mandatory
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
																mandatory
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
														optional
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_flexVolume_fsType {doc 'fsType is the Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
																alternative
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
																mandatory
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_flexVolume_secretRef {doc 'secretRef is Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
																optional
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_flexVolume_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_flexVolume_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine and exposed to the pod for its usage This depends on the Flocker control service being running'}
														optional
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
																mandatory
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
																mandatory
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod Provisioned by an admin More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
														optional
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
																alternative
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
															Integer io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_glusterfs {doc 'glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod Provisioned by an admin More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
														optional
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_glusterfs_endpointsNamespace {doc 'endpointsNamespace is the namespace that contains Glusterfs endpoint If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_hostPath {doc 'hostPath represents a directory on the host Provisioned by a developer or tester This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
														optional
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod Provisioned by an admin'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_iscsi_iqn {doc 'iqn is Target iSCSI Qualified Name'}
															Integer io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_iscsi_lun {doc 'lun is iSCSI Target Lun number'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
														optional
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
																alternative
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_iscsi_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
																mandatory
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
																optional
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_iscsi_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_iscsi_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_local {doc 'local represents directly-attached storage with node affinity'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_local_path {doc 'path of the full path to the volume on the node It can be either a directory or block device (disk, partition, )'}
														optional
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_local_fsType {doc 'fsType is the filesystem type to mount It applies only when the Path is a block device Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default value is to auto-select a filesystem if unspecified'}
																alternative
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_local_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_local_fsType_ext4 {doc 'Specific value: ext4'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_local_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_mountOptions cardinality [1..*] {doc 'mountOptions is the list of mount options, eg [ro, soft] Not validated - mount will simply fail if one is invalid More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes/#mount-options'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_mountOptions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nfs {doc 'nfs represents an NFS mount on the host Provisioned by an admin More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
														optional
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity {doc 'nodeAffinity defines constraints that limit what nodes this volume can be accessed from This field influences the scheduling of pods that use this volume'}
														optional
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required {doc 'required specifies hard node constraints that must be met'}
																mandatory
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
																		optional
																			io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																				mandatory
																					String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																							io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
																			io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																				mandatory
																					String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																					io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																						alternative
																							io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																							io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																							io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																							io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																							io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																							io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																				optional
																					io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																						mandatory
																							String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_persistentVolumeReclaimPolicy {doc 'persistentVolumeReclaimPolicy defines what happens to a persistent volume when released from its claim Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated) Recycle must be supported by the volume plugin underlying this PersistentVolume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#reclaiming'}
														alternative
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_persistentVolumeReclaimPolicy_Retain {doc 'Specific value: Retain'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_persistentVolumeReclaimPolicy_Recycle {doc 'Specific value: Recycle'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_persistentVolumeReclaimPolicy_Delete {doc 'Specific value: Delete'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
														optional
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
														optional
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
														optional
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_quobyte_group {doc 'group to map volume access to Default is no group'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																mandatory
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
														optional
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
																alternative
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_rbd_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
																optional
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_rbd_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_rbd_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
																optional
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_scaleIO_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_scaleIO_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
														optional
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
																alternative
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_scaleIO_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_scaleIO_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_scaleIO_sslEnabled {default false, doc 'sslEnabled is the flag to enable/disable SSL communication with Gateway, default false'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
																alternative
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
													String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_storageClassName {doc 'storageClassName is the name of StorageClass to which this persistent volume belongs Empty value means that this volume does not belong to any StorageClass'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_storageos {doc 'storageOS represents a StorageOS volume that is attached to the kubelet_s host machine and mounted into the pod More info: https:_examplesk8sio/volumes/storageos/READMEmd'}
														optional
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_storageos_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
																optional
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_storageos_secretRef_apiVersion {doc 'API version of the referent'}
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_storageos_secretRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_storageos_secretRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_storageos_secretRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_storageos_secretRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_storageos_secretRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
																	String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_storageos_secretRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
													String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_volumeAttributesClassName {doc 'Name of VolumeAttributesClass to which this persistent volume belongs Empty value is not allowed When this field is not set, it indicates that this volume does not belong to any VolumeAttributesClass This field is mutable and can be changed by the CSI driver after a volume has been updated successfully to a new class For an unbound PersistentVolume, the volumeAttributesClassName will be matched with unbound PersistentVolumeClaims during the binding process This is an alpha field and requires enabling VolumeAttributesClass feature'}
													String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_volumeMode {doc 'volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state Value of Filesystem is implied when not included in spec'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
														optional
															io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
																alternative
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
																	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
															String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
											String io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_persistentVolumeName {doc 'persistentVolumeName represents the name of the persistent volume to attach'}
						optional
							String io_k8s_api_storage_v1_VolumeAttachmentList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_storage_v1_VolumeAttachmentList_items_kind {default 'VolumeAttachment', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata {doc 'Standard object metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_storage_v1_VolumeAttachmentList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_storage_v1_VolumeAttachmentList_items_status {doc 'status represents status of the VolumeAttachment request Populated by the entity completing the attach or detach operation, ie the external-attacher'}
								mandatory
									io_k8s_api_storage_v1_VolumeAttachmentList_items_status_attached {doc 'attached indicates the volume is successfully attached This field must only be set by the entity completing the attach operation, ie the external-attacher'}
								optional
									io_k8s_api_storage_v1_VolumeAttachmentList_items_status_attachError {doc 'attachError represents the last error encountered during attach operation, if any This field must only be set by the entity completing the attach operation, ie the external-attacher'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachmentList_items_status_attachError_message {doc 'message represents the error encountered during Attach or Detach operation This string may be logged, so it should not contain sensitive information'}
											io_k8s_api_storage_v1_VolumeAttachmentList_items_status_attachError_time {doc 'time represents the time the error was encountered'}
												optional
													String io_k8s_api_storage_v1_VolumeAttachmentList_items_status_attachError_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_storage_v1_VolumeAttachmentList_items_status_attachmentMetadata cardinality [1..*] {doc 'attachmentMetadata is populated with any information returned by the attach operation, upon successful attach, that must be passed into subsequent WaitForAttach or Mount calls This field must only be set by the entity completing the attach operation, ie the external-attacher'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentList_items_status_attachmentMetadata_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_storage_v1_VolumeAttachmentList_items_status_detachError {doc 'detachError represents the last error encountered during detach operation, if any This field must only be set by the entity completing the detach operation, ie the external-attacher'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachmentList_items_status_detachError_message {doc 'message represents the error encountered during Attach or Detach operation This string may be logged, so it should not contain sensitive information'}
											io_k8s_api_storage_v1_VolumeAttachmentList_items_status_detachError_time {doc 'time represents the time the error was encountered'}
												optional
													String io_k8s_api_storage_v1_VolumeAttachmentList_items_status_detachError_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
				optional
					String io_k8s_api_storage_v1_VolumeAttachmentList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_storage_v1_VolumeAttachmentList_kind {default 'VolumeAttachmentList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_storage_v1_VolumeAttachmentList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_storage_v1_VolumeAttachmentList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_storage_v1_VolumeAttachmentList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_storage_v1_VolumeAttachmentList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_storage_v1_VolumeAttachmentList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_storage_v1_VolumeAttachmentSource {doc 'VolumeAttachmentSource represents a volume that should be attached Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods Exactly one member can be set'}
				optional
					io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec {doc 'inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod_s inline VolumeSource This field is populated only for the CSIMigration feature It contains translated fields from a pod_s inline VolumeSource to a PersistentVolumeSpec This field is beta-level and is only honored by servers that enabled the CSIMigration feature'}
						optional
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_accessModes cardinality [1..*] {doc 'accessModes contains all ways the volume can be mounted More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
								optional
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
										alternative
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
									Integer io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
								optional
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
										alternative
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_azureDisk_cachingMode_None {doc 'Specific value: None'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
										alternative
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
										alternative
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_azureDisk_kind_Managed {doc 'Specific value: Managed'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_azureDisk_kind_Shared {doc 'Specific value: Shared'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_azureFile_secretName {doc 'secretName is the name of secret that contains Azure Storage Account Name and Key'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_azureFile_shareName {doc 'shareName is the azure Share Name'}
								optional
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_azureFile_secretNamespace {doc 'secretNamespace is the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_capacity cardinality [1..*] {doc 'capacity is the description of the persistent volume_s resources and capacity More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#capacity'}
								alternative
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_capacity_asString {doc 'Sub-feature added of type String'}
									Integer io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_capacity_asNumber {doc 'Sub-feature added of type Number'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
								mandatory
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_cephfs_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_cephfs_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_cephfs_user {doc 'user is Optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
								optional
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_cinder_fsType {doc 'fsType Filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
										alternative
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_cinder_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_cinder_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_cinder_secretRef {doc 'secretRef is Optional: points to a secret object containing parameters used to connect to OpenStack'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_cinder_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_cinder_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_claimRef {doc 'claimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim Expected to be non-nil when bound claimVolumeName is the authoritative bind between PV and PVC More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#binding'}
								optional
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_claimRef_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_claimRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_claimRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_claimRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_claimRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_claimRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_claimRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi {doc 'csi represents storage that is handled by an external CSI driver (Beta feature)'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_driver {doc 'driver is the name of the driver to use for this volume Required'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_volumeHandle {doc 'volumeHandle is the unique volume name returned by the CSI volume plugins CreateVolume to refer to the volume on all subsequent calls Required'}
								optional
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_controllerExpandSecretRef {doc 'controllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_controllerExpandSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_controllerExpandSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_controllerPublishSecretRef {doc 'controllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_controllerPublishSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_controllerPublishSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_fsType {doc 'fsType to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs'}
										alternative
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_fsType_ext4 {doc 'Specific value: ext4'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_fsType_ntfs {doc 'Specific value: ntfs'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_nodeExpandSecretRef {doc 'nodeExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeExpandVolume call This field is optional, may be omitted if no secret is required If the secret object contains more than one secret, all secrets are passed'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_nodeExpandSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_nodeExpandSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_nodePublishSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_nodePublishSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_nodeStageSecretRef {doc 'nodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_nodeStageSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_nodeStageSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_readOnly {default false, doc 'readOnly value to pass to ControllerPublishVolumeRequest Defaults to false (read/write)'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes of the volume to publish'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
								optional
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
										alternative
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_fc_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_fc_fsType_ntfs {doc 'Specific value: ntfs'}
									Integer io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_fc_lun {doc 'lun is Optional: FC target lun number'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
								optional
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_flexVolume_fsType {doc 'fsType is the Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
										alternative
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_flexVolume_secretRef {doc 'secretRef is Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_flexVolume_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_flexVolume_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine and exposed to the pod for its usage This depends on the Flocker control service being running'}
								optional
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod Provisioned by an admin More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
								optional
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
										alternative
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
									Integer io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_glusterfs {doc 'glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod Provisioned by an admin More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
								optional
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_glusterfs_endpointsNamespace {doc 'endpointsNamespace is the namespace that contains Glusterfs endpoint If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_hostPath {doc 'hostPath represents a directory on the host Provisioned by a developer or tester This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
								optional
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod Provisioned by an admin'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_iscsi_iqn {doc 'iqn is Target iSCSI Qualified Name'}
									Integer io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_iscsi_lun {doc 'lun is iSCSI Target Lun number'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
								optional
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
										alternative
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_iscsi_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_iscsi_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_iscsi_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_local {doc 'local represents directly-attached storage with node affinity'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_local_path {doc 'path of the full path to the volume on the node It can be either a directory or block device (disk, partition, )'}
								optional
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_local_fsType {doc 'fsType is the filesystem type to mount It applies only when the Path is a block device Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default value is to auto-select a filesystem if unspecified'}
										alternative
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_local_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_local_fsType_ext4 {doc 'Specific value: ext4'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_local_fsType_ntfs {doc 'Specific value: ntfs'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_mountOptions cardinality [1..*] {doc 'mountOptions is the list of mount options, eg [ro, soft] Not validated - mount will simply fail if one is invalid More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes/#mount-options'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_mountOptions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nfs {doc 'nfs represents an NFS mount on the host Provisioned by an admin More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
								optional
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity {doc 'nodeAffinity defines constraints that limit what nodes this volume can be accessed from This field influences the scheduling of pods that use this volume'}
								optional
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required {doc 'required specifies hard node constraints that must be met'}
										mandatory
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
												optional
													io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
															io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																alternative
																	io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																	io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																	io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																	io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
														mandatory
															String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
															io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																alternative
																	io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																	io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																	io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																	io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																	io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																	io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
														optional
															io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																mandatory
																	String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_persistentVolumeReclaimPolicy {doc 'persistentVolumeReclaimPolicy defines what happens to a persistent volume when released from its claim Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated) Recycle must be supported by the volume plugin underlying this PersistentVolume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#reclaiming'}
								alternative
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_persistentVolumeReclaimPolicy_Retain {doc 'Specific value: Retain'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_persistentVolumeReclaimPolicy_Recycle {doc 'Specific value: Recycle'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_persistentVolumeReclaimPolicy_Delete {doc 'Specific value: Delete'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
								optional
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
										alternative
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
								optional
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
										alternative
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
								optional
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_quobyte_group {doc 'group to map volume access to Default is no group'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
										alternative
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_rbd_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_rbd_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_rbd_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_scaleIO_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_scaleIO_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
								optional
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
										alternative
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_scaleIO_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_scaleIO_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_scaleIO_sslEnabled {default false, doc 'sslEnabled is the flag to enable/disable SSL communication with Gateway, default false'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
										alternative
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
							String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_storageClassName {doc 'storageClassName is the name of StorageClass to which this persistent volume belongs Empty value means that this volume does not belong to any StorageClass'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_storageos {doc 'storageOS represents a StorageOS volume that is attached to the kubelet_s host machine and mounted into the pod More info: https:_examplesk8sio/volumes/storageos/READMEmd'}
								optional
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
										alternative
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_storageos_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_storageos_secretRef_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_storageos_secretRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_storageos_secretRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_storageos_secretRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_storageos_secretRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_storageos_secretRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
											String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_storageos_secretRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
							String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_volumeAttributesClassName {doc 'Name of VolumeAttributesClass to which this persistent volume belongs Empty value is not allowed When this field is not set, it indicates that this volume does not belong to any VolumeAttributesClass This field is mutable and can be changed by the CSI driver after a volume has been updated successfully to a new class For an unbound PersistentVolume, the volumeAttributesClassName will be matched with unbound PersistentVolumeClaims during the binding process This is an alpha field and requires enabling VolumeAttributesClass feature'}
							String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_volumeMode {doc 'volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state Value of Filesystem is implied when not included in spec'}
							io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
								mandatory
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
								optional
									io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
										alternative
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
									String io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
					String io_k8s_api_storage_v1_VolumeAttachmentSource_persistentVolumeName {doc 'persistentVolumeName represents the name of the persistent volume to attach'}
			io_k8s_api_storage_v1_VolumeAttachmentSpec {doc 'VolumeAttachmentSpec is the specification of a VolumeAttachment request'}
				mandatory
					String io_k8s_api_storage_v1_VolumeAttachmentSpec_attacher {doc 'attacher indicates the name of the volume driver that MUST handle this request This is the name returned by GetPluginName()'}
					String io_k8s_api_storage_v1_VolumeAttachmentSpec_nodeName {doc 'nodeName represents the node that the volume should be attached to'}
					io_k8s_api_storage_v1_VolumeAttachmentSpec_source {doc 'source represents the volume that should be attached'}
						optional
							io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec {doc 'inlineVolumeSpec contains all the information necessary to attach a persistent volume defined by a pod_s inline VolumeSource This field is populated only for the CSIMigration feature It contains translated fields from a pod_s inline VolumeSource to a PersistentVolumeSpec This field is beta-level and is only honored by servers that enabled the CSIMigration feature'}
								optional
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_accessModes cardinality [1..*] {doc 'accessModes contains all ways the volume can be mounted More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#access-modes'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_accessModes_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_awsElasticBlockStore {doc 'awsElasticBlockStore represents an AWS Disk resource that is attached to a kubelet_s host machine and then exposed to the pod More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_awsElasticBlockStore_volumeID {doc 'volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume) More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
										optional
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_awsElasticBlockStore_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
												alternative
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_awsElasticBlockStore_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_awsElasticBlockStore_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_awsElasticBlockStore_fsType_ntfs {doc 'Specific value: ntfs'}
											Integer io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_awsElasticBlockStore_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty)'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_awsElasticBlockStore_readOnly {doc 'readOnly value true will force the readOnly setting in VolumeMounts More info: https:_kubernetesio/docs/concepts/storage/volumes#awselasticblockstore'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_azureDisk {doc 'azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_azureDisk_diskName {doc 'diskName is the Name of the data disk in the blob storage'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_azureDisk_diskURI {doc 'diskURI is the URI of data disk in the blob storage'}
										optional
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_azureDisk_cachingMode {doc 'cachingMode is the Host Caching mode: None, Read Only, Read Write'}
												alternative
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_azureDisk_cachingMode_None {doc 'Specific value: None'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_azureDisk_cachingMode_Read_Only {doc 'Specific value: Read_Only'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_azureDisk_cachingMode_Read_Write {doc 'Specific value: Read_Write'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_azureDisk_fsType {doc 'fsType is Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_azureDisk_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_azureDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_azureDisk_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_azureDisk_kind {doc 'kind expected values are Shared: multiple blob disks per storage account  Dedicated: single blob disk per storage account  Managed: azure managed data disk (only in managed availability set) defaults to shared'}
												alternative
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_azureDisk_kind_Dedicated {doc 'Specific value: Dedicated'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_azureDisk_kind_Managed {doc 'Specific value: Managed'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_azureDisk_kind_Shared {doc 'Specific value: Shared'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_azureDisk_readOnly {default false, doc 'readOnly Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_azureFile {doc 'azureFile represents an Azure File Service mount on the host and bind mount to the pod'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_azureFile_secretName {doc 'secretName is the name of secret that contains Azure Storage Account Name and Key'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_azureFile_shareName {doc 'shareName is the azure Share Name'}
										optional
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_azureFile_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_azureFile_secretNamespace {doc 'secretNamespace is the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_capacity cardinality [1..*] {doc 'capacity is the description of the persistent volume_s resources and capacity More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#capacity'}
										alternative
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_capacity_asString {doc 'Sub-feature added of type String'}
											Integer io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_capacity_asNumber {doc 'Sub-feature added of type Number'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_cephfs {doc 'cephFS represents a Ceph FS mount on the host that shares a pod_s lifetime'}
										mandatory
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_cephfs_monitors cardinality [1..*] {doc 'monitors is Required: Monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_cephfs_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_cephfs_path {doc 'path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_cephfs_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_cephfs_secretFile {doc 'secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/usersecret More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_cephfs_secretRef {doc 'secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
												optional
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_cephfs_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_cephfs_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_cephfs_user {doc 'user is Optional: User is the rados user name, default is admin More info: https:_examplesk8sio/volumes/cephfs/READMEmd#how-to-use-it'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_cinder {doc 'cinder represents a cinder volume attached and mounted on kubelets host machine More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_cinder_volumeID {doc 'volumeID used to identify the volume in cinder More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
										optional
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_cinder_fsType {doc 'fsType Filesystem type to mount Must be a filesystem type supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
												alternative
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_cinder_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_cinder_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_cinder_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_cinder_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts More info: https:_examplesk8sio/mysql-cinder-pd/READMEmd'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_cinder_secretRef {doc 'secretRef is Optional: points to a secret object containing parameters used to connect to OpenStack'}
												optional
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_cinder_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_cinder_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_claimRef {doc 'claimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim Expected to be non-nil when bound claimVolumeName is the authoritative bind between PV and PVC More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#binding'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_claimRef_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_claimRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_claimRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_claimRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_claimRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_claimRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_claimRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi {doc 'csi represents storage that is handled by an external CSI driver (Beta feature)'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_driver {doc 'driver is the name of the driver to use for this volume Required'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_volumeHandle {doc 'volumeHandle is the unique volume name returned by the CSI volume plugins CreateVolume to refer to the volume on all subsequent calls Required'}
										optional
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_controllerExpandSecretRef {doc 'controllerExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerExpandVolume call This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
												optional
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_controllerExpandSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_controllerExpandSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_controllerPublishSecretRef {doc 'controllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
												optional
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_controllerPublishSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_controllerPublishSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_fsType {doc 'fsType to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs'}
												alternative
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_fsType_ext4 {doc 'Specific value: ext4'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_nodeExpandSecretRef {doc 'nodeExpandSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeExpandVolume call This field is optional, may be omitted if no secret is required If the secret object contains more than one secret, all secrets are passed'}
												optional
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_nodeExpandSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_nodeExpandSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_nodePublishSecretRef {doc 'nodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
												optional
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_nodePublishSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_nodePublishSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_nodeStageSecretRef {doc 'nodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls This field is optional, and may be empty if no secret is required If the secret object contains more than one secret, all secrets are passed'}
												optional
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_nodeStageSecretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_nodeStageSecretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_readOnly {default false, doc 'readOnly value to pass to ControllerPublishVolumeRequest Defaults to false (read/write)'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_volumeAttributes cardinality [1..*] {doc 'volumeAttributes of the volume to publish'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_csi_volumeAttributes_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_fc {doc 'fc represents a Fibre Channel resource that is attached to a kubelet_s host machine and then exposed to the pod'}
										optional
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_fc_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_fc_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_fc_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_fc_fsType_ntfs {doc 'Specific value: ntfs'}
											Integer io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_fc_lun {doc 'lun is Optional: FC target lun number'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_fc_readOnly {default false, doc 'readOnly is Optional: Defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_fc_targetWWNs cardinality [1..*] {doc 'targetWWNs is Optional: FC target worldwide names (WWNs)'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_fc_targetWWNs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_fc_wwids cardinality [1..*] {doc 'wwids Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_fc_wwids_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_flexVolume {doc 'flexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_flexVolume_driver {doc 'driver is the name of the driver to use for this volume'}
										optional
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_flexVolume_fsType {doc 'fsType is the Filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default filesystem depends on FlexVolume script'}
												alternative
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_flexVolume_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_flexVolume_fsType_ext4 {doc 'Specific value: ext4'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_flexVolume_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_flexVolume_options cardinality [1..*] {doc 'options is Optional: this field holds extra command options if any'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_flexVolume_options_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_flexVolume_readOnly {default false, doc 'readOnly is Optional: defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_flexVolume_secretRef {doc 'secretRef is Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts This may be empty if no secret object is specified If the secret object contains more than one secret, all secrets are passed to the plugin scripts'}
												optional
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_flexVolume_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_flexVolume_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_flocker {doc 'flocker represents a Flocker volume attached to a kubelet_s host machine and exposed to the pod for its usage This depends on the Flocker control service being running'}
										optional
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_flocker_datasetName {abstract, doc 'datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_flocker_datasetName_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_flocker_datasetUUID {abstract, doc 'datasetUUID is the UUID of the dataset This is unique identifier of a Flocker dataset'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_flocker_datasetUUID_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_gcePersistentDisk {doc 'gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet_s host machine and then exposed to the pod Provisioned by an admin More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_gcePersistentDisk_pdName {doc 'pdName is unique name of the PD resource in GCE Used to identify the disk in GCE More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
										optional
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_gcePersistentDisk_fsType {doc 'fsType is filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
												alternative
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_gcePersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_gcePersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_gcePersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
											Integer io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_gcePersistentDisk_partition {doc 'partition is the partition in the volume that you want to mount If omitted, the default is to mount by volume name Examples: For volume /dev/sda1, you specify the partition as 1 Similarly, the volume partition for /dev/sda is 0 (or you can leave the property empty) More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_gcePersistentDisk_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#gcepersistentdisk'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_glusterfs {doc 'glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod Provisioned by an admin More info: https:_examplesk8sio/volumes/glusterfs/READMEmd'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_glusterfs_endpoints {doc 'endpoints is the endpoint name that details Glusterfs topology More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_glusterfs_path {doc 'path is the Glusterfs volume path More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_glusterfs_endpointsNamespace {doc 'endpointsNamespace is the namespace that contains Glusterfs endpoint If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_glusterfs_readOnly {default false, doc 'readOnly here will force the Glusterfs volume to be mounted with read-only permissions Defaults to false More info: https:_examplesk8sio/volumes/glusterfs/READMEmd#create-a-pod'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_hostPath {doc 'hostPath represents a directory on the host Provisioned by a developer or tester This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_hostPath_path {doc 'path of the directory on the host If the path is a symlink, it will follow the link to the real path More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_hostPath_type {doc 'type for HostPath Volume Defaults to  More info: https:_kubernetesio/docs/concepts/storage/volumes#hostpath'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_iscsi {doc 'iscsi represents an ISCSI Disk resource that is attached to a kubelet_s host machine and then exposed to the pod Provisioned by an admin'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_iscsi_iqn {doc 'iqn is Target iSCSI Qualified Name'}
											Integer io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_iscsi_lun {doc 'lun is iSCSI Target Lun number'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_iscsi_targetPortal {doc 'targetPortal is iSCSI Target Portal The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
										optional
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_iscsi_chapAuthDiscovery {doc 'chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_iscsi_chapAuthSession {doc 'chapAuthSession defines whether support iSCSI Session CHAP authentication'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_iscsi_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#iscsi'}
												alternative
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_iscsi_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_iscsi_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_iscsi_fsType_ntfs {doc 'Specific value: ntfs'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_iscsi_initiatorName {doc 'initiatorName is the custom iSCSI Initiator Name If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_iscsi_iscsiInterface {doc 'iscsiInterface is the interface Name that uses an iSCSI transport Defaults to _default_ (tcp)'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_iscsi_portals cardinality [1..*] {doc 'portals is the iSCSI Target Portal List The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260)'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_iscsi_portals_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_iscsi_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_iscsi_secretRef {doc 'secretRef is the CHAP Secret for iSCSI target and initiator authentication'}
												optional
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_iscsi_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_iscsi_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_local {doc 'local represents directly-attached storage with node affinity'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_local_path {doc 'path of the full path to the volume on the node It can be either a directory or block device (disk, partition, )'}
										optional
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_local_fsType {doc 'fsType is the filesystem type to mount It applies only when the Path is a block device Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs The default value is to auto-select a filesystem if unspecified'}
												alternative
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_local_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_local_fsType_ext4 {doc 'Specific value: ext4'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_local_fsType_ntfs {doc 'Specific value: ntfs'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_mountOptions cardinality [1..*] {doc 'mountOptions is the list of mount options, eg [ro, soft] Not validated - mount will simply fail if one is invalid More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes/#mount-options'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_mountOptions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nfs {doc 'nfs represents an NFS mount on the host Provisioned by an admin More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nfs_path {doc 'path that is exported by the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nfs_server {doc 'server is the hostname or IP address of the NFS server More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
										optional
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nfs_readOnly {default false, doc 'readOnly here will force the NFS export to be mounted with read-only permissions Defaults to false More info: https:_kubernetesio/docs/concepts/storage/volumes#nfs'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity {doc 'nodeAffinity defines constraints that limit what nodes this volume can be accessed from This field influences the scheduling of pods that use this volume'}
										optional
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required {doc 'required specifies hard node constraints that must be met'}
												mandatory
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms cardinality [1..*] {doc 'Required A list of node selector terms The terms are ORed'}
														optional
															io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions cardinality [1..*] {doc 'A list of node selector requirements by node_s labels'}
																mandatory
																	String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_key {doc 'The label key that the selector applies to'}
																	io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																		alternative
																			io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Lt {doc 'Specific value: Lt'}
																			io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_In {doc 'Specific value: In'}
																			io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Gt {doc 'Specific value: Gt'}
																			io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields cardinality [1..*] {doc 'A list of node selector requirements by node_s fields'}
																mandatory
																	String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_key {doc 'The label key that the selector applies to'}
																	io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator {doc 'Represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists, DoesNotExist Gt, and Lt'}
																		alternative
																			io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_NotIn {doc 'Specific value: NotIn'}
																			io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Lt {doc 'Specific value: Lt'}
																			io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_In {doc 'Specific value: In'}
																			io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Gt {doc 'Specific value: Gt'}
																			io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Exists {doc 'Specific value: Exists'}
																			io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
																optional
																	io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values cardinality [1..*] {doc 'An array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer This array is replaced during a strategic merge patch'}
																		mandatory
																			String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_persistentVolumeReclaimPolicy {doc 'persistentVolumeReclaimPolicy defines what happens to a persistent volume when released from its claim Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated) Recycle must be supported by the volume plugin underlying this PersistentVolume More info: https:_kubernetesio/docs/concepts/storage/persistent-volumes#reclaiming'}
										alternative
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_persistentVolumeReclaimPolicy_Retain {doc 'Specific value: Retain'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_persistentVolumeReclaimPolicy_Recycle {doc 'Specific value: Recycle'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_persistentVolumeReclaimPolicy_Delete {doc 'Specific value: Delete'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_photonPersistentDisk {doc 'photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_photonPersistentDisk_pdID {doc 'pdID is the ID that identifies Photon Controller persistent disk'}
										optional
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_photonPersistentDisk_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_photonPersistentDisk_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_photonPersistentDisk_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_photonPersistentDisk_fsType_ntfs {doc 'Specific value: ntfs'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_portworxVolume {doc 'portworxVolume represents a portworx volume attached and mounted on kubelets host machine'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_portworxVolume_volumeID {doc 'volumeID uniquely identifies a Portworx volume'}
										optional
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_portworxVolume_fsType {doc 'fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_portworxVolume_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_portworxVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_portworxVolume_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_quobyte {doc 'quobyte represents a Quobyte mount on the host that shares a pod_s lifetime'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_quobyte_registry {doc 'registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_quobyte_volume {doc 'volume is a string that references an already created Quobyte volume by name'}
										optional
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_quobyte_group {doc 'group to map volume access to Default is no group'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_quobyte_readOnly {default false, doc 'readOnly here will force the Quobyte volume to be mounted with read-only permissions Defaults to false'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_quobyte_tenant {doc 'tenant owning the given Quobyte volume in the Backend Used with dynamically provisioned Quobyte volumes, value is set by the plugin'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_quobyte_user {doc 'user to map volume access to Defaults to serivceaccount user'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_rbd {doc 'rbd represents a Rados Block Device mount on the host that shares a pod_s lifetime More info: https:_examplesk8sio/volumes/rbd/READMEmd'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_rbd_image {doc 'image is the rados image name More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_rbd_monitors cardinality [1..*] {doc 'monitors is a collection of Ceph monitors More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
												mandatory
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_rbd_monitors_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_rbd_fsType {doc 'fsType is the filesystem type of the volume that you want to mount Tip: Ensure that the filesystem type is supported by the host operating system Examples: ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified More info: https:_kubernetesio/docs/concepts/storage/volumes#rbd'}
												alternative
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_rbd_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_rbd_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_rbd_fsType_ntfs {doc 'Specific value: ntfs'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_rbd_keyring {doc 'keyring is the path to key ring for RBDUser Default is /etc/ceph/keyring More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_rbd_pool {doc 'pool is the rados pool name Default is rbd More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_rbd_readOnly {default false, doc 'readOnly here will force the ReadOnly setting in VolumeMounts Defaults to false More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_rbd_secretRef {doc 'secretRef is name of the authentication secret for RBDUser If provided overrides keyring Default is nil More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
												optional
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_rbd_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_rbd_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_rbd_user {doc 'user is the rados user name Default is admin More info: https:_examplesk8sio/volumes/rbd/READMEmd#how-to-use-it'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_scaleIO {doc 'scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_scaleIO_gateway {doc 'gateway is the host address of the ScaleIO API Gateway'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_scaleIO_secretRef {doc 'secretRef references to the secret for ScaleIO user and other sensitive information If this is not provided, Login operation will fail'}
												optional
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_scaleIO_secretRef_name {doc 'name is unique within a namespace to reference a secret resource'}
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_scaleIO_secretRef_namespace {doc 'namespace defines the space within which the secret name must be unique'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_scaleIO_system {doc 'system is the name of the storage system as configured in ScaleIO'}
										optional
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_scaleIO_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Default is xfs'}
												alternative
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_scaleIO_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_scaleIO_fsType_ext4 {doc 'Specific value: ext4'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_scaleIO_fsType_ntfs {doc 'Specific value: ntfs'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_scaleIO_protectionDomain {doc 'protectionDomain is the name of the ScaleIO Protection Domain for the configured storage'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_scaleIO_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_scaleIO_sslEnabled {default false, doc 'sslEnabled is the flag to enable/disable SSL communication with Gateway, default false'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_scaleIO_storageMode {doc 'storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned Default is ThinProvisioned'}
												alternative
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_scaleIO_storageMode_ThinProvisioned {default, doc 'Specific value: ThinProvisioned'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_scaleIO_storageMode_ThickProvisioned {doc 'Specific value: ThickProvisioned'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_scaleIO_storagePool {doc 'storagePool is the ScaleIO Storage Pool associated with the protection domain'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_scaleIO_volumeName {doc 'volumeName is the name of a volume already created in the ScaleIO system that is associated with this volume source'}
									String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_storageClassName {doc 'storageClassName is the name of StorageClass to which this persistent volume belongs Empty value means that this volume does not belong to any StorageClass'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_storageos {doc 'storageOS represents a StorageOS volume that is attached to the kubelet_s host machine and mounted into the pod More info: https:_examplesk8sio/volumes/storageos/READMEmd'}
										optional
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_storageos_fsType {doc 'fsType is the filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_storageos_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_storageos_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_storageos_fsType_ntfs {doc 'Specific value: ntfs'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_storageos_readOnly {default false, doc 'readOnly defaults to false (read/write) ReadOnly here will force the ReadOnly setting in VolumeMounts'}
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_storageos_secretRef {doc 'secretRef specifies the secret to use for obtaining the StorageOS API credentials  If not specified, default values will be attempted'}
												optional
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_storageos_secretRef_apiVersion {doc 'API version of the referent'}
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_storageos_secretRef_fieldPath {doc 'If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredStatemanifestcontainers[2] For example, if the object reference is to a container within a pod, this would take on a value like: speccontainersname (where name refers to the name of the container that triggered the event) or if no container name is specified speccontainers[2] (container with index 2 in this pod) This syntax is chosen only to have some well-defined way of referencing a part of an object'}
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_storageos_secretRef_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_storageos_secretRef_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#names'}
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_storageos_secretRef_namespace {doc 'Namespace of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces/'}
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_storageos_secretRef_resourceVersion {doc 'Specific resourceVersion to which this reference is made, if any More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
													String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_storageos_secretRef_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names/#uids'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_storageos_volumeName {doc 'volumeName is the human-readable name of the StorageOS volume  Volume names are only unique within a namespace'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_storageos_volumeNamespace {doc 'volumeNamespace specifies the scope of the volume within StorageOS  If no namespace is specified then the Pod_s namespace will be used  This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration Set VolumeName to any name to override the default behaviour Set to default if you are not using namespaces within StorageOS Namespaces that do not pre-exist within StorageOS will be created'}
									String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_volumeAttributesClassName {doc 'Name of VolumeAttributesClass to which this persistent volume belongs Empty value is not allowed When this field is not set, it indicates that this volume does not belong to any VolumeAttributesClass This field is mutable and can be changed by the CSI driver after a volume has been updated successfully to a new class For an unbound PersistentVolume, the volumeAttributesClassName will be matched with unbound PersistentVolumeClaims during the binding process This is an alpha field and requires enabling VolumeAttributesClass feature'}
									String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_volumeMode {doc 'volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state Value of Filesystem is implied when not included in spec'}
									io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_vsphereVolume {doc 'vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine'}
										mandatory
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_vsphereVolume_volumePath {doc 'volumePath is the path that identifies vSphere volume vmdk'}
										optional
											io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_vsphereVolume_fsType {doc 'fsType is filesystem type to mount Must be a filesystem type supported by the host operating system Ex ext4, xfs, ntfs Implicitly inferred to be ext4 if unspecified'}
												alternative
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_vsphereVolume_fsType_xfs {doc 'Specific value: xfs'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_vsphereVolume_fsType_ext4 {default, doc 'Specific value: ext4'}
													io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_vsphereVolume_fsType_ntfs {doc 'Specific value: ntfs'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_vsphereVolume_storagePolicyID {doc 'storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName'}
											String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_vsphereVolume_storagePolicyName {doc 'storagePolicyName is the storage Policy Based Management (SPBM) profile name'}
							String io_k8s_api_storage_v1_VolumeAttachmentSpec_source_persistentVolumeName {doc 'persistentVolumeName represents the name of the persistent volume to attach'}
			io_k8s_api_storage_v1_VolumeAttachmentStatus {doc 'VolumeAttachmentStatus is the status of a VolumeAttachment request'}
				mandatory
					io_k8s_api_storage_v1_VolumeAttachmentStatus_attached {doc 'attached indicates the volume is successfully attached This field must only be set by the entity completing the attach operation, ie the external-attacher'}
				optional
					io_k8s_api_storage_v1_VolumeAttachmentStatus_attachError {doc 'attachError represents the last error encountered during attach operation, if any This field must only be set by the entity completing the attach operation, ie the external-attacher'}
						optional
							String io_k8s_api_storage_v1_VolumeAttachmentStatus_attachError_message {doc 'message represents the error encountered during Attach or Detach operation This string may be logged, so it should not contain sensitive information'}
							io_k8s_api_storage_v1_VolumeAttachmentStatus_attachError_time {doc 'time represents the time the error was encountered'}
								optional
									String io_k8s_api_storage_v1_VolumeAttachmentStatus_attachError_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					io_k8s_api_storage_v1_VolumeAttachmentStatus_attachmentMetadata cardinality [1..*] {doc 'attachmentMetadata is populated with any information returned by the attach operation, upon successful attach, that must be passed into subsequent WaitForAttach or Mount calls This field must only be set by the entity completing the attach operation, ie the external-attacher'}
						mandatory
							String io_k8s_api_storage_v1_VolumeAttachmentStatus_attachmentMetadata_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_api_storage_v1_VolumeAttachmentStatus_detachError {doc 'detachError represents the last error encountered during detach operation, if any This field must only be set by the entity completing the detach operation, ie the external-attacher'}
						optional
							String io_k8s_api_storage_v1_VolumeAttachmentStatus_detachError_message {doc 'message represents the error encountered during Attach or Detach operation This string may be logged, so it should not contain sensitive information'}
							io_k8s_api_storage_v1_VolumeAttachmentStatus_detachError_time {doc 'time represents the time the error was encountered'}
								optional
									String io_k8s_api_storage_v1_VolumeAttachmentStatus_detachError_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
			io_k8s_api_storage_v1_VolumeError {doc 'VolumeError captures an error encountered during a volume operation'}
				optional
					String io_k8s_api_storage_v1_VolumeError_message {doc 'message represents the error encountered during Attach or Detach operation This string may be logged, so it should not contain sensitive information'}
					io_k8s_api_storage_v1_VolumeError_time {doc 'time represents the time the error was encountered'}
						optional
							String io_k8s_api_storage_v1_VolumeError_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
			io_k8s_api_storage_v1_VolumeNodeResources {doc 'VolumeNodeResources is a set of resource limits for scheduling of volumes'}
				optional
					Integer io_k8s_api_storage_v1_VolumeNodeResources_count {doc 'count indicates the maximum number of unique volumes managed by the CSI driver that can be used on a node A volume that is both attached and mounted on a node is considered to be used once, not twice The same rule applies for a unique volume that is shared among multiple pods on the same node If this field is not specified, then the supported number of volumes on this node is unbounded'}
			io_k8s_api_storage_v1alpha1_VolumeAttributesClass {doc 'VolumeAttributesClass represents a specification of mutable volume attributes defined by the CSI driver The class can be specified during dynamic provisioning of PersistentVolumeClaims, and changed in the PersistentVolumeClaim spec after provisioning'}
				mandatory
					String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_driverName {doc 'Name of the CSI driver This field is immutable'}
				optional
					String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_kind {default 'VolumeAttributesClass', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_storage_v1alpha1_VolumeAttributesClass_parameters cardinality [1..*] {doc 'parameters hold volume attributes defined by the CSI driver These values are opaque to the Kubernetes and are passed directly to the CSI driver The underlying storage provider supports changing these attributes on an existing volume, however the parameters field itself is immutable To invoke a volume update, a new VolumeAttributesClass should be created with new parameters, and the PersistentVolumeClaim should be updated to reference the new VolumeAttributesClassThis field is required and must contain at least one key/value pair The keys cannot be empty, and the maximum number of parameters is 512, with a cumulative max size of 256K If the CSI driver rejects invalid parameters, the target PersistentVolumeClaim will be set to an Infeasible state in the modifyVolumeStatus field'}
						mandatory
							String io_k8s_api_storage_v1alpha1_VolumeAttributesClass_parameters_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_api_storage_v1alpha1_VolumeAttributesClassList {doc 'VolumeAttributesClassList is a collection of VolumeAttributesClass objects'}
				mandatory
					io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items cardinality [1..*] {doc 'items is the list of VolumeAttributesClass objects'}
						mandatory
							String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_driverName {doc 'Name of the CSI driver This field is immutable'}
						optional
							String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_kind {default 'VolumeAttributesClass', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_parameters cardinality [1..*] {doc 'parameters hold volume attributes defined by the CSI driver These values are opaque to the Kubernetes and are passed directly to the CSI driver The underlying storage provider supports changing these attributes on an existing volume, however the parameters field itself is immutable To invoke a volume update, a new VolumeAttributesClass should be created with new parameters, and the PersistentVolumeClaim should be updated to reference the new VolumeAttributesClassThis field is required and must contain at least one key/value pair The keys cannot be empty, and the maximum number of parameters is 512, with a cumulative max size of 256K If the CSI driver rejects invalid parameters, the target PersistentVolumeClaim will be set to an Infeasible state in the modifyVolumeStatus field'}
								mandatory
									String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_items_parameters_StringValueAdditional {doc 'Added String mandatory for complete structure Object in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_kind {default 'VolumeAttributesClassList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_storage_v1alpha1_VolumeAttributesClassList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_storagemigration_v1alpha1_GroupVersionResource {doc 'The names of the group, the version, and the resource'}
				optional
					String io_k8s_api_storagemigration_v1alpha1_GroupVersionResource_group {doc 'The name of the group'}
					String io_k8s_api_storagemigration_v1alpha1_GroupVersionResource_resource {doc 'The name of the resource'}
					String io_k8s_api_storagemigration_v1alpha1_GroupVersionResource_version {doc 'The name of the version'}
			io_k8s_api_storagemigration_v1alpha1_MigrationCondition {doc 'Describes the state of a migration at a certain point'}
				mandatory
					io_k8s_api_storagemigration_v1alpha1_MigrationCondition_status {doc 'Status of the condition, one of True, False, Unknown'}
						alternative
							io_k8s_api_storagemigration_v1alpha1_MigrationCondition_status_Unknown {doc 'Specific value: Unknown'}
							io_k8s_api_storagemigration_v1alpha1_MigrationCondition_status_False {doc 'Specific value: False'}
							io_k8s_api_storagemigration_v1alpha1_MigrationCondition_status_True {doc 'Specific value: True'}
					String io_k8s_api_storagemigration_v1alpha1_MigrationCondition_type {doc 'Type of the condition'}
				optional
					io_k8s_api_storagemigration_v1alpha1_MigrationCondition_lastUpdateTime {doc 'The last time this condition was updated'}
						optional
							String io_k8s_api_storagemigration_v1alpha1_MigrationCondition_lastUpdateTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_api_storagemigration_v1alpha1_MigrationCondition_message {doc 'A human readable message indicating details about the transition'}
					String io_k8s_api_storagemigration_v1alpha1_MigrationCondition_reason {doc 'The reason for the condition_s last transition'}
			io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration {doc 'StorageVersionMigration represents a migration of stored data to the latest storage version'}
				optional
					String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_kind {default 'StorageVersionMigration', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata {doc 'Standard object metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_managedFields_subresource {doc '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'}
									io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_spec {doc 'Specification of the migration'}
						mandatory
							io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_spec_resource {doc 'The resource that is being migrated The migrator sends requests to the endpoint serving the resource Immutable'}
								optional
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_spec_resource_group {doc 'The name of the group'}
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_spec_resource_resource {doc 'The name of the resource'}
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_spec_resource_version {doc 'The name of the version'}
						optional
							String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_spec_continueToken {doc 'The token used in the list options to get the next chunk of objects to migrate When the statusconditions indicates the migration is Running, users can use this token to check the progress of the migration'}
					io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_status {doc 'Status of the migration'}
						optional
							io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_status_conditions cardinality [1..*] {doc 'The latest available observations of the migration_s current state'}
								mandatory
									io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_status_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
										alternative
											io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_status_conditions_status_True {doc 'Specific value: True'}
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_status_conditions_type {doc 'Type of the condition'}
								optional
									io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_status_conditions_lastUpdateTime {doc 'The last time this condition was updated'}
										optional
											String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_status_conditions_lastUpdateTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_status_conditions_message {doc 'A human readable message indicating details about the transition'}
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_status_conditions_reason {doc 'The reason for the condition_s last transition'}
							String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration_status_resourceVersion {doc 'ResourceVersion to compare with the GC cache for performing the migration This is the current resource version of given group, version and resource when kube-controller-manager first observes this StorageVersionMigration resource'}
			io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList {doc 'StorageVersionMigrationList is a collection of storage version migrations'}
				mandatory
					io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items cardinality [1..*] {doc 'Items is the list of StorageVersionMigration'}
						optional
							String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_kind {default 'StorageVersionMigration', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata {doc 'Standard object metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_spec {doc 'Specification of the migration'}
								mandatory
									io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_spec_resource {doc 'The resource that is being migrated The migrator sends requests to the endpoint serving the resource Immutable'}
										optional
											String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_spec_resource_group {doc 'The name of the group'}
											String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_spec_resource_resource {doc 'The name of the resource'}
											String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_spec_resource_version {doc 'The name of the version'}
								optional
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_spec_continueToken {doc 'The token used in the list options to get the next chunk of objects to migrate When the statusconditions indicates the migration is Running, users can use this token to check the progress of the migration'}
							io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_status {doc 'Status of the migration'}
								optional
									io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_status_conditions cardinality [1..*] {doc 'The latest available observations of the migration_s current state'}
										mandatory
											io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_status_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
												alternative
													io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_status_conditions_status_True {doc 'Specific value: True'}
											String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_status_conditions_type {doc 'Type of the condition'}
										optional
											io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_status_conditions_lastUpdateTime {doc 'The last time this condition was updated'}
												optional
													String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_status_conditions_lastUpdateTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_status_conditions_message {doc 'A human readable message indicating details about the transition'}
											String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_status_conditions_reason {doc 'The reason for the condition_s last transition'}
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_items_status_resourceVersion {doc 'ResourceVersion to compare with the GC cache for performing the migration This is the current resource version of given group, version and resource when kube-controller-manager first observes this StorageVersionMigration resource'}
				optional
					String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_kind {default 'StorageVersionMigrationList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationSpec {doc 'Spec of the storage version migration'}
				mandatory
					io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationSpec_resource {doc 'The resource that is being migrated The migrator sends requests to the endpoint serving the resource Immutable'}
						optional
							String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationSpec_resource_group {doc 'The name of the group'}
							String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationSpec_resource_resource {doc 'The name of the resource'}
							String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationSpec_resource_version {doc 'The name of the version'}
				optional
					String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationSpec_continueToken {doc 'The token used in the list options to get the next chunk of objects to migrate When the statusconditions indicates the migration is Running, users can use this token to check the progress of the migration'}
			io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationStatus {doc 'Status of the storage version migration'}
				optional
					io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationStatus_conditions cardinality [1..*] {doc 'The latest available observations of the migration_s current state'}
						mandatory
							io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationStatus_conditions_status {doc 'Status of the condition, one of True, False, Unknown'}
								alternative
									io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationStatus_conditions_status_True {doc 'Specific value: True'}
							String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationStatus_conditions_type {doc 'Type of the condition'}
						optional
							io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationStatus_conditions_lastUpdateTime {doc 'The last time this condition was updated'}
								optional
									String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationStatus_conditions_lastUpdateTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationStatus_conditions_message {doc 'A human readable message indicating details about the transition'}
							String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationStatus_conditions_reason {doc 'The reason for the condition_s last transition'}
					String io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationStatus_resourceVersion {doc 'ResourceVersion to compare with the GC cache for performing the migration This is the current resource version of given group, version and resource when kube-controller-manager first observes this StorageVersionMigration resource'}
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceColumnDefinition {doc 'CustomResourceColumnDefinition specifies a column for server side printing'}
				mandatory
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceColumnDefinition_jsonPath {doc 'jsonPath is a simple JSON path (ie with array notation) which is evaluated against each custom resource to produce the value for this column'}
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceColumnDefinition_name {doc 'name is a human readable name for the column'}
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceColumnDefinition_type {doc 'type is an OpenAPI type definition for this column See https:_githubcom/OAI/OpenAPI-Specification/blob/master/versions/20md#data-types for details'}
				optional
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceColumnDefinition_description {doc 'description is a human readable description of this column'}
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceColumnDefinition_format {doc '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:_githubcom/OAI/OpenAPI-Specification/blob/master/versions/20md#data-types for details'}
					Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceColumnDefinition_priority {doc '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'}
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion {doc 'CustomResourceConversion describes how to convert different versions of a CR'}
				mandatory
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_strategy {doc '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 specpreserveUnknownFields to be false, and specconversionwebhook to be set'}
						alternative
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_strategy_None {doc 'Specific value: None'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_strategy_Webhook {doc 'Specific value: Webhook'}
				optional
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_webhook {doc 'webhook describes how to call the conversion webhook Required when strategy is set to Webhook'}
						mandatory
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_webhook_conversionReviewVersions cardinality [1..*] {doc 'conversionReviewVersions is an ordered list of preferred ConversionReview versions 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'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_webhook_conversionReviewVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_webhook_clientConfig {doc 'clientConfig is the instructions for how to call the webhook if strategy is Webhook'}
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_webhook_clientConfig_caBundle {doc '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'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_webhook_clientConfig_service {doc 'service is a reference to the service for this webhook Either service or url must be specifiedIf the webhook is running within the cluster, then you should use service'}
										mandatory
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_webhook_clientConfig_service_name {doc 'name is the name of the service Required'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_webhook_clientConfig_service_namespace {doc 'namespace is the namespace of the service Required'}
										optional
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_webhook_clientConfig_service_path {doc 'path is an optional URL path at which the webhook will be contacted'}
											Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_webhook_clientConfig_service_port {default 443, doc 'port is an optional service port at which the webhook will be contacted port should be a valid port number (1-65535, inclusive) Defaults to 443 for backward compatibility'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_webhook_clientConfig_url {abstract, doc 'url gives the location of the webhook, in standard URL form (scheme:_host:port/path) Exactly one of url or service must be specifiedThe host should not refer to a service running in the cluster; use the service field instead The host might be resolved via external DNS in some apiservers (eg, kube-apiserver cannot resolve in-cluster DNS as that would be a layering violation) host may also be an IP addressPlease note that using localhost or 127001 as a host is 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, ie, not easy to turn up in a new clusterThe 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 identifierAttempting to use a user or basic auth eg user:password@ is not allowed Fragments (#) and query parameters (?) are not allowed, either'}
										mandatory
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_webhook_clientConfig_url_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition {doc 'CustomResourceDefinition represents a resource that should be exposed on the API server  Its name MUST be in the format <specname><specgroup>'}
				mandatory
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec {doc 'spec describes how the user wants the resources to appear'}
						mandatory
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_group {doc '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 <namesplural><group>)'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_names {doc 'names specify the resource and kind names for the custom resource'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_names_kind {doc 'kind is the serialized kind of the resource It is normally CamelCase and singular Custom resource instances will use this value as the kind attribute in API calls'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_names_plural {doc '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 <namesplural><group>) Must be all lowercase'}
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_names_categories cardinality [1..*] {doc 'categories is a list of grouped resources this custom resource belongs to (eg _all_) This is published in API discovery documents, and used by clients to support invocations like kubectl get all'}
										mandatory
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_names_categories_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_names_listKind {doc 'listKind is the serialized kind of the list for this resource Defaults to kindList'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_names_shortNames cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_names_shortNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_names_singular {doc 'singular is the singular name of the resource It must be all lowercase Defaults to lowercased kind'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_scope {doc 'scope indicates whether the defined custom resource is cluster- or namespace-scoped Allowed values are Cluster and Namespaced'}
								alternative
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_scope_Cluster {doc 'Specific value: Cluster'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_scope_Namespaced {doc 'Specific value: Namespaced'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_name {doc 'name is the version name, eg v1, v2beta1, etc The custom resources are served under this version at /apis/<group>/<version>/ if served is true'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_served {doc 'served is a flag enabling/disabling this version from being served via REST APIs'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_storage {doc 'storage indicates this version should be used when persisting custom resources to storage There must be exactly one version with storage=true'}
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_additionalPrinterColumns cardinality [1..*] {doc 'additionalPrinterColumns specifies additional columns returned in Table output See https:_kubernetesio/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'}
										mandatory
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_additionalPrinterColumns_jsonPath {doc 'jsonPath is a simple JSON path (ie with array notation) which is evaluated against each custom resource to produce the value for this column'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_additionalPrinterColumns_name {doc 'name is a human readable name for the column'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_additionalPrinterColumns_type {doc 'type is an OpenAPI type definition for this column See https:_githubcom/OAI/OpenAPI-Specification/blob/master/versions/20md#data-types for details'}
										optional
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_additionalPrinterColumns_description {doc 'description is a human readable description of this column'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_additionalPrinterColumns_format {doc '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:_githubcom/OAI/OpenAPI-Specification/blob/master/versions/20md#data-types for details'}
											Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_additionalPrinterColumns_priority {doc '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'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_deprecated {default false, deprecated, doc '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'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_deprecationWarning {doc 'deprecationWarning overrides the default warning returned to API clients May only be set when deprecated is 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'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema {doc 'schema describes the schema used for validation, pruning, and defaulting of this version of the custom resource'}
										optional
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema {doc 'openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning'}
												optional
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_ref
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_schema
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_additionalItems
														optional
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_additionalItems_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_additionalProperties
														optional
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_additionalProperties_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_default {doc 'default is a default value for undefined object fields Defaulting is a beta feature under the CustomResourceDefaulting feature gate Defaulting requires specpreserveUnknownFields to be false'}
														optional
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_default_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_dependencies cardinality [1..*]
														optional
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_dependencies_JSONSchemaPropsOrStringArray {doc 'JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array'}
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_description
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_enum cardinality [1..*]
														optional
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_enum_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_example
														optional
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_example_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_exclusiveMaximum
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_exclusiveMinimum
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_externalDocs
														optional
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_externalDocs_description
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_externalDocs_url
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_format {doc 'format is an OpenAPI v3 format string Unknown formats are ignored The following formats are validated:- bsonobjectid: a bson object ID, ie a 24 characters hex string - uri: an URI as parsed by Golang net/urlParseRequestURI - email: an email address as parsed by Golang net/mailParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 31 [RFC1034] - ipv4: an IPv4 IP as parsed by Golang netParseIP - ipv6: an IPv6 IP as parsed by Golang netParseIP - cidr: a CIDR as parsed by Golang netParseCIDR - mac: a MAC address as parsed by Golang netParseMAC - 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_d3)_d11)$ with any non digit characters mixed in - ssn: a US social security number following the regex ^_d3[- ]?_d2[- ]?_d4$ - 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 timeParseDuration or compatible with Scala duration format - datetime: a date time string like 2014-12-15T19:30:20000Z as defined by date-time in RFC3339'}
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_id
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_items
														optional
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_items_JSONSchemaPropsOrArray {doc 'JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps Mainly here for serialization purposes'}
													Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_maxItems
													Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_maxLength
													Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_maxProperties
													Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_maximum
													Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_minItems
													Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_minLength
													Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_minProperties
													Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_minimum
													Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_multipleOf
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_nullable
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_pattern
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_required cardinality [1..*]
														mandatory
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_required_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_title
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_type
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_uniqueItems
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_x_kubernetes_embedded_resource {doc 'x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtimeObject, 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)'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_x_kubernetes_int_or_string {doc '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:1) anyOf:   - type: integer   - type: string2) allOf:   - anyOf:     - type: integer     - type: string   -  zero or more'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_x_kubernetes_list_map_keys cardinality [1..*] {doc 'x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type map by specifying the keys used as the index of the mapThis 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'}
														mandatory
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_x_kubernetes_list_map_keys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_x_kubernetes_list_type {doc '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:1) 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, )2) 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 atomic or an     array with x-kubernetes-list-type atomic3) 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 objectDefaults to atomic for arrays'}
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_x_kubernetes_map_type {doc '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:1) 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 maps2) atomic: the list is treated as a single entity, like a scalar     Atomic maps will be entirely replaced when updated'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_x_kubernetes_preserve_unknown_fields {doc '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'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_x_kubernetes_validations cardinality [1..*] {doc 'x-kubernetes-validations describes a list of validation rules written in the CEL expression language This field is an alpha-level Using this field requires the feature gate CustomResourceValidationExpressions to be enabled'}
														mandatory
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_x_kubernetes_validations_rule {doc 'Rule represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema The self variable in the CEL expression is bound to the scoped value Example: - Rule scoped to the root of a resource with a status subresource: rule: selfstatusactual <= selfspecmaxDesiredIf the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via selffield and field presence can be checked via has(selffield) Null valued fields are treated as absent fields in CEL expressions If the Rule is scoped to an object with additionalProperties (ie a map) the value of the map are accessible via self[mapKey], map containment can be checked via mapKey in self and all entries of the map are accessible via CEL macros and functions such as selfall() 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, self is bound to the scalar value Examples: - Rule scoped to a map of objects: rule: selfcomponents[_Widget_]priority < 10 - Rule scoped to a list of integers: rule: selfvaluesall(value, value >= 0 && value < 100) - Rule scoped to a string value: rule: selfstartsWith(_kube_)The apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects No other metadata properties are accessibleUnknown 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 typeOnly 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, returnExamples:  - Rule accessing a property named namespace: rule: self__namespace__ > 0  - Rule accessing a property named x-prop: rule: selfx__dash__prop > 0  - Rule accessing a property named redact__d: rule: selfredact__underscores__d > 0Equality on arrays with x-kubernetes-list-type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderIf rule makes use of the oldSelf variable it is implicitly a transition ruleBy default, the oldSelf variable is the same type as self When optionalOldSelf is true, the oldSelf variable is a CEL optional variable whose value() is the same type as selfSee the documentation for the optionalOldSelf field for detailsTransition 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 optionalOldSelf to true'}
														optional
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_x_kubernetes_validations_fieldPath {doc 'fieldPath represents the field path returned when the validation fails It must be a relative JSON path (ie with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field eg when validation checks if a specific attribute foo under a map testMap, the fieldPath could be set to testMapfoo If the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: eg testList It does not support list numeric index It supports child operation to refer to an existing field currently Refer to [JSONPath support in Kubernetes](https:_kubernetesio/docs/reference/kubectl/jsonpath/) for more info Numeric index of array is not supported For field name which contains special characters, use [_specialName_] to refer the field name eg for attribute foo34$ appears in a list testList, the fieldPath could be set to testList[_foo34$_]'}
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_x_kubernetes_validations_message {doc '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 eg must be a URL with the host matching spechost'}
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_x_kubernetes_validations_messageExpression {doc '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(selfmax)+)'}
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_x_kubernetes_validations_optionalOldSelf {doc '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 valueWhen enabled oldSelf will be a CEL optional whose value will be None if there is no old value, or when the object is initially createdYou may check for presence of oldSelf using oldSelfhasValue() and unwrap it after checking using oldSelfvalue() Check the CEL documentation for Optional types for more information: https:_pkggodev/githubcom/google/cel-go/cel#OptionalTypesMay not be set unless oldSelf is used in rule'}
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_x_kubernetes_validations_reason {doc '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'}
																alternative
																	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_x_kubernetes_validations_reason_FieldValueForbidden {doc 'Specific value: FieldValueForbidden'}
																	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_x_kubernetes_validations_reason_FieldValueDuplicate {doc 'Specific value: FieldValueDuplicate'}
																	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_x_kubernetes_validations_reason_FieldValueRequired {doc 'Specific value: FieldValueRequired'}
																	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_schema_openAPIV3Schema_x_kubernetes_validations_reason_FieldValueInvalid {default, doc 'Specific value: FieldValueInvalid'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_selectableFields cardinality [1..*] {doc 'selectableFields specifies paths to fields that may be used as field selectors A maximum of 8 selectable fields are allowed See https:_kubernetesio/docs/concepts/overview/working-with-objects/field-selectors'}
										mandatory
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_selectableFields_jsonPath {doc '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'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_subresources {doc 'subresources specify what subresources this version of the defined custom resource have'}
										optional
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_subresources_scale {doc 'scale indicates the custom resource should serve a /scale subresource that returns an autoscaling/v1 Scale object'}
												mandatory
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_subresources_scale_specReplicasPath {doc 'specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale specreplicas 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 /scale subresource will return an error on GET'}
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_subresources_scale_statusReplicasPath {doc 'statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale statusreplicas 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, the statusreplicas value in the /scale subresource will default to 0'}
												optional
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_subresources_scale_labelSelectorPath {doc 'labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale statusselector Only JSON paths without the array notation are allowed Must be a JSON Path under status or 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:_kubernetesio/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, the statusselector value in the /scale subresource will default to the empty string'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_subresources_status {doc 'status indicates the custom resource should serve a /status subresource When enabled: 1 requests to the custom resource primary endpoint ignore changes to the status stanza of the object 2 requests to the custom resource /status subresource ignore changes to anything other than the status stanza of the object'}
												optional
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_versions_subresources_status_CustomResourceSubresourceStatus {doc 'CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources Status is represented by the status JSON path inside of a CustomResource When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza'}
						optional
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion {doc 'conversion defines conversion settings for the CRD'}
								mandatory
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_strategy {doc '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 specpreserveUnknownFields to be false, and specconversionwebhook to be set'}
										alternative
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_strategy_None {doc 'Specific value: None'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_strategy_Webhook {doc 'Specific value: Webhook'}
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_webhook {doc 'webhook describes how to call the conversion webhook Required when strategy is set to Webhook'}
										mandatory
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_webhook_conversionReviewVersions cardinality [1..*] {doc 'conversionReviewVersions is an ordered list of preferred ConversionReview versions 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'}
												mandatory
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_webhook_conversionReviewVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
										optional
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_webhook_clientConfig {doc 'clientConfig is the instructions for how to call the webhook if strategy is Webhook'}
												optional
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_webhook_clientConfig_caBundle {doc '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'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_webhook_clientConfig_service {doc 'service is a reference to the service for this webhook Either service or url must be specifiedIf the webhook is running within the cluster, then you should use service'}
														mandatory
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_webhook_clientConfig_service_name {doc 'name is the name of the service Required'}
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_webhook_clientConfig_service_namespace {doc 'namespace is the namespace of the service Required'}
														optional
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_webhook_clientConfig_service_path {doc 'path is an optional URL path at which the webhook will be contacted'}
															Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_webhook_clientConfig_service_port {default 443, doc 'port is an optional service port at which the webhook will be contacted port should be a valid port number (1-65535, inclusive) Defaults to 443 for backward compatibility'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_webhook_clientConfig_url {abstract, doc 'url gives the location of the webhook, in standard URL form (scheme:_host:port/path) Exactly one of url or service must be specifiedThe host should not refer to a service running in the cluster; use the service field instead The host might be resolved via external DNS in some apiservers (eg, kube-apiserver cannot resolve in-cluster DNS as that would be a layering violation) host may also be an IP addressPlease note that using localhost or 127001 as a host is 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, ie, not easy to turn up in a new clusterThe 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 identifierAttempting to use a user or basic auth eg user:password@ is not allowed Fragments (#) and query parameters (?) are not allowed, either'}
														mandatory
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_webhook_clientConfig_url_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_preserveUnknownFields {doc '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-fields to true in specversions[*]schemaopenAPIV3Schema See https:_kubernetesio/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#field-pruning for details'}
				optional
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_kind {default 'CustomResourceDefinition', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_managedFields_subresource {doc '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'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status {doc 'status indicates the actual state of the CustomResourceDefinition'}
						optional
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_acceptedNames {doc 'acceptedNames are the names that are actually being used to serve discovery They may be different than the names in spec'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_acceptedNames_kind {doc 'kind is the serialized kind of the resource It is normally CamelCase and singular Custom resource instances will use this value as the kind attribute in API calls'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_acceptedNames_plural {doc '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 <namesplural><group>) Must be all lowercase'}
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_acceptedNames_categories cardinality [1..*] {doc 'categories is a list of grouped resources this custom resource belongs to (eg _all_) This is published in API discovery documents, and used by clients to support invocations like kubectl get all'}
										mandatory
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_acceptedNames_categories_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_acceptedNames_listKind {doc 'listKind is the serialized kind of the list for this resource Defaults to kindList'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_acceptedNames_shortNames cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_acceptedNames_shortNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_acceptedNames_singular {doc 'singular is the singular name of the resource It must be all lowercase Defaults to lowercased kind'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_conditions cardinality [1..*] {doc 'conditions indicate state for particular aspects of a CustomResourceDefinition'}
								mandatory
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_conditions_status {doc 'status is the status of the condition Can be True, False, Unknown'}
										alternative
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_conditions_status_True {doc 'Specific value: True'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_conditions_type {doc 'type is the type of the condition Types include Established, NamesAccepted and Terminating'}
										alternative
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_conditions_type_Established {doc 'Specific value: Established'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_conditions_type_NamesAccepted {doc 'Specific value: NamesAccepted'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_conditions_type_Terminating {doc 'Specific value: Terminating'}
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_conditions_lastTransitionTime {doc 'lastTransitionTime last time the condition transitioned from one status to another'}
										optional
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_conditions_message {doc 'message is a human-readable message indicating details about last transition'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_conditions_reason {doc 'reason is a unique, one-word, CamelCase reason for the condition_s last transition'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_storedVersions cardinality [1..*] {doc '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 specversions while they exist in this list'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_status_storedVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionCondition {doc 'CustomResourceDefinitionCondition contains details for the current condition of this pod'}
				mandatory
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionCondition_status {doc 'status is the status of the condition Can be True, False, Unknown'}
						alternative
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionCondition_status_Unknown {doc 'Specific value: Unknown'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionCondition_status_False {doc 'Specific value: False'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionCondition_status_True {doc 'Specific value: True'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionCondition_type {doc 'type is the type of the condition Types include Established, NamesAccepted and Terminating'}
						alternative
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionCondition_type_Established {doc 'Specific value: Established'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionCondition_type_NamesAccepted {doc 'Specific value: NamesAccepted'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionCondition_type_Terminating {doc 'Specific value: Terminating'}
				optional
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionCondition_lastTransitionTime {doc 'lastTransitionTime last time the condition transitioned from one status to another'}
						optional
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionCondition_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionCondition_message {doc 'message is a human-readable message indicating details about last transition'}
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionCondition_reason {doc 'reason is a unique, one-word, CamelCase reason for the condition_s last transition'}
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList {doc 'CustomResourceDefinitionList is a list of CustomResourceDefinition objects'}
				mandatory
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items cardinality [1..*] {doc 'items list individual CustomResourceDefinition objects'}
						mandatory
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec {doc 'spec describes how the user wants the resources to appear'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_group {doc '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 <namesplural><group>)'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_names {doc 'names specify the resource and kind names for the custom resource'}
										mandatory
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_names_kind {doc 'kind is the serialized kind of the resource It is normally CamelCase and singular Custom resource instances will use this value as the kind attribute in API calls'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_names_plural {doc '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 <namesplural><group>) Must be all lowercase'}
										optional
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_names_categories cardinality [1..*] {doc 'categories is a list of grouped resources this custom resource belongs to (eg _all_) This is published in API discovery documents, and used by clients to support invocations like kubectl get all'}
												mandatory
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_names_categories_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_names_listKind {doc 'listKind is the serialized kind of the list for this resource Defaults to kindList'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_names_shortNames cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_names_shortNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_names_singular {doc 'singular is the singular name of the resource It must be all lowercase Defaults to lowercased kind'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_scope {doc 'scope indicates whether the defined custom resource is cluster- or namespace-scoped Allowed values are Cluster and Namespaced'}
										alternative
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_scope_Cluster {doc 'Specific value: Cluster'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_scope_Namespaced {doc 'Specific value: Namespaced'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_name {doc 'name is the version name, eg v1, v2beta1, etc The custom resources are served under this version at /apis/<group>/<version>/ if served is true'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_served {doc 'served is a flag enabling/disabling this version from being served via REST APIs'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_storage {doc 'storage indicates this version should be used when persisting custom resources to storage There must be exactly one version with storage=true'}
										optional
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_additionalPrinterColumns cardinality [1..*] {doc 'additionalPrinterColumns specifies additional columns returned in Table output See https:_kubernetesio/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'}
												mandatory
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_additionalPrinterColumns_jsonPath {doc 'jsonPath is a simple JSON path (ie with array notation) which is evaluated against each custom resource to produce the value for this column'}
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_additionalPrinterColumns_name {doc 'name is a human readable name for the column'}
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_additionalPrinterColumns_type {doc 'type is an OpenAPI type definition for this column See https:_githubcom/OAI/OpenAPI-Specification/blob/master/versions/20md#data-types for details'}
												optional
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_additionalPrinterColumns_description {doc 'description is a human readable description of this column'}
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_additionalPrinterColumns_format {doc '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:_githubcom/OAI/OpenAPI-Specification/blob/master/versions/20md#data-types for details'}
													Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_additionalPrinterColumns_priority {doc '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'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_deprecated {default false, deprecated, doc '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'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_deprecationWarning {doc 'deprecationWarning overrides the default warning returned to API clients May only be set when deprecated is 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'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema {doc 'schema describes the schema used for validation, pruning, and defaulting of this version of the custom resource'}
												optional
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema {doc 'openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning'}
														optional
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_ref
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_schema
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_additionalItems
																optional
																	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_additionalItems_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_additionalProperties
																optional
																	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_additionalProperties_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_default {doc 'default is a default value for undefined object fields Defaulting is a beta feature under the CustomResourceDefaulting feature gate Defaulting requires specpreserveUnknownFields to be false'}
																optional
																	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_default_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_dependencies cardinality [1..*]
																optional
																	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_dependencies_JSONSchemaPropsOrStringArray {doc 'JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array'}
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_description
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_enum cardinality [1..*]
																optional
																	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_enum_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_example
																optional
																	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_example_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_exclusiveMaximum
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_exclusiveMinimum
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_externalDocs
																optional
																	String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_externalDocs_description
																	String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_externalDocs_url
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_format {doc 'format is an OpenAPI v3 format string Unknown formats are ignored The following formats are validated:- bsonobjectid: a bson object ID, ie a 24 characters hex string - uri: an URI as parsed by Golang net/urlParseRequestURI - email: an email address as parsed by Golang net/mailParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 31 [RFC1034] - ipv4: an IPv4 IP as parsed by Golang netParseIP - ipv6: an IPv6 IP as parsed by Golang netParseIP - cidr: a CIDR as parsed by Golang netParseCIDR - mac: a MAC address as parsed by Golang netParseMAC - 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_d3)_d11)$ with any non digit characters mixed in - ssn: a US social security number following the regex ^_d3[- ]?_d2[- ]?_d4$ - 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 timeParseDuration or compatible with Scala duration format - datetime: a date time string like 2014-12-15T19:30:20000Z as defined by date-time in RFC3339'}
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_id
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_items
																optional
																	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_items_JSONSchemaPropsOrArray {doc 'JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps Mainly here for serialization purposes'}
															Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_maxItems
															Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_maxLength
															Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_maxProperties
															Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_maximum
															Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_minItems
															Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_minLength
															Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_minProperties
															Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_minimum
															Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_multipleOf
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_nullable
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_pattern
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_required cardinality [1..*]
																mandatory
																	String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_required_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_title
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_type
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_uniqueItems
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_x_kubernetes_embedded_resource {doc 'x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtimeObject, 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)'}
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_x_kubernetes_int_or_string {doc '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:1) anyOf:   - type: integer   - type: string2) allOf:   - anyOf:     - type: integer     - type: string   -  zero or more'}
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_x_kubernetes_list_map_keys cardinality [1..*] {doc 'x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type map by specifying the keys used as the index of the mapThis 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'}
																mandatory
																	String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_x_kubernetes_list_map_keys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_x_kubernetes_list_type {doc '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:1) 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, )2) 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 atomic or an     array with x-kubernetes-list-type atomic3) 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 objectDefaults to atomic for arrays'}
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_x_kubernetes_map_type {doc '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:1) 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 maps2) atomic: the list is treated as a single entity, like a scalar     Atomic maps will be entirely replaced when updated'}
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_x_kubernetes_preserve_unknown_fields {doc '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'}
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_x_kubernetes_validations cardinality [1..*] {doc 'x-kubernetes-validations describes a list of validation rules written in the CEL expression language This field is an alpha-level Using this field requires the feature gate CustomResourceValidationExpressions to be enabled'}
																mandatory
																	String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_x_kubernetes_validations_rule {doc 'Rule represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema The self variable in the CEL expression is bound to the scoped value Example: - Rule scoped to the root of a resource with a status subresource: rule: selfstatusactual <= selfspecmaxDesiredIf the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via selffield and field presence can be checked via has(selffield) Null valued fields are treated as absent fields in CEL expressions If the Rule is scoped to an object with additionalProperties (ie a map) the value of the map are accessible via self[mapKey], map containment can be checked via mapKey in self and all entries of the map are accessible via CEL macros and functions such as selfall() 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, self is bound to the scalar value Examples: - Rule scoped to a map of objects: rule: selfcomponents[_Widget_]priority < 10 - Rule scoped to a list of integers: rule: selfvaluesall(value, value >= 0 && value < 100) - Rule scoped to a string value: rule: selfstartsWith(_kube_)The apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects No other metadata properties are accessibleUnknown 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 typeOnly 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, returnExamples:  - Rule accessing a property named namespace: rule: self__namespace__ > 0  - Rule accessing a property named x-prop: rule: selfx__dash__prop > 0  - Rule accessing a property named redact__d: rule: selfredact__underscores__d > 0Equality on arrays with x-kubernetes-list-type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderIf rule makes use of the oldSelf variable it is implicitly a transition ruleBy default, the oldSelf variable is the same type as self When optionalOldSelf is true, the oldSelf variable is a CEL optional variable whose value() is the same type as selfSee the documentation for the optionalOldSelf field for detailsTransition 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 optionalOldSelf to true'}
																optional
																	String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_x_kubernetes_validations_fieldPath {doc 'fieldPath represents the field path returned when the validation fails It must be a relative JSON path (ie with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field eg when validation checks if a specific attribute foo under a map testMap, the fieldPath could be set to testMapfoo If the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: eg testList It does not support list numeric index It supports child operation to refer to an existing field currently Refer to [JSONPath support in Kubernetes](https:_kubernetesio/docs/reference/kubectl/jsonpath/) for more info Numeric index of array is not supported For field name which contains special characters, use [_specialName_] to refer the field name eg for attribute foo34$ appears in a list testList, the fieldPath could be set to testList[_foo34$_]'}
																	String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_x_kubernetes_validations_message {doc '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 eg must be a URL with the host matching spechost'}
																	String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_x_kubernetes_validations_messageExpression {doc '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(selfmax)+)'}
																	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_x_kubernetes_validations_optionalOldSelf {doc '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 valueWhen enabled oldSelf will be a CEL optional whose value will be None if there is no old value, or when the object is initially createdYou may check for presence of oldSelf using oldSelfhasValue() and unwrap it after checking using oldSelfvalue() Check the CEL documentation for Optional types for more information: https:_pkggodev/githubcom/google/cel-go/cel#OptionalTypesMay not be set unless oldSelf is used in rule'}
																	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_x_kubernetes_validations_reason {doc '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'}
																		alternative
																			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_x_kubernetes_validations_reason_FieldValueForbidden {doc 'Specific value: FieldValueForbidden'}
																			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_x_kubernetes_validations_reason_FieldValueDuplicate {doc 'Specific value: FieldValueDuplicate'}
																			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_x_kubernetes_validations_reason_FieldValueRequired {doc 'Specific value: FieldValueRequired'}
																			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_schema_openAPIV3Schema_x_kubernetes_validations_reason_FieldValueInvalid {default, doc 'Specific value: FieldValueInvalid'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_selectableFields cardinality [1..*] {doc 'selectableFields specifies paths to fields that may be used as field selectors A maximum of 8 selectable fields are allowed See https:_kubernetesio/docs/concepts/overview/working-with-objects/field-selectors'}
												mandatory
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_selectableFields_jsonPath {doc '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'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_subresources {doc 'subresources specify what subresources this version of the defined custom resource have'}
												optional
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_subresources_scale {doc 'scale indicates the custom resource should serve a /scale subresource that returns an autoscaling/v1 Scale object'}
														mandatory
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_subresources_scale_specReplicasPath {doc 'specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale specreplicas 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 /scale subresource will return an error on GET'}
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_subresources_scale_statusReplicasPath {doc 'statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale statusreplicas 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, the statusreplicas value in the /scale subresource will default to 0'}
														optional
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_subresources_scale_labelSelectorPath {doc 'labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale statusselector Only JSON paths without the array notation are allowed Must be a JSON Path under status or 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:_kubernetesio/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, the statusselector value in the /scale subresource will default to the empty string'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_subresources_status {doc 'status indicates the custom resource should serve a /status subresource When enabled: 1 requests to the custom resource primary endpoint ignore changes to the status stanza of the object 2 requests to the custom resource /status subresource ignore changes to anything other than the status stanza of the object'}
														optional
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_versions_subresources_status_CustomResourceSubresourceStatus {doc 'CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources Status is represented by the status JSON path inside of a CustomResource When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza'}
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion {doc 'conversion defines conversion settings for the CRD'}
										mandatory
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_strategy {doc '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 specpreserveUnknownFields to be false, and specconversionwebhook to be set'}
												alternative
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_strategy_None {doc 'Specific value: None'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_strategy_Webhook {doc 'Specific value: Webhook'}
										optional
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_webhook {doc 'webhook describes how to call the conversion webhook Required when strategy is set to Webhook'}
												mandatory
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_webhook_conversionReviewVersions cardinality [1..*] {doc 'conversionReviewVersions is an ordered list of preferred ConversionReview versions 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'}
														mandatory
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_webhook_conversionReviewVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
												optional
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_webhook_clientConfig {doc 'clientConfig is the instructions for how to call the webhook if strategy is Webhook'}
														optional
															String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_webhook_clientConfig_caBundle {doc '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'}
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_webhook_clientConfig_service {doc 'service is a reference to the service for this webhook Either service or url must be specifiedIf the webhook is running within the cluster, then you should use service'}
																mandatory
																	String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_webhook_clientConfig_service_name {doc 'name is the name of the service Required'}
																	String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_webhook_clientConfig_service_namespace {doc 'namespace is the namespace of the service Required'}
																optional
																	String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_webhook_clientConfig_service_path {doc 'path is an optional URL path at which the webhook will be contacted'}
																	Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_webhook_clientConfig_service_port {default 443, doc 'port is an optional service port at which the webhook will be contacted port should be a valid port number (1-65535, inclusive) Defaults to 443 for backward compatibility'}
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_webhook_clientConfig_url {abstract, doc 'url gives the location of the webhook, in standard URL form (scheme:_host:port/path) Exactly one of url or service must be specifiedThe host should not refer to a service running in the cluster; use the service field instead The host might be resolved via external DNS in some apiservers (eg, kube-apiserver cannot resolve in-cluster DNS as that would be a layering violation) host may also be an IP addressPlease note that using localhost or 127001 as a host is 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, ie, not easy to turn up in a new clusterThe 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 identifierAttempting to use a user or basic auth eg user:password@ is not allowed Fragments (#) and query parameters (?) are not allowed, either'}
																mandatory
																	String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_webhook_clientConfig_url_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_preserveUnknownFields {doc '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-fields to true in specversions[*]schemaopenAPIV3Schema See https:_kubernetesio/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#field-pruning for details'}
						optional
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_kind {default 'CustomResourceDefinition', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status {doc 'status indicates the actual state of the CustomResourceDefinition'}
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_acceptedNames {doc 'acceptedNames are the names that are actually being used to serve discovery They may be different than the names in spec'}
										mandatory
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_acceptedNames_kind {doc 'kind is the serialized kind of the resource It is normally CamelCase and singular Custom resource instances will use this value as the kind attribute in API calls'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_acceptedNames_plural {doc '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 <namesplural><group>) Must be all lowercase'}
										optional
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_acceptedNames_categories cardinality [1..*] {doc 'categories is a list of grouped resources this custom resource belongs to (eg _all_) This is published in API discovery documents, and used by clients to support invocations like kubectl get all'}
												mandatory
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_acceptedNames_categories_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_acceptedNames_listKind {doc 'listKind is the serialized kind of the list for this resource Defaults to kindList'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_acceptedNames_shortNames cardinality [1..*] {doc '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'}
												mandatory
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_acceptedNames_shortNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_acceptedNames_singular {doc 'singular is the singular name of the resource It must be all lowercase Defaults to lowercased kind'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_conditions cardinality [1..*] {doc 'conditions indicate state for particular aspects of a CustomResourceDefinition'}
										mandatory
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_conditions_status {doc 'status is the status of the condition Can be True, False, Unknown'}
												alternative
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_conditions_status_True {doc 'Specific value: True'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_conditions_type {doc 'type is the type of the condition Types include Established, NamesAccepted and Terminating'}
												alternative
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_conditions_type_Established {doc 'Specific value: Established'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_conditions_type_NamesAccepted {doc 'Specific value: NamesAccepted'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_conditions_type_Terminating {doc 'Specific value: Terminating'}
										optional
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_conditions_lastTransitionTime {doc 'lastTransitionTime last time the condition transitioned from one status to another'}
												optional
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_conditions_message {doc 'message is a human-readable message indicating details about last transition'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_conditions_reason {doc 'reason is a unique, one-word, CamelCase reason for the condition_s last transition'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_storedVersions cardinality [1..*] {doc '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 specversions while they exist in this list'}
										mandatory
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_status_storedVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_kind {default 'CustomResourceDefinitionList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionNames {doc 'CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition'}
				mandatory
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionNames_kind {doc 'kind is the serialized kind of the resource It is normally CamelCase and singular Custom resource instances will use this value as the kind attribute in API calls'}
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionNames_plural {doc '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 <namesplural><group>) Must be all lowercase'}
				optional
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionNames_categories cardinality [1..*] {doc 'categories is a list of grouped resources this custom resource belongs to (eg _all_) This is published in API discovery documents, and used by clients to support invocations like kubectl get all'}
						mandatory
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionNames_categories_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionNames_listKind {doc 'listKind is the serialized kind of the list for this resource Defaults to kindList'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionNames_shortNames cardinality [1..*] {doc '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'}
						mandatory
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionNames_shortNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionNames_singular {doc 'singular is the singular name of the resource It must be all lowercase Defaults to lowercased kind'}
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec {doc 'CustomResourceDefinitionSpec describes how a user wants their resource to appear'}
				mandatory
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_group {doc '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 <namesplural><group>)'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_names {doc 'names specify the resource and kind names for the custom resource'}
						mandatory
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_names_kind {doc 'kind is the serialized kind of the resource It is normally CamelCase and singular Custom resource instances will use this value as the kind attribute in API calls'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_names_plural {doc '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 <namesplural><group>) Must be all lowercase'}
						optional
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_names_categories cardinality [1..*] {doc 'categories is a list of grouped resources this custom resource belongs to (eg _all_) This is published in API discovery documents, and used by clients to support invocations like kubectl get all'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_names_categories_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_names_listKind {doc 'listKind is the serialized kind of the list for this resource Defaults to kindList'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_names_shortNames cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_names_shortNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_names_singular {doc 'singular is the singular name of the resource It must be all lowercase Defaults to lowercased kind'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_scope {doc 'scope indicates whether the defined custom resource is cluster- or namespace-scoped Allowed values are Cluster and Namespaced'}
						alternative
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_scope_Cluster {doc 'Specific value: Cluster'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_scope_Namespaced {doc 'Specific value: Namespaced'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions cardinality [1..*] {doc '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'}
						mandatory
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_name {doc 'name is the version name, eg v1, v2beta1, etc The custom resources are served under this version at /apis/<group>/<version>/ if served is true'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_served {doc 'served is a flag enabling/disabling this version from being served via REST APIs'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_storage {doc 'storage indicates this version should be used when persisting custom resources to storage There must be exactly one version with storage=true'}
						optional
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_additionalPrinterColumns cardinality [1..*] {doc 'additionalPrinterColumns specifies additional columns returned in Table output See https:_kubernetesio/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'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_additionalPrinterColumns_jsonPath {doc 'jsonPath is a simple JSON path (ie with array notation) which is evaluated against each custom resource to produce the value for this column'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_additionalPrinterColumns_name {doc 'name is a human readable name for the column'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_additionalPrinterColumns_type {doc 'type is an OpenAPI type definition for this column See https:_githubcom/OAI/OpenAPI-Specification/blob/master/versions/20md#data-types for details'}
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_additionalPrinterColumns_description {doc 'description is a human readable description of this column'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_additionalPrinterColumns_format {doc '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:_githubcom/OAI/OpenAPI-Specification/blob/master/versions/20md#data-types for details'}
									Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_additionalPrinterColumns_priority {doc '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'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_deprecated {default false, deprecated, doc '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'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_deprecationWarning {doc 'deprecationWarning overrides the default warning returned to API clients May only be set when deprecated is 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'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema {doc 'schema describes the schema used for validation, pruning, and defaulting of this version of the custom resource'}
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema {doc 'openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning'}
										optional
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_ref
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_schema
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_additionalItems
												optional
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_additionalItems_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_additionalProperties
												optional
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_additionalProperties_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_default {doc 'default is a default value for undefined object fields Defaulting is a beta feature under the CustomResourceDefaulting feature gate Defaulting requires specpreserveUnknownFields to be false'}
												optional
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_default_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_dependencies cardinality [1..*]
												optional
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_dependencies_JSONSchemaPropsOrStringArray {doc 'JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_description
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_enum cardinality [1..*]
												optional
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_enum_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_example
												optional
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_example_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_exclusiveMaximum
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_exclusiveMinimum
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_externalDocs
												optional
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_externalDocs_description
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_externalDocs_url
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_format {doc 'format is an OpenAPI v3 format string Unknown formats are ignored The following formats are validated:- bsonobjectid: a bson object ID, ie a 24 characters hex string - uri: an URI as parsed by Golang net/urlParseRequestURI - email: an email address as parsed by Golang net/mailParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 31 [RFC1034] - ipv4: an IPv4 IP as parsed by Golang netParseIP - ipv6: an IPv6 IP as parsed by Golang netParseIP - cidr: a CIDR as parsed by Golang netParseCIDR - mac: a MAC address as parsed by Golang netParseMAC - 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_d3)_d11)$ with any non digit characters mixed in - ssn: a US social security number following the regex ^_d3[- ]?_d2[- ]?_d4$ - 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 timeParseDuration or compatible with Scala duration format - datetime: a date time string like 2014-12-15T19:30:20000Z as defined by date-time in RFC3339'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_id
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_items
												optional
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_items_JSONSchemaPropsOrArray {doc 'JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps Mainly here for serialization purposes'}
											Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_maxItems
											Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_maxLength
											Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_maxProperties
											Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_maximum
											Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_minItems
											Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_minLength
											Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_minProperties
											Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_minimum
											Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_multipleOf
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_nullable
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_pattern
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_required cardinality [1..*]
												mandatory
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_required_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_title
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_type
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_uniqueItems
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_x_kubernetes_embedded_resource {doc 'x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtimeObject, 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)'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_x_kubernetes_int_or_string {doc '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:1) anyOf:   - type: integer   - type: string2) allOf:   - anyOf:     - type: integer     - type: string   -  zero or more'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_x_kubernetes_list_map_keys cardinality [1..*] {doc 'x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type map by specifying the keys used as the index of the mapThis 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'}
												mandatory
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_x_kubernetes_list_map_keys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_x_kubernetes_list_type {doc '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:1) 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, )2) 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 atomic or an     array with x-kubernetes-list-type atomic3) 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 objectDefaults to atomic for arrays'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_x_kubernetes_map_type {doc '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:1) 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 maps2) atomic: the list is treated as a single entity, like a scalar     Atomic maps will be entirely replaced when updated'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_x_kubernetes_preserve_unknown_fields {doc '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'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_x_kubernetes_validations cardinality [1..*] {doc 'x-kubernetes-validations describes a list of validation rules written in the CEL expression language This field is an alpha-level Using this field requires the feature gate CustomResourceValidationExpressions to be enabled'}
												mandatory
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_x_kubernetes_validations_rule {doc 'Rule represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema The self variable in the CEL expression is bound to the scoped value Example: - Rule scoped to the root of a resource with a status subresource: rule: selfstatusactual <= selfspecmaxDesiredIf the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via selffield and field presence can be checked via has(selffield) Null valued fields are treated as absent fields in CEL expressions If the Rule is scoped to an object with additionalProperties (ie a map) the value of the map are accessible via self[mapKey], map containment can be checked via mapKey in self and all entries of the map are accessible via CEL macros and functions such as selfall() 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, self is bound to the scalar value Examples: - Rule scoped to a map of objects: rule: selfcomponents[_Widget_]priority < 10 - Rule scoped to a list of integers: rule: selfvaluesall(value, value >= 0 && value < 100) - Rule scoped to a string value: rule: selfstartsWith(_kube_)The apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects No other metadata properties are accessibleUnknown 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 typeOnly 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, returnExamples:  - Rule accessing a property named namespace: rule: self__namespace__ > 0  - Rule accessing a property named x-prop: rule: selfx__dash__prop > 0  - Rule accessing a property named redact__d: rule: selfredact__underscores__d > 0Equality on arrays with x-kubernetes-list-type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderIf rule makes use of the oldSelf variable it is implicitly a transition ruleBy default, the oldSelf variable is the same type as self When optionalOldSelf is true, the oldSelf variable is a CEL optional variable whose value() is the same type as selfSee the documentation for the optionalOldSelf field for detailsTransition 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 optionalOldSelf to true'}
												optional
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_x_kubernetes_validations_fieldPath {doc 'fieldPath represents the field path returned when the validation fails It must be a relative JSON path (ie with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field eg when validation checks if a specific attribute foo under a map testMap, the fieldPath could be set to testMapfoo If the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: eg testList It does not support list numeric index It supports child operation to refer to an existing field currently Refer to [JSONPath support in Kubernetes](https:_kubernetesio/docs/reference/kubectl/jsonpath/) for more info Numeric index of array is not supported For field name which contains special characters, use [_specialName_] to refer the field name eg for attribute foo34$ appears in a list testList, the fieldPath could be set to testList[_foo34$_]'}
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_x_kubernetes_validations_message {doc '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 eg must be a URL with the host matching spechost'}
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_x_kubernetes_validations_messageExpression {doc '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(selfmax)+)'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_x_kubernetes_validations_optionalOldSelf {doc '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 valueWhen enabled oldSelf will be a CEL optional whose value will be None if there is no old value, or when the object is initially createdYou may check for presence of oldSelf using oldSelfhasValue() and unwrap it after checking using oldSelfvalue() Check the CEL documentation for Optional types for more information: https:_pkggodev/githubcom/google/cel-go/cel#OptionalTypesMay not be set unless oldSelf is used in rule'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_x_kubernetes_validations_reason {doc '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'}
														alternative
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_x_kubernetes_validations_reason_FieldValueForbidden {doc 'Specific value: FieldValueForbidden'}
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_x_kubernetes_validations_reason_FieldValueDuplicate {doc 'Specific value: FieldValueDuplicate'}
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_x_kubernetes_validations_reason_FieldValueRequired {doc 'Specific value: FieldValueRequired'}
															io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_schema_openAPIV3Schema_x_kubernetes_validations_reason_FieldValueInvalid {default, doc 'Specific value: FieldValueInvalid'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_selectableFields cardinality [1..*] {doc 'selectableFields specifies paths to fields that may be used as field selectors A maximum of 8 selectable fields are allowed See https:_kubernetesio/docs/concepts/overview/working-with-objects/field-selectors'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_selectableFields_jsonPath {doc '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'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_subresources {doc 'subresources specify what subresources this version of the defined custom resource have'}
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_subresources_scale {doc 'scale indicates the custom resource should serve a /scale subresource that returns an autoscaling/v1 Scale object'}
										mandatory
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_subresources_scale_specReplicasPath {doc 'specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale specreplicas 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 /scale subresource will return an error on GET'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_subresources_scale_statusReplicasPath {doc 'statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale statusreplicas 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, the statusreplicas value in the /scale subresource will default to 0'}
										optional
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_subresources_scale_labelSelectorPath {doc 'labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale statusselector Only JSON paths without the array notation are allowed Must be a JSON Path under status or 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:_kubernetesio/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, the statusselector value in the /scale subresource will default to the empty string'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_subresources_status {doc 'status indicates the custom resource should serve a /status subresource When enabled: 1 requests to the custom resource primary endpoint ignore changes to the status stanza of the object 2 requests to the custom resource /status subresource ignore changes to anything other than the status stanza of the object'}
										optional
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_versions_subresources_status_CustomResourceSubresourceStatus {doc 'CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources Status is represented by the status JSON path inside of a CustomResource When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza'}
				optional
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion {doc 'conversion defines conversion settings for the CRD'}
						mandatory
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_strategy {doc '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 specpreserveUnknownFields to be false, and specconversionwebhook to be set'}
								alternative
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_strategy_None {doc 'Specific value: None'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_strategy_Webhook {doc 'Specific value: Webhook'}
						optional
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_webhook {doc 'webhook describes how to call the conversion webhook Required when strategy is set to Webhook'}
								mandatory
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_webhook_conversionReviewVersions cardinality [1..*] {doc 'conversionReviewVersions is an ordered list of preferred ConversionReview versions 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'}
										mandatory
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_webhook_conversionReviewVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_webhook_clientConfig {doc 'clientConfig is the instructions for how to call the webhook if strategy is Webhook'}
										optional
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_webhook_clientConfig_caBundle {doc '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'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_webhook_clientConfig_service {doc 'service is a reference to the service for this webhook Either service or url must be specifiedIf the webhook is running within the cluster, then you should use service'}
												mandatory
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_webhook_clientConfig_service_name {doc 'name is the name of the service Required'}
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_webhook_clientConfig_service_namespace {doc 'namespace is the namespace of the service Required'}
												optional
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_webhook_clientConfig_service_path {doc 'path is an optional URL path at which the webhook will be contacted'}
													Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_webhook_clientConfig_service_port {default 443, doc 'port is an optional service port at which the webhook will be contacted port should be a valid port number (1-65535, inclusive) Defaults to 443 for backward compatibility'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_webhook_clientConfig_url {abstract, doc 'url gives the location of the webhook, in standard URL form (scheme:_host:port/path) Exactly one of url or service must be specifiedThe host should not refer to a service running in the cluster; use the service field instead The host might be resolved via external DNS in some apiservers (eg, kube-apiserver cannot resolve in-cluster DNS as that would be a layering violation) host may also be an IP addressPlease note that using localhost or 127001 as a host is 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, ie, not easy to turn up in a new clusterThe 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 identifierAttempting to use a user or basic auth eg user:password@ is not allowed Fragments (#) and query parameters (?) are not allowed, either'}
												mandatory
													String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_webhook_clientConfig_url_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_preserveUnknownFields {doc '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-fields to true in specversions[*]schemaopenAPIV3Schema See https:_kubernetesio/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#field-pruning for details'}
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus {doc 'CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition'}
				optional
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_acceptedNames {doc 'acceptedNames are the names that are actually being used to serve discovery They may be different than the names in spec'}
						mandatory
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_acceptedNames_kind {doc 'kind is the serialized kind of the resource It is normally CamelCase and singular Custom resource instances will use this value as the kind attribute in API calls'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_acceptedNames_plural {doc '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 <namesplural><group>) Must be all lowercase'}
						optional
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_acceptedNames_categories cardinality [1..*] {doc 'categories is a list of grouped resources this custom resource belongs to (eg _all_) This is published in API discovery documents, and used by clients to support invocations like kubectl get all'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_acceptedNames_categories_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_acceptedNames_listKind {doc 'listKind is the serialized kind of the list for this resource Defaults to kindList'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_acceptedNames_shortNames cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_acceptedNames_shortNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_acceptedNames_singular {doc 'singular is the singular name of the resource It must be all lowercase Defaults to lowercased kind'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_conditions cardinality [1..*] {doc 'conditions indicate state for particular aspects of a CustomResourceDefinition'}
						mandatory
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_conditions_status {doc 'status is the status of the condition Can be True, False, Unknown'}
								alternative
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_conditions_status_True {doc 'Specific value: True'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_conditions_type {doc 'type is the type of the condition Types include Established, NamesAccepted and Terminating'}
								alternative
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_conditions_type_Established {doc 'Specific value: Established'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_conditions_type_NamesAccepted {doc 'Specific value: NamesAccepted'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_conditions_type_Terminating {doc 'Specific value: Terminating'}
						optional
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_conditions_lastTransitionTime {doc 'lastTransitionTime last time the condition transitioned from one status to another'}
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_conditions_message {doc 'message is a human-readable message indicating details about last transition'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_conditions_reason {doc 'reason is a unique, one-word, CamelCase reason for the condition_s last transition'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_storedVersions cardinality [1..*] {doc '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 specversions while they exist in this list'}
						mandatory
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus_storedVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion {doc 'CustomResourceDefinitionVersion describes a version for CRD'}
				mandatory
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_name {doc 'name is the version name, eg v1, v2beta1, etc The custom resources are served under this version at /apis/<group>/<version>/ if served is true'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_served {doc 'served is a flag enabling/disabling this version from being served via REST APIs'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_storage {doc 'storage indicates this version should be used when persisting custom resources to storage There must be exactly one version with storage=true'}
				optional
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_additionalPrinterColumns cardinality [1..*] {doc 'additionalPrinterColumns specifies additional columns returned in Table output See https:_kubernetesio/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'}
						mandatory
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_additionalPrinterColumns_jsonPath {doc 'jsonPath is a simple JSON path (ie with array notation) which is evaluated against each custom resource to produce the value for this column'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_additionalPrinterColumns_name {doc 'name is a human readable name for the column'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_additionalPrinterColumns_type {doc 'type is an OpenAPI type definition for this column See https:_githubcom/OAI/OpenAPI-Specification/blob/master/versions/20md#data-types for details'}
						optional
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_additionalPrinterColumns_description {doc 'description is a human readable description of this column'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_additionalPrinterColumns_format {doc '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:_githubcom/OAI/OpenAPI-Specification/blob/master/versions/20md#data-types for details'}
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_additionalPrinterColumns_priority {doc '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'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_deprecated {default false, deprecated, doc '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'}
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_deprecationWarning {doc 'deprecationWarning overrides the default warning returned to API clients May only be set when deprecated is 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'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema {doc 'schema describes the schema used for validation, pruning, and defaulting of this version of the custom resource'}
						optional
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema {doc 'openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning'}
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_ref
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_schema
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_additionalItems
										optional
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_additionalItems_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_additionalProperties
										optional
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_additionalProperties_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_default {doc 'default is a default value for undefined object fields Defaulting is a beta feature under the CustomResourceDefaulting feature gate Defaulting requires specpreserveUnknownFields to be false'}
										optional
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_default_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_dependencies cardinality [1..*]
										optional
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_dependencies_JSONSchemaPropsOrStringArray {doc 'JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_description
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_enum cardinality [1..*]
										optional
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_enum_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_example
										optional
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_example_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_exclusiveMaximum
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_exclusiveMinimum
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_externalDocs
										optional
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_externalDocs_description
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_externalDocs_url
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_format {doc 'format is an OpenAPI v3 format string Unknown formats are ignored The following formats are validated:- bsonobjectid: a bson object ID, ie a 24 characters hex string - uri: an URI as parsed by Golang net/urlParseRequestURI - email: an email address as parsed by Golang net/mailParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 31 [RFC1034] - ipv4: an IPv4 IP as parsed by Golang netParseIP - ipv6: an IPv6 IP as parsed by Golang netParseIP - cidr: a CIDR as parsed by Golang netParseCIDR - mac: a MAC address as parsed by Golang netParseMAC - 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_d3)_d11)$ with any non digit characters mixed in - ssn: a US social security number following the regex ^_d3[- ]?_d2[- ]?_d4$ - 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 timeParseDuration or compatible with Scala duration format - datetime: a date time string like 2014-12-15T19:30:20000Z as defined by date-time in RFC3339'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_id
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_items
										optional
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_items_JSONSchemaPropsOrArray {doc 'JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps Mainly here for serialization purposes'}
									Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_maxItems
									Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_maxLength
									Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_maxProperties
									Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_maximum
									Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_minItems
									Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_minLength
									Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_minProperties
									Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_minimum
									Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_multipleOf
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_nullable
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_pattern
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_required cardinality [1..*]
										mandatory
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_required_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_title
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_type
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_uniqueItems
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_x_kubernetes_embedded_resource {doc 'x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtimeObject, 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)'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_x_kubernetes_int_or_string {doc '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:1) anyOf:   - type: integer   - type: string2) allOf:   - anyOf:     - type: integer     - type: string   -  zero or more'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_x_kubernetes_list_map_keys cardinality [1..*] {doc 'x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type map by specifying the keys used as the index of the mapThis 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'}
										mandatory
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_x_kubernetes_list_map_keys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_x_kubernetes_list_type {doc '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:1) 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, )2) 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 atomic or an     array with x-kubernetes-list-type atomic3) 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 objectDefaults to atomic for arrays'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_x_kubernetes_map_type {doc '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:1) 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 maps2) atomic: the list is treated as a single entity, like a scalar     Atomic maps will be entirely replaced when updated'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_x_kubernetes_preserve_unknown_fields {doc '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'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_x_kubernetes_validations cardinality [1..*] {doc 'x-kubernetes-validations describes a list of validation rules written in the CEL expression language This field is an alpha-level Using this field requires the feature gate CustomResourceValidationExpressions to be enabled'}
										mandatory
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_x_kubernetes_validations_rule {doc 'Rule represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema The self variable in the CEL expression is bound to the scoped value Example: - Rule scoped to the root of a resource with a status subresource: rule: selfstatusactual <= selfspecmaxDesiredIf the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via selffield and field presence can be checked via has(selffield) Null valued fields are treated as absent fields in CEL expressions If the Rule is scoped to an object with additionalProperties (ie a map) the value of the map are accessible via self[mapKey], map containment can be checked via mapKey in self and all entries of the map are accessible via CEL macros and functions such as selfall() 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, self is bound to the scalar value Examples: - Rule scoped to a map of objects: rule: selfcomponents[_Widget_]priority < 10 - Rule scoped to a list of integers: rule: selfvaluesall(value, value >= 0 && value < 100) - Rule scoped to a string value: rule: selfstartsWith(_kube_)The apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects No other metadata properties are accessibleUnknown 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 typeOnly 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, returnExamples:  - Rule accessing a property named namespace: rule: self__namespace__ > 0  - Rule accessing a property named x-prop: rule: selfx__dash__prop > 0  - Rule accessing a property named redact__d: rule: selfredact__underscores__d > 0Equality on arrays with x-kubernetes-list-type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderIf rule makes use of the oldSelf variable it is implicitly a transition ruleBy default, the oldSelf variable is the same type as self When optionalOldSelf is true, the oldSelf variable is a CEL optional variable whose value() is the same type as selfSee the documentation for the optionalOldSelf field for detailsTransition 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 optionalOldSelf to true'}
										optional
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_x_kubernetes_validations_fieldPath {doc 'fieldPath represents the field path returned when the validation fails It must be a relative JSON path (ie with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field eg when validation checks if a specific attribute foo under a map testMap, the fieldPath could be set to testMapfoo If the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: eg testList It does not support list numeric index It supports child operation to refer to an existing field currently Refer to [JSONPath support in Kubernetes](https:_kubernetesio/docs/reference/kubectl/jsonpath/) for more info Numeric index of array is not supported For field name which contains special characters, use [_specialName_] to refer the field name eg for attribute foo34$ appears in a list testList, the fieldPath could be set to testList[_foo34$_]'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_x_kubernetes_validations_message {doc '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 eg must be a URL with the host matching spechost'}
											String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_x_kubernetes_validations_messageExpression {doc '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(selfmax)+)'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_x_kubernetes_validations_optionalOldSelf {doc '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 valueWhen enabled oldSelf will be a CEL optional whose value will be None if there is no old value, or when the object is initially createdYou may check for presence of oldSelf using oldSelfhasValue() and unwrap it after checking using oldSelfvalue() Check the CEL documentation for Optional types for more information: https:_pkggodev/githubcom/google/cel-go/cel#OptionalTypesMay not be set unless oldSelf is used in rule'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_x_kubernetes_validations_reason {doc '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'}
												alternative
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_x_kubernetes_validations_reason_FieldValueForbidden {doc 'Specific value: FieldValueForbidden'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_x_kubernetes_validations_reason_FieldValueDuplicate {doc 'Specific value: FieldValueDuplicate'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_x_kubernetes_validations_reason_FieldValueRequired {doc 'Specific value: FieldValueRequired'}
													io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_schema_openAPIV3Schema_x_kubernetes_validations_reason_FieldValueInvalid {default, doc 'Specific value: FieldValueInvalid'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_selectableFields cardinality [1..*] {doc 'selectableFields specifies paths to fields that may be used as field selectors A maximum of 8 selectable fields are allowed See https:_kubernetesio/docs/concepts/overview/working-with-objects/field-selectors'}
						mandatory
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_selectableFields_jsonPath {doc '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'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_subresources {doc 'subresources specify what subresources this version of the defined custom resource have'}
						optional
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_subresources_scale {doc 'scale indicates the custom resource should serve a /scale subresource that returns an autoscaling/v1 Scale object'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_subresources_scale_specReplicasPath {doc 'specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale specreplicas 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 /scale subresource will return an error on GET'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_subresources_scale_statusReplicasPath {doc 'statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale statusreplicas 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, the statusreplicas value in the /scale subresource will default to 0'}
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_subresources_scale_labelSelectorPath {doc 'labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale statusselector Only JSON paths without the array notation are allowed Must be a JSON Path under status or 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:_kubernetesio/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, the statusselector value in the /scale subresource will default to the empty string'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_subresources_status {doc 'status indicates the custom resource should serve a /status subresource When enabled: 1 requests to the custom resource primary endpoint ignore changes to the status stanza of the object 2 requests to the custom resource /status subresource ignore changes to anything other than the status stanza of the object'}
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion_subresources_status_CustomResourceSubresourceStatus {doc 'CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources Status is represented by the status JSON path inside of a CustomResource When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza'}
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresourceScale {doc 'CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources'}
				mandatory
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresourceScale_specReplicasPath {doc 'specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale specreplicas 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 /scale subresource will return an error on GET'}
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresourceScale_statusReplicasPath {doc 'statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale statusreplicas 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, the statusreplicas value in the /scale subresource will default to 0'}
				optional
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresourceScale_labelSelectorPath {doc 'labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale statusselector Only JSON paths without the array notation are allowed Must be a JSON Path under status or 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:_kubernetesio/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, the statusselector value in the /scale subresource will default to the empty string'}
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresourceStatus {doc 'CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources Status is represented by the status JSON path inside of a CustomResource When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza'}
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresources {doc 'CustomResourceSubresources defines the status and scale subresources for CustomResources'}
				optional
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresources_scale {doc 'scale indicates the custom resource should serve a /scale subresource that returns an autoscaling/v1 Scale object'}
						mandatory
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresources_scale_specReplicasPath {doc 'specReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale specreplicas 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 /scale subresource will return an error on GET'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresources_scale_statusReplicasPath {doc 'statusReplicasPath defines the JSON path inside of a custom resource that corresponds to Scale statusreplicas 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, the statusreplicas value in the /scale subresource will default to 0'}
						optional
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresources_scale_labelSelectorPath {doc 'labelSelectorPath defines the JSON path inside of a custom resource that corresponds to Scale statusselector Only JSON paths without the array notation are allowed Must be a JSON Path under status or 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:_kubernetesio/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, the statusselector value in the /scale subresource will default to the empty string'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresources_status {doc 'status indicates the custom resource should serve a /status subresource When enabled: 1 requests to the custom resource primary endpoint ignore changes to the status stanza of the object 2 requests to the custom resource /status subresource ignore changes to anything other than the status stanza of the object'}
						optional
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresources_status_CustomResourceSubresourceStatus {doc 'CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources Status is represented by the status JSON path inside of a CustomResource When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanza'}
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation {doc 'CustomResourceValidation is a list of validation methods for CustomResources'}
				optional
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema {doc 'openAPIV3Schema is the OpenAPI v3 schema to use for validation and pruning'}
						optional
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_ref
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_schema
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_additionalItems
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_additionalItems_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_additionalProperties
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_additionalProperties_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_default {doc 'default is a default value for undefined object fields Defaulting is a beta feature under the CustomResourceDefaulting feature gate Defaulting requires specpreserveUnknownFields to be false'}
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_default_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_dependencies cardinality [1..*]
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_dependencies_JSONSchemaPropsOrStringArray {doc 'JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_description
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_enum cardinality [1..*]
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_enum_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_example
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_example_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_exclusiveMaximum
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_exclusiveMinimum
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_externalDocs
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_externalDocs_description
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_externalDocs_url
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_format {doc 'format is an OpenAPI v3 format string Unknown formats are ignored The following formats are validated:- bsonobjectid: a bson object ID, ie a 24 characters hex string - uri: an URI as parsed by Golang net/urlParseRequestURI - email: an email address as parsed by Golang net/mailParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 31 [RFC1034] - ipv4: an IPv4 IP as parsed by Golang netParseIP - ipv6: an IPv6 IP as parsed by Golang netParseIP - cidr: a CIDR as parsed by Golang netParseCIDR - mac: a MAC address as parsed by Golang netParseMAC - 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_d3)_d11)$ with any non digit characters mixed in - ssn: a US social security number following the regex ^_d3[- ]?_d2[- ]?_d4$ - 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 timeParseDuration or compatible with Scala duration format - datetime: a date time string like 2014-12-15T19:30:20000Z as defined by date-time in RFC3339'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_id
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_items
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_items_JSONSchemaPropsOrArray {doc 'JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps Mainly here for serialization purposes'}
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_maxItems
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_maxLength
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_maxProperties
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_maximum
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_minItems
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_minLength
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_minProperties
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_minimum
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_multipleOf
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_nullable
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_pattern
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_required cardinality [1..*]
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_required_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_title
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_type
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_uniqueItems
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_x_kubernetes_embedded_resource {doc 'x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtimeObject, 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)'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_x_kubernetes_int_or_string {doc '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:1) anyOf:   - type: integer   - type: string2) allOf:   - anyOf:     - type: integer     - type: string   -  zero or more'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_x_kubernetes_list_map_keys cardinality [1..*] {doc 'x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type map by specifying the keys used as the index of the mapThis 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'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_x_kubernetes_list_map_keys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_x_kubernetes_list_type {doc '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:1) 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, )2) 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 atomic or an     array with x-kubernetes-list-type atomic3) 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 objectDefaults to atomic for arrays'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_x_kubernetes_map_type {doc '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:1) 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 maps2) atomic: the list is treated as a single entity, like a scalar     Atomic maps will be entirely replaced when updated'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_x_kubernetes_preserve_unknown_fields {doc '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'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_x_kubernetes_validations cardinality [1..*] {doc 'x-kubernetes-validations describes a list of validation rules written in the CEL expression language This field is an alpha-level Using this field requires the feature gate CustomResourceValidationExpressions to be enabled'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_x_kubernetes_validations_rule {doc 'Rule represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema The self variable in the CEL expression is bound to the scoped value Example: - Rule scoped to the root of a resource with a status subresource: rule: selfstatusactual <= selfspecmaxDesiredIf the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via selffield and field presence can be checked via has(selffield) Null valued fields are treated as absent fields in CEL expressions If the Rule is scoped to an object with additionalProperties (ie a map) the value of the map are accessible via self[mapKey], map containment can be checked via mapKey in self and all entries of the map are accessible via CEL macros and functions such as selfall() 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, self is bound to the scalar value Examples: - Rule scoped to a map of objects: rule: selfcomponents[_Widget_]priority < 10 - Rule scoped to a list of integers: rule: selfvaluesall(value, value >= 0 && value < 100) - Rule scoped to a string value: rule: selfstartsWith(_kube_)The apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects No other metadata properties are accessibleUnknown 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 typeOnly 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, returnExamples:  - Rule accessing a property named namespace: rule: self__namespace__ > 0  - Rule accessing a property named x-prop: rule: selfx__dash__prop > 0  - Rule accessing a property named redact__d: rule: selfredact__underscores__d > 0Equality on arrays with x-kubernetes-list-type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderIf rule makes use of the oldSelf variable it is implicitly a transition ruleBy default, the oldSelf variable is the same type as self When optionalOldSelf is true, the oldSelf variable is a CEL optional variable whose value() is the same type as selfSee the documentation for the optionalOldSelf field for detailsTransition 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 optionalOldSelf to true'}
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_x_kubernetes_validations_fieldPath {doc 'fieldPath represents the field path returned when the validation fails It must be a relative JSON path (ie with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field eg when validation checks if a specific attribute foo under a map testMap, the fieldPath could be set to testMapfoo If the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: eg testList It does not support list numeric index It supports child operation to refer to an existing field currently Refer to [JSONPath support in Kubernetes](https:_kubernetesio/docs/reference/kubectl/jsonpath/) for more info Numeric index of array is not supported For field name which contains special characters, use [_specialName_] to refer the field name eg for attribute foo34$ appears in a list testList, the fieldPath could be set to testList[_foo34$_]'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_x_kubernetes_validations_message {doc '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 eg must be a URL with the host matching spechost'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_x_kubernetes_validations_messageExpression {doc '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(selfmax)+)'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_x_kubernetes_validations_optionalOldSelf {doc '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 valueWhen enabled oldSelf will be a CEL optional whose value will be None if there is no old value, or when the object is initially createdYou may check for presence of oldSelf using oldSelfhasValue() and unwrap it after checking using oldSelfvalue() Check the CEL documentation for Optional types for more information: https:_pkggodev/githubcom/google/cel-go/cel#OptionalTypesMay not be set unless oldSelf is used in rule'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_x_kubernetes_validations_reason {doc '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'}
										alternative
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_x_kubernetes_validations_reason_FieldValueForbidden {doc 'Specific value: FieldValueForbidden'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_x_kubernetes_validations_reason_FieldValueDuplicate {doc 'Specific value: FieldValueDuplicate'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_x_kubernetes_validations_reason_FieldValueRequired {doc 'Specific value: FieldValueRequired'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation_openAPIV3Schema_x_kubernetes_validations_reason_FieldValueInvalid {default, doc 'Specific value: FieldValueInvalid'}
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ExternalDocumentation {doc 'ExternalDocumentation allows referencing an external resource for extended documentation'}
				optional
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ExternalDocumentation_description
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ExternalDocumentation_url
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps {doc 'JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http:_json-schemaorg/)'}
				optional
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_ref
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_schema
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_additionalItems
						optional
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_additionalItems_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_additionalProperties
						optional
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_additionalProperties_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf cardinality [1..*]
						optional
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_ref
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_schema
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_additionalItems
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_additionalItems_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_additionalProperties
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_additionalProperties_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_default {doc 'default is a default value for undefined object fields Defaulting is a beta feature under the CustomResourceDefaulting feature gate Defaulting requires specpreserveUnknownFields to be false'}
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_default_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_dependencies cardinality [1..*]
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_dependencies_JSONSchemaPropsOrStringArray {doc 'JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_description
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_enum cardinality [1..*]
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_enum_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_example
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_example_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_exclusiveMaximum
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_exclusiveMinimum
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_externalDocs
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_externalDocs_description
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_externalDocs_url
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_format {doc 'format is an OpenAPI v3 format string Unknown formats are ignored The following formats are validated:- bsonobjectid: a bson object ID, ie a 24 characters hex string - uri: an URI as parsed by Golang net/urlParseRequestURI - email: an email address as parsed by Golang net/mailParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 31 [RFC1034] - ipv4: an IPv4 IP as parsed by Golang netParseIP - ipv6: an IPv6 IP as parsed by Golang netParseIP - cidr: a CIDR as parsed by Golang netParseCIDR - mac: a MAC address as parsed by Golang netParseMAC - 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_d3)_d11)$ with any non digit characters mixed in - ssn: a US social security number following the regex ^_d3[- ]?_d2[- ]?_d4$ - 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 timeParseDuration or compatible with Scala duration format - datetime: a date time string like 2014-12-15T19:30:20000Z as defined by date-time in RFC3339'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_id
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_items
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_items_JSONSchemaPropsOrArray {doc 'JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps Mainly here for serialization purposes'}
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_maxItems
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_maxLength
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_maxProperties
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_maximum
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_minItems
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_minLength
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_minProperties
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_minimum
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_multipleOf
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_nullable
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_pattern
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_required cardinality [1..*]
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_required_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_title
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_type
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_uniqueItems
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_x_kubernetes_embedded_resource {doc 'x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtimeObject, 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)'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_x_kubernetes_int_or_string {doc '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:1) anyOf:   - type: integer   - type: string2) allOf:   - anyOf:     - type: integer     - type: string   -  zero or more'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_x_kubernetes_list_map_keys cardinality [1..*] {doc 'x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type map by specifying the keys used as the index of the mapThis 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'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_x_kubernetes_list_map_keys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_x_kubernetes_list_type {doc '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:1) 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, )2) 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 atomic or an     array with x-kubernetes-list-type atomic3) 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 objectDefaults to atomic for arrays'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_x_kubernetes_map_type {doc '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:1) 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 maps2) atomic: the list is treated as a single entity, like a scalar     Atomic maps will be entirely replaced when updated'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_x_kubernetes_preserve_unknown_fields {doc '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'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_x_kubernetes_validations cardinality [1..*] {doc 'x-kubernetes-validations describes a list of validation rules written in the CEL expression language This field is an alpha-level Using this field requires the feature gate CustomResourceValidationExpressions to be enabled'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_x_kubernetes_validations_rule {doc 'Rule represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema The self variable in the CEL expression is bound to the scoped value Example: - Rule scoped to the root of a resource with a status subresource: rule: selfstatusactual <= selfspecmaxDesiredIf the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via selffield and field presence can be checked via has(selffield) Null valued fields are treated as absent fields in CEL expressions If the Rule is scoped to an object with additionalProperties (ie a map) the value of the map are accessible via self[mapKey], map containment can be checked via mapKey in self and all entries of the map are accessible via CEL macros and functions such as selfall() 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, self is bound to the scalar value Examples: - Rule scoped to a map of objects: rule: selfcomponents[_Widget_]priority < 10 - Rule scoped to a list of integers: rule: selfvaluesall(value, value >= 0 && value < 100) - Rule scoped to a string value: rule: selfstartsWith(_kube_)The apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects No other metadata properties are accessibleUnknown 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 typeOnly 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, returnExamples:  - Rule accessing a property named namespace: rule: self__namespace__ > 0  - Rule accessing a property named x-prop: rule: selfx__dash__prop > 0  - Rule accessing a property named redact__d: rule: selfredact__underscores__d > 0Equality on arrays with x-kubernetes-list-type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderIf rule makes use of the oldSelf variable it is implicitly a transition ruleBy default, the oldSelf variable is the same type as self When optionalOldSelf is true, the oldSelf variable is a CEL optional variable whose value() is the same type as selfSee the documentation for the optionalOldSelf field for detailsTransition 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 optionalOldSelf to true'}
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_x_kubernetes_validations_fieldPath {doc 'fieldPath represents the field path returned when the validation fails It must be a relative JSON path (ie with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field eg when validation checks if a specific attribute foo under a map testMap, the fieldPath could be set to testMapfoo If the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: eg testList It does not support list numeric index It supports child operation to refer to an existing field currently Refer to [JSONPath support in Kubernetes](https:_kubernetesio/docs/reference/kubectl/jsonpath/) for more info Numeric index of array is not supported For field name which contains special characters, use [_specialName_] to refer the field name eg for attribute foo34$ appears in a list testList, the fieldPath could be set to testList[_foo34$_]'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_x_kubernetes_validations_message {doc '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 eg must be a URL with the host matching spechost'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_x_kubernetes_validations_messageExpression {doc '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(selfmax)+)'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_x_kubernetes_validations_optionalOldSelf {doc '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 valueWhen enabled oldSelf will be a CEL optional whose value will be None if there is no old value, or when the object is initially createdYou may check for presence of oldSelf using oldSelfhasValue() and unwrap it after checking using oldSelfvalue() Check the CEL documentation for Optional types for more information: https:_pkggodev/githubcom/google/cel-go/cel#OptionalTypesMay not be set unless oldSelf is used in rule'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_x_kubernetes_validations_reason {doc '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'}
										alternative
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_x_kubernetes_validations_reason_FieldValueForbidden {doc 'Specific value: FieldValueForbidden'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_x_kubernetes_validations_reason_FieldValueDuplicate {doc 'Specific value: FieldValueDuplicate'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_x_kubernetes_validations_reason_FieldValueRequired {doc 'Specific value: FieldValueRequired'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_allOf_x_kubernetes_validations_reason_FieldValueInvalid {default, doc 'Specific value: FieldValueInvalid'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf cardinality [1..*]
						optional
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_ref
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_schema
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_additionalItems
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_additionalItems_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_additionalProperties
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_additionalProperties_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_default {doc 'default is a default value for undefined object fields Defaulting is a beta feature under the CustomResourceDefaulting feature gate Defaulting requires specpreserveUnknownFields to be false'}
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_default_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_dependencies cardinality [1..*]
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_dependencies_JSONSchemaPropsOrStringArray {doc 'JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_description
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_enum cardinality [1..*]
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_enum_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_example
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_example_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_exclusiveMaximum
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_exclusiveMinimum
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_externalDocs
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_externalDocs_description
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_externalDocs_url
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_format {doc 'format is an OpenAPI v3 format string Unknown formats are ignored The following formats are validated:- bsonobjectid: a bson object ID, ie a 24 characters hex string - uri: an URI as parsed by Golang net/urlParseRequestURI - email: an email address as parsed by Golang net/mailParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 31 [RFC1034] - ipv4: an IPv4 IP as parsed by Golang netParseIP - ipv6: an IPv6 IP as parsed by Golang netParseIP - cidr: a CIDR as parsed by Golang netParseCIDR - mac: a MAC address as parsed by Golang netParseMAC - 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_d3)_d11)$ with any non digit characters mixed in - ssn: a US social security number following the regex ^_d3[- ]?_d2[- ]?_d4$ - 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 timeParseDuration or compatible with Scala duration format - datetime: a date time string like 2014-12-15T19:30:20000Z as defined by date-time in RFC3339'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_id
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_items
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_items_JSONSchemaPropsOrArray {doc 'JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps Mainly here for serialization purposes'}
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_maxItems
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_maxLength
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_maxProperties
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_maximum
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_minItems
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_minLength
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_minProperties
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_minimum
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_multipleOf
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_nullable
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_pattern
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_required cardinality [1..*]
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_required_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_title
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_type
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_uniqueItems
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_x_kubernetes_embedded_resource {doc 'x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtimeObject, 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)'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_x_kubernetes_int_or_string {doc '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:1) anyOf:   - type: integer   - type: string2) allOf:   - anyOf:     - type: integer     - type: string   -  zero or more'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_x_kubernetes_list_map_keys cardinality [1..*] {doc 'x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type map by specifying the keys used as the index of the mapThis 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'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_x_kubernetes_list_map_keys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_x_kubernetes_list_type {doc '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:1) 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, )2) 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 atomic or an     array with x-kubernetes-list-type atomic3) 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 objectDefaults to atomic for arrays'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_x_kubernetes_map_type {doc '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:1) 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 maps2) atomic: the list is treated as a single entity, like a scalar     Atomic maps will be entirely replaced when updated'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_x_kubernetes_preserve_unknown_fields {doc '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'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_x_kubernetes_validations cardinality [1..*] {doc 'x-kubernetes-validations describes a list of validation rules written in the CEL expression language This field is an alpha-level Using this field requires the feature gate CustomResourceValidationExpressions to be enabled'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_x_kubernetes_validations_rule {doc 'Rule represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema The self variable in the CEL expression is bound to the scoped value Example: - Rule scoped to the root of a resource with a status subresource: rule: selfstatusactual <= selfspecmaxDesiredIf the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via selffield and field presence can be checked via has(selffield) Null valued fields are treated as absent fields in CEL expressions If the Rule is scoped to an object with additionalProperties (ie a map) the value of the map are accessible via self[mapKey], map containment can be checked via mapKey in self and all entries of the map are accessible via CEL macros and functions such as selfall() 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, self is bound to the scalar value Examples: - Rule scoped to a map of objects: rule: selfcomponents[_Widget_]priority < 10 - Rule scoped to a list of integers: rule: selfvaluesall(value, value >= 0 && value < 100) - Rule scoped to a string value: rule: selfstartsWith(_kube_)The apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects No other metadata properties are accessibleUnknown 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 typeOnly 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, returnExamples:  - Rule accessing a property named namespace: rule: self__namespace__ > 0  - Rule accessing a property named x-prop: rule: selfx__dash__prop > 0  - Rule accessing a property named redact__d: rule: selfredact__underscores__d > 0Equality on arrays with x-kubernetes-list-type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderIf rule makes use of the oldSelf variable it is implicitly a transition ruleBy default, the oldSelf variable is the same type as self When optionalOldSelf is true, the oldSelf variable is a CEL optional variable whose value() is the same type as selfSee the documentation for the optionalOldSelf field for detailsTransition 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 optionalOldSelf to true'}
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_x_kubernetes_validations_fieldPath {doc 'fieldPath represents the field path returned when the validation fails It must be a relative JSON path (ie with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field eg when validation checks if a specific attribute foo under a map testMap, the fieldPath could be set to testMapfoo If the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: eg testList It does not support list numeric index It supports child operation to refer to an existing field currently Refer to [JSONPath support in Kubernetes](https:_kubernetesio/docs/reference/kubectl/jsonpath/) for more info Numeric index of array is not supported For field name which contains special characters, use [_specialName_] to refer the field name eg for attribute foo34$ appears in a list testList, the fieldPath could be set to testList[_foo34$_]'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_x_kubernetes_validations_message {doc '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 eg must be a URL with the host matching spechost'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_x_kubernetes_validations_messageExpression {doc '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(selfmax)+)'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_x_kubernetes_validations_optionalOldSelf {doc '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 valueWhen enabled oldSelf will be a CEL optional whose value will be None if there is no old value, or when the object is initially createdYou may check for presence of oldSelf using oldSelfhasValue() and unwrap it after checking using oldSelfvalue() Check the CEL documentation for Optional types for more information: https:_pkggodev/githubcom/google/cel-go/cel#OptionalTypesMay not be set unless oldSelf is used in rule'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_x_kubernetes_validations_reason {doc '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'}
										alternative
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_x_kubernetes_validations_reason_FieldValueForbidden {doc 'Specific value: FieldValueForbidden'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_x_kubernetes_validations_reason_FieldValueDuplicate {doc 'Specific value: FieldValueDuplicate'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_x_kubernetes_validations_reason_FieldValueRequired {doc 'Specific value: FieldValueRequired'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_anyOf_x_kubernetes_validations_reason_FieldValueInvalid {default, doc 'Specific value: FieldValueInvalid'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_default {doc 'default is a default value for undefined object fields Defaulting is a beta feature under the CustomResourceDefaulting feature gate Defaulting requires specpreserveUnknownFields to be false'}
						optional
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_default_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions cardinality [1..*]
						optional
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_ref
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_schema
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_additionalItems
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_additionalItems_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_additionalProperties
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_additionalProperties_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_default {doc 'default is a default value for undefined object fields Defaulting is a beta feature under the CustomResourceDefaulting feature gate Defaulting requires specpreserveUnknownFields to be false'}
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_default_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_dependencies cardinality [1..*]
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_dependencies_JSONSchemaPropsOrStringArray {doc 'JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_description
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_enum cardinality [1..*]
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_enum_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_example
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_example_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_exclusiveMaximum
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_exclusiveMinimum
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_externalDocs
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_externalDocs_description
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_externalDocs_url
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_format {doc 'format is an OpenAPI v3 format string Unknown formats are ignored The following formats are validated:- bsonobjectid: a bson object ID, ie a 24 characters hex string - uri: an URI as parsed by Golang net/urlParseRequestURI - email: an email address as parsed by Golang net/mailParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 31 [RFC1034] - ipv4: an IPv4 IP as parsed by Golang netParseIP - ipv6: an IPv6 IP as parsed by Golang netParseIP - cidr: a CIDR as parsed by Golang netParseCIDR - mac: a MAC address as parsed by Golang netParseMAC - 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_d3)_d11)$ with any non digit characters mixed in - ssn: a US social security number following the regex ^_d3[- ]?_d2[- ]?_d4$ - 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 timeParseDuration or compatible with Scala duration format - datetime: a date time string like 2014-12-15T19:30:20000Z as defined by date-time in RFC3339'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_id
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_items
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_items_JSONSchemaPropsOrArray {doc 'JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps Mainly here for serialization purposes'}
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_maxItems
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_maxLength
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_maxProperties
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_maximum
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_minItems
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_minLength
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_minProperties
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_minimum
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_multipleOf
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_nullable
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_pattern
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_required cardinality [1..*]
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_required_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_title
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_type
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_uniqueItems
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_x_kubernetes_embedded_resource {doc 'x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtimeObject, 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)'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_x_kubernetes_int_or_string {doc '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:1) anyOf:   - type: integer   - type: string2) allOf:   - anyOf:     - type: integer     - type: string   -  zero or more'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_x_kubernetes_list_map_keys cardinality [1..*] {doc 'x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type map by specifying the keys used as the index of the mapThis 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'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_x_kubernetes_list_map_keys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_x_kubernetes_list_type {doc '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:1) 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, )2) 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 atomic or an     array with x-kubernetes-list-type atomic3) 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 objectDefaults to atomic for arrays'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_x_kubernetes_map_type {doc '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:1) 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 maps2) atomic: the list is treated as a single entity, like a scalar     Atomic maps will be entirely replaced when updated'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_x_kubernetes_preserve_unknown_fields {doc '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'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_x_kubernetes_validations cardinality [1..*] {doc 'x-kubernetes-validations describes a list of validation rules written in the CEL expression language This field is an alpha-level Using this field requires the feature gate CustomResourceValidationExpressions to be enabled'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_x_kubernetes_validations_rule {doc 'Rule represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema The self variable in the CEL expression is bound to the scoped value Example: - Rule scoped to the root of a resource with a status subresource: rule: selfstatusactual <= selfspecmaxDesiredIf the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via selffield and field presence can be checked via has(selffield) Null valued fields are treated as absent fields in CEL expressions If the Rule is scoped to an object with additionalProperties (ie a map) the value of the map are accessible via self[mapKey], map containment can be checked via mapKey in self and all entries of the map are accessible via CEL macros and functions such as selfall() 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, self is bound to the scalar value Examples: - Rule scoped to a map of objects: rule: selfcomponents[_Widget_]priority < 10 - Rule scoped to a list of integers: rule: selfvaluesall(value, value >= 0 && value < 100) - Rule scoped to a string value: rule: selfstartsWith(_kube_)The apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects No other metadata properties are accessibleUnknown 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 typeOnly 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, returnExamples:  - Rule accessing a property named namespace: rule: self__namespace__ > 0  - Rule accessing a property named x-prop: rule: selfx__dash__prop > 0  - Rule accessing a property named redact__d: rule: selfredact__underscores__d > 0Equality on arrays with x-kubernetes-list-type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderIf rule makes use of the oldSelf variable it is implicitly a transition ruleBy default, the oldSelf variable is the same type as self When optionalOldSelf is true, the oldSelf variable is a CEL optional variable whose value() is the same type as selfSee the documentation for the optionalOldSelf field for detailsTransition 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 optionalOldSelf to true'}
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_x_kubernetes_validations_fieldPath {doc 'fieldPath represents the field path returned when the validation fails It must be a relative JSON path (ie with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field eg when validation checks if a specific attribute foo under a map testMap, the fieldPath could be set to testMapfoo If the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: eg testList It does not support list numeric index It supports child operation to refer to an existing field currently Refer to [JSONPath support in Kubernetes](https:_kubernetesio/docs/reference/kubectl/jsonpath/) for more info Numeric index of array is not supported For field name which contains special characters, use [_specialName_] to refer the field name eg for attribute foo34$ appears in a list testList, the fieldPath could be set to testList[_foo34$_]'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_x_kubernetes_validations_message {doc '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 eg must be a URL with the host matching spechost'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_x_kubernetes_validations_messageExpression {doc '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(selfmax)+)'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_x_kubernetes_validations_optionalOldSelf {doc '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 valueWhen enabled oldSelf will be a CEL optional whose value will be None if there is no old value, or when the object is initially createdYou may check for presence of oldSelf using oldSelfhasValue() and unwrap it after checking using oldSelfvalue() Check the CEL documentation for Optional types for more information: https:_pkggodev/githubcom/google/cel-go/cel#OptionalTypesMay not be set unless oldSelf is used in rule'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_x_kubernetes_validations_reason {doc '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'}
										alternative
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_x_kubernetes_validations_reason_FieldValueForbidden {doc 'Specific value: FieldValueForbidden'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_x_kubernetes_validations_reason_FieldValueDuplicate {doc 'Specific value: FieldValueDuplicate'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_x_kubernetes_validations_reason_FieldValueRequired {doc 'Specific value: FieldValueRequired'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_definitions_x_kubernetes_validations_reason_FieldValueInvalid {default, doc 'Specific value: FieldValueInvalid'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_dependencies cardinality [1..*]
						optional
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_dependencies_JSONSchemaPropsOrStringArray {doc 'JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array'}
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_description
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_enum cardinality [1..*]
						optional
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_enum_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_example
						optional
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_example_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_exclusiveMaximum
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_exclusiveMinimum
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_externalDocs
						optional
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_externalDocs_description
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_externalDocs_url
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_format {doc 'format is an OpenAPI v3 format string Unknown formats are ignored The following formats are validated:- bsonobjectid: a bson object ID, ie a 24 characters hex string - uri: an URI as parsed by Golang net/urlParseRequestURI - email: an email address as parsed by Golang net/mailParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 31 [RFC1034] - ipv4: an IPv4 IP as parsed by Golang netParseIP - ipv6: an IPv6 IP as parsed by Golang netParseIP - cidr: a CIDR as parsed by Golang netParseCIDR - mac: a MAC address as parsed by Golang netParseMAC - 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_d3)_d11)$ with any non digit characters mixed in - ssn: a US social security number following the regex ^_d3[- ]?_d2[- ]?_d4$ - 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 timeParseDuration or compatible with Scala duration format - datetime: a date time string like 2014-12-15T19:30:20000Z as defined by date-time in RFC3339'}
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_id
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_items
						optional
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_items_JSONSchemaPropsOrArray {doc 'JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps Mainly here for serialization purposes'}
					Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_maxItems
					Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_maxLength
					Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_maxProperties
					Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_maximum
					Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_minItems
					Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_minLength
					Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_minProperties
					Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_minimum
					Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_multipleOf
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not
						optional
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_ref
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_schema
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_additionalItems
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_additionalItems_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_additionalProperties
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_additionalProperties_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_default {doc 'default is a default value for undefined object fields Defaulting is a beta feature under the CustomResourceDefaulting feature gate Defaulting requires specpreserveUnknownFields to be false'}
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_default_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_dependencies cardinality [1..*]
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_dependencies_JSONSchemaPropsOrStringArray {doc 'JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_description
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_enum cardinality [1..*]
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_enum_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_example
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_example_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_exclusiveMaximum
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_exclusiveMinimum
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_externalDocs
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_externalDocs_description
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_externalDocs_url
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_format {doc 'format is an OpenAPI v3 format string Unknown formats are ignored The following formats are validated:- bsonobjectid: a bson object ID, ie a 24 characters hex string - uri: an URI as parsed by Golang net/urlParseRequestURI - email: an email address as parsed by Golang net/mailParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 31 [RFC1034] - ipv4: an IPv4 IP as parsed by Golang netParseIP - ipv6: an IPv6 IP as parsed by Golang netParseIP - cidr: a CIDR as parsed by Golang netParseCIDR - mac: a MAC address as parsed by Golang netParseMAC - 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_d3)_d11)$ with any non digit characters mixed in - ssn: a US social security number following the regex ^_d3[- ]?_d2[- ]?_d4$ - 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 timeParseDuration or compatible with Scala duration format - datetime: a date time string like 2014-12-15T19:30:20000Z as defined by date-time in RFC3339'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_id
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_items
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_items_JSONSchemaPropsOrArray {doc 'JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps Mainly here for serialization purposes'}
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_maxItems
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_maxLength
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_maxProperties
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_maximum
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_minItems
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_minLength
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_minProperties
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_minimum
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_multipleOf
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_nullable
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_pattern
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_required cardinality [1..*]
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_required_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_title
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_type
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_uniqueItems
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_x_kubernetes_embedded_resource {doc 'x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtimeObject, 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)'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_x_kubernetes_int_or_string {doc '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:1) anyOf:   - type: integer   - type: string2) allOf:   - anyOf:     - type: integer     - type: string   -  zero or more'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_x_kubernetes_list_map_keys cardinality [1..*] {doc 'x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type map by specifying the keys used as the index of the mapThis 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'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_x_kubernetes_list_map_keys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_x_kubernetes_list_type {doc '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:1) 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, )2) 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 atomic or an     array with x-kubernetes-list-type atomic3) 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 objectDefaults to atomic for arrays'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_x_kubernetes_map_type {doc '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:1) 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 maps2) atomic: the list is treated as a single entity, like a scalar     Atomic maps will be entirely replaced when updated'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_x_kubernetes_preserve_unknown_fields {doc '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'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_x_kubernetes_validations cardinality [1..*] {doc 'x-kubernetes-validations describes a list of validation rules written in the CEL expression language This field is an alpha-level Using this field requires the feature gate CustomResourceValidationExpressions to be enabled'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_x_kubernetes_validations_rule {doc 'Rule represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema The self variable in the CEL expression is bound to the scoped value Example: - Rule scoped to the root of a resource with a status subresource: rule: selfstatusactual <= selfspecmaxDesiredIf the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via selffield and field presence can be checked via has(selffield) Null valued fields are treated as absent fields in CEL expressions If the Rule is scoped to an object with additionalProperties (ie a map) the value of the map are accessible via self[mapKey], map containment can be checked via mapKey in self and all entries of the map are accessible via CEL macros and functions such as selfall() 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, self is bound to the scalar value Examples: - Rule scoped to a map of objects: rule: selfcomponents[_Widget_]priority < 10 - Rule scoped to a list of integers: rule: selfvaluesall(value, value >= 0 && value < 100) - Rule scoped to a string value: rule: selfstartsWith(_kube_)The apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects No other metadata properties are accessibleUnknown 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 typeOnly 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, returnExamples:  - Rule accessing a property named namespace: rule: self__namespace__ > 0  - Rule accessing a property named x-prop: rule: selfx__dash__prop > 0  - Rule accessing a property named redact__d: rule: selfredact__underscores__d > 0Equality on arrays with x-kubernetes-list-type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderIf rule makes use of the oldSelf variable it is implicitly a transition ruleBy default, the oldSelf variable is the same type as self When optionalOldSelf is true, the oldSelf variable is a CEL optional variable whose value() is the same type as selfSee the documentation for the optionalOldSelf field for detailsTransition 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 optionalOldSelf to true'}
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_x_kubernetes_validations_fieldPath {doc 'fieldPath represents the field path returned when the validation fails It must be a relative JSON path (ie with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field eg when validation checks if a specific attribute foo under a map testMap, the fieldPath could be set to testMapfoo If the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: eg testList It does not support list numeric index It supports child operation to refer to an existing field currently Refer to [JSONPath support in Kubernetes](https:_kubernetesio/docs/reference/kubectl/jsonpath/) for more info Numeric index of array is not supported For field name which contains special characters, use [_specialName_] to refer the field name eg for attribute foo34$ appears in a list testList, the fieldPath could be set to testList[_foo34$_]'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_x_kubernetes_validations_message {doc '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 eg must be a URL with the host matching spechost'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_x_kubernetes_validations_messageExpression {doc '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(selfmax)+)'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_x_kubernetes_validations_optionalOldSelf {doc '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 valueWhen enabled oldSelf will be a CEL optional whose value will be None if there is no old value, or when the object is initially createdYou may check for presence of oldSelf using oldSelfhasValue() and unwrap it after checking using oldSelfvalue() Check the CEL documentation for Optional types for more information: https:_pkggodev/githubcom/google/cel-go/cel#OptionalTypesMay not be set unless oldSelf is used in rule'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_x_kubernetes_validations_reason {doc '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'}
										alternative
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_x_kubernetes_validations_reason_FieldValueForbidden {doc 'Specific value: FieldValueForbidden'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_x_kubernetes_validations_reason_FieldValueDuplicate {doc 'Specific value: FieldValueDuplicate'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_x_kubernetes_validations_reason_FieldValueRequired {doc 'Specific value: FieldValueRequired'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_not_x_kubernetes_validations_reason_FieldValueInvalid {default, doc 'Specific value: FieldValueInvalid'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_nullable
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf cardinality [1..*]
						optional
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_ref
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_schema
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_additionalItems
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_additionalItems_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_additionalProperties
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_additionalProperties_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_default {doc 'default is a default value for undefined object fields Defaulting is a beta feature under the CustomResourceDefaulting feature gate Defaulting requires specpreserveUnknownFields to be false'}
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_default_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_dependencies cardinality [1..*]
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_dependencies_JSONSchemaPropsOrStringArray {doc 'JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_description
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_enum cardinality [1..*]
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_enum_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_example
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_example_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_exclusiveMaximum
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_exclusiveMinimum
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_externalDocs
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_externalDocs_description
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_externalDocs_url
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_format {doc 'format is an OpenAPI v3 format string Unknown formats are ignored The following formats are validated:- bsonobjectid: a bson object ID, ie a 24 characters hex string - uri: an URI as parsed by Golang net/urlParseRequestURI - email: an email address as parsed by Golang net/mailParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 31 [RFC1034] - ipv4: an IPv4 IP as parsed by Golang netParseIP - ipv6: an IPv6 IP as parsed by Golang netParseIP - cidr: a CIDR as parsed by Golang netParseCIDR - mac: a MAC address as parsed by Golang netParseMAC - 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_d3)_d11)$ with any non digit characters mixed in - ssn: a US social security number following the regex ^_d3[- ]?_d2[- ]?_d4$ - 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 timeParseDuration or compatible with Scala duration format - datetime: a date time string like 2014-12-15T19:30:20000Z as defined by date-time in RFC3339'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_id
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_items
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_items_JSONSchemaPropsOrArray {doc 'JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps Mainly here for serialization purposes'}
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_maxItems
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_maxLength
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_maxProperties
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_maximum
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_minItems
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_minLength
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_minProperties
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_minimum
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_multipleOf
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_nullable
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_pattern
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_required cardinality [1..*]
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_required_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_title
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_type
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_uniqueItems
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_x_kubernetes_embedded_resource {doc 'x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtimeObject, 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)'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_x_kubernetes_int_or_string {doc '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:1) anyOf:   - type: integer   - type: string2) allOf:   - anyOf:     - type: integer     - type: string   -  zero or more'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_x_kubernetes_list_map_keys cardinality [1..*] {doc 'x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type map by specifying the keys used as the index of the mapThis 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'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_x_kubernetes_list_map_keys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_x_kubernetes_list_type {doc '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:1) 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, )2) 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 atomic or an     array with x-kubernetes-list-type atomic3) 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 objectDefaults to atomic for arrays'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_x_kubernetes_map_type {doc '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:1) 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 maps2) atomic: the list is treated as a single entity, like a scalar     Atomic maps will be entirely replaced when updated'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_x_kubernetes_preserve_unknown_fields {doc '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'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_x_kubernetes_validations cardinality [1..*] {doc 'x-kubernetes-validations describes a list of validation rules written in the CEL expression language This field is an alpha-level Using this field requires the feature gate CustomResourceValidationExpressions to be enabled'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_x_kubernetes_validations_rule {doc 'Rule represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema The self variable in the CEL expression is bound to the scoped value Example: - Rule scoped to the root of a resource with a status subresource: rule: selfstatusactual <= selfspecmaxDesiredIf the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via selffield and field presence can be checked via has(selffield) Null valued fields are treated as absent fields in CEL expressions If the Rule is scoped to an object with additionalProperties (ie a map) the value of the map are accessible via self[mapKey], map containment can be checked via mapKey in self and all entries of the map are accessible via CEL macros and functions such as selfall() 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, self is bound to the scalar value Examples: - Rule scoped to a map of objects: rule: selfcomponents[_Widget_]priority < 10 - Rule scoped to a list of integers: rule: selfvaluesall(value, value >= 0 && value < 100) - Rule scoped to a string value: rule: selfstartsWith(_kube_)The apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects No other metadata properties are accessibleUnknown 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 typeOnly 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, returnExamples:  - Rule accessing a property named namespace: rule: self__namespace__ > 0  - Rule accessing a property named x-prop: rule: selfx__dash__prop > 0  - Rule accessing a property named redact__d: rule: selfredact__underscores__d > 0Equality on arrays with x-kubernetes-list-type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderIf rule makes use of the oldSelf variable it is implicitly a transition ruleBy default, the oldSelf variable is the same type as self When optionalOldSelf is true, the oldSelf variable is a CEL optional variable whose value() is the same type as selfSee the documentation for the optionalOldSelf field for detailsTransition 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 optionalOldSelf to true'}
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_x_kubernetes_validations_fieldPath {doc 'fieldPath represents the field path returned when the validation fails It must be a relative JSON path (ie with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field eg when validation checks if a specific attribute foo under a map testMap, the fieldPath could be set to testMapfoo If the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: eg testList It does not support list numeric index It supports child operation to refer to an existing field currently Refer to [JSONPath support in Kubernetes](https:_kubernetesio/docs/reference/kubectl/jsonpath/) for more info Numeric index of array is not supported For field name which contains special characters, use [_specialName_] to refer the field name eg for attribute foo34$ appears in a list testList, the fieldPath could be set to testList[_foo34$_]'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_x_kubernetes_validations_message {doc '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 eg must be a URL with the host matching spechost'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_x_kubernetes_validations_messageExpression {doc '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(selfmax)+)'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_x_kubernetes_validations_optionalOldSelf {doc '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 valueWhen enabled oldSelf will be a CEL optional whose value will be None if there is no old value, or when the object is initially createdYou may check for presence of oldSelf using oldSelfhasValue() and unwrap it after checking using oldSelfvalue() Check the CEL documentation for Optional types for more information: https:_pkggodev/githubcom/google/cel-go/cel#OptionalTypesMay not be set unless oldSelf is used in rule'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_x_kubernetes_validations_reason {doc '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'}
										alternative
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_x_kubernetes_validations_reason_FieldValueForbidden {doc 'Specific value: FieldValueForbidden'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_x_kubernetes_validations_reason_FieldValueDuplicate {doc 'Specific value: FieldValueDuplicate'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_x_kubernetes_validations_reason_FieldValueRequired {doc 'Specific value: FieldValueRequired'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_oneOf_x_kubernetes_validations_reason_FieldValueInvalid {default, doc 'Specific value: FieldValueInvalid'}
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_pattern
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties cardinality [1..*]
						optional
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_ref
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_schema
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_additionalItems
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_additionalItems_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_additionalProperties
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_additionalProperties_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_default {doc 'default is a default value for undefined object fields Defaulting is a beta feature under the CustomResourceDefaulting feature gate Defaulting requires specpreserveUnknownFields to be false'}
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_default_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_dependencies cardinality [1..*]
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_dependencies_JSONSchemaPropsOrStringArray {doc 'JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_description
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_enum cardinality [1..*]
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_enum_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_example
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_example_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_exclusiveMaximum
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_exclusiveMinimum
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_externalDocs
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_externalDocs_description
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_externalDocs_url
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_format {doc 'format is an OpenAPI v3 format string Unknown formats are ignored The following formats are validated:- bsonobjectid: a bson object ID, ie a 24 characters hex string - uri: an URI as parsed by Golang net/urlParseRequestURI - email: an email address as parsed by Golang net/mailParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 31 [RFC1034] - ipv4: an IPv4 IP as parsed by Golang netParseIP - ipv6: an IPv6 IP as parsed by Golang netParseIP - cidr: a CIDR as parsed by Golang netParseCIDR - mac: a MAC address as parsed by Golang netParseMAC - 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_d3)_d11)$ with any non digit characters mixed in - ssn: a US social security number following the regex ^_d3[- ]?_d2[- ]?_d4$ - 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 timeParseDuration or compatible with Scala duration format - datetime: a date time string like 2014-12-15T19:30:20000Z as defined by date-time in RFC3339'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_id
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_items
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_items_JSONSchemaPropsOrArray {doc 'JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps Mainly here for serialization purposes'}
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_maxItems
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_maxLength
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_maxProperties
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_maximum
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_minItems
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_minLength
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_minProperties
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_minimum
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_multipleOf
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_nullable
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_pattern
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_required cardinality [1..*]
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_required_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_title
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_type
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_uniqueItems
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_x_kubernetes_embedded_resource {doc 'x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtimeObject, 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)'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_x_kubernetes_int_or_string {doc '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:1) anyOf:   - type: integer   - type: string2) allOf:   - anyOf:     - type: integer     - type: string   -  zero or more'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_x_kubernetes_list_map_keys cardinality [1..*] {doc 'x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type map by specifying the keys used as the index of the mapThis 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'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_x_kubernetes_list_map_keys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_x_kubernetes_list_type {doc '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:1) 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, )2) 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 atomic or an     array with x-kubernetes-list-type atomic3) 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 objectDefaults to atomic for arrays'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_x_kubernetes_map_type {doc '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:1) 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 maps2) atomic: the list is treated as a single entity, like a scalar     Atomic maps will be entirely replaced when updated'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_x_kubernetes_preserve_unknown_fields {doc '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'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_x_kubernetes_validations cardinality [1..*] {doc 'x-kubernetes-validations describes a list of validation rules written in the CEL expression language This field is an alpha-level Using this field requires the feature gate CustomResourceValidationExpressions to be enabled'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_x_kubernetes_validations_rule {doc 'Rule represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema The self variable in the CEL expression is bound to the scoped value Example: - Rule scoped to the root of a resource with a status subresource: rule: selfstatusactual <= selfspecmaxDesiredIf the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via selffield and field presence can be checked via has(selffield) Null valued fields are treated as absent fields in CEL expressions If the Rule is scoped to an object with additionalProperties (ie a map) the value of the map are accessible via self[mapKey], map containment can be checked via mapKey in self and all entries of the map are accessible via CEL macros and functions such as selfall() 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, self is bound to the scalar value Examples: - Rule scoped to a map of objects: rule: selfcomponents[_Widget_]priority < 10 - Rule scoped to a list of integers: rule: selfvaluesall(value, value >= 0 && value < 100) - Rule scoped to a string value: rule: selfstartsWith(_kube_)The apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects No other metadata properties are accessibleUnknown 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 typeOnly 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, returnExamples:  - Rule accessing a property named namespace: rule: self__namespace__ > 0  - Rule accessing a property named x-prop: rule: selfx__dash__prop > 0  - Rule accessing a property named redact__d: rule: selfredact__underscores__d > 0Equality on arrays with x-kubernetes-list-type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderIf rule makes use of the oldSelf variable it is implicitly a transition ruleBy default, the oldSelf variable is the same type as self When optionalOldSelf is true, the oldSelf variable is a CEL optional variable whose value() is the same type as selfSee the documentation for the optionalOldSelf field for detailsTransition 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 optionalOldSelf to true'}
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_x_kubernetes_validations_fieldPath {doc 'fieldPath represents the field path returned when the validation fails It must be a relative JSON path (ie with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field eg when validation checks if a specific attribute foo under a map testMap, the fieldPath could be set to testMapfoo If the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: eg testList It does not support list numeric index It supports child operation to refer to an existing field currently Refer to [JSONPath support in Kubernetes](https:_kubernetesio/docs/reference/kubectl/jsonpath/) for more info Numeric index of array is not supported For field name which contains special characters, use [_specialName_] to refer the field name eg for attribute foo34$ appears in a list testList, the fieldPath could be set to testList[_foo34$_]'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_x_kubernetes_validations_message {doc '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 eg must be a URL with the host matching spechost'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_x_kubernetes_validations_messageExpression {doc '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(selfmax)+)'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_x_kubernetes_validations_optionalOldSelf {doc '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 valueWhen enabled oldSelf will be a CEL optional whose value will be None if there is no old value, or when the object is initially createdYou may check for presence of oldSelf using oldSelfhasValue() and unwrap it after checking using oldSelfvalue() Check the CEL documentation for Optional types for more information: https:_pkggodev/githubcom/google/cel-go/cel#OptionalTypesMay not be set unless oldSelf is used in rule'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_x_kubernetes_validations_reason {doc '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'}
										alternative
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_x_kubernetes_validations_reason_FieldValueForbidden {doc 'Specific value: FieldValueForbidden'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_x_kubernetes_validations_reason_FieldValueDuplicate {doc 'Specific value: FieldValueDuplicate'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_x_kubernetes_validations_reason_FieldValueRequired {doc 'Specific value: FieldValueRequired'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_patternProperties_x_kubernetes_validations_reason_FieldValueInvalid {default, doc 'Specific value: FieldValueInvalid'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties cardinality [1..*]
						optional
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_ref
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_schema
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_additionalItems
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_additionalItems_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_additionalProperties
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_additionalProperties_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_default {doc 'default is a default value for undefined object fields Defaulting is a beta feature under the CustomResourceDefaulting feature gate Defaulting requires specpreserveUnknownFields to be false'}
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_default_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_dependencies cardinality [1..*]
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_dependencies_JSONSchemaPropsOrStringArray {doc 'JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_description
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_enum cardinality [1..*]
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_enum_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_example
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_example_JSON {doc 'JSON represents any valid JSON value These types are supported: bool, int64, float64, string, []interface, map[string]interface and nil'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_exclusiveMaximum
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_exclusiveMinimum
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_externalDocs
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_externalDocs_description
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_externalDocs_url
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_format {doc 'format is an OpenAPI v3 format string Unknown formats are ignored The following formats are validated:- bsonobjectid: a bson object ID, ie a 24 characters hex string - uri: an URI as parsed by Golang net/urlParseRequestURI - email: an email address as parsed by Golang net/mailParseAddress - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 31 [RFC1034] - ipv4: an IPv4 IP as parsed by Golang netParseIP - ipv6: an IPv6 IP as parsed by Golang netParseIP - cidr: a CIDR as parsed by Golang netParseCIDR - mac: a MAC address as parsed by Golang netParseMAC - 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_d3)_d11)$ with any non digit characters mixed in - ssn: a US social security number following the regex ^_d3[- ]?_d2[- ]?_d4$ - 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 timeParseDuration or compatible with Scala duration format - datetime: a date time string like 2014-12-15T19:30:20000Z as defined by date-time in RFC3339'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_id
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_items
								optional
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_items_JSONSchemaPropsOrArray {doc 'JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps Mainly here for serialization purposes'}
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_maxItems
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_maxLength
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_maxProperties
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_maximum
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_minItems
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_minLength
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_minProperties
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_minimum
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_multipleOf
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_nullable
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_pattern
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_required cardinality [1..*]
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_required_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_title
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_type
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_uniqueItems
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_x_kubernetes_embedded_resource {doc 'x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtimeObject, 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)'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_x_kubernetes_int_or_string {doc '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:1) anyOf:   - type: integer   - type: string2) allOf:   - anyOf:     - type: integer     - type: string   -  zero or more'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_x_kubernetes_list_map_keys cardinality [1..*] {doc 'x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type map by specifying the keys used as the index of the mapThis 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'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_x_kubernetes_list_map_keys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_x_kubernetes_list_type {doc '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:1) 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, )2) 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 atomic or an     array with x-kubernetes-list-type atomic3) 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 objectDefaults to atomic for arrays'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_x_kubernetes_map_type {doc '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:1) 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 maps2) atomic: the list is treated as a single entity, like a scalar     Atomic maps will be entirely replaced when updated'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_x_kubernetes_preserve_unknown_fields {doc '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'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_x_kubernetes_validations cardinality [1..*] {doc 'x-kubernetes-validations describes a list of validation rules written in the CEL expression language This field is an alpha-level Using this field requires the feature gate CustomResourceValidationExpressions to be enabled'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_x_kubernetes_validations_rule {doc 'Rule represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema The self variable in the CEL expression is bound to the scoped value Example: - Rule scoped to the root of a resource with a status subresource: rule: selfstatusactual <= selfspecmaxDesiredIf the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via selffield and field presence can be checked via has(selffield) Null valued fields are treated as absent fields in CEL expressions If the Rule is scoped to an object with additionalProperties (ie a map) the value of the map are accessible via self[mapKey], map containment can be checked via mapKey in self and all entries of the map are accessible via CEL macros and functions such as selfall() 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, self is bound to the scalar value Examples: - Rule scoped to a map of objects: rule: selfcomponents[_Widget_]priority < 10 - Rule scoped to a list of integers: rule: selfvaluesall(value, value >= 0 && value < 100) - Rule scoped to a string value: rule: selfstartsWith(_kube_)The apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects No other metadata properties are accessibleUnknown 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 typeOnly 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, returnExamples:  - Rule accessing a property named namespace: rule: self__namespace__ > 0  - Rule accessing a property named x-prop: rule: selfx__dash__prop > 0  - Rule accessing a property named redact__d: rule: selfredact__underscores__d > 0Equality on arrays with x-kubernetes-list-type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderIf rule makes use of the oldSelf variable it is implicitly a transition ruleBy default, the oldSelf variable is the same type as self When optionalOldSelf is true, the oldSelf variable is a CEL optional variable whose value() is the same type as selfSee the documentation for the optionalOldSelf field for detailsTransition 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 optionalOldSelf to true'}
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_x_kubernetes_validations_fieldPath {doc 'fieldPath represents the field path returned when the validation fails It must be a relative JSON path (ie with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field eg when validation checks if a specific attribute foo under a map testMap, the fieldPath could be set to testMapfoo If the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: eg testList It does not support list numeric index It supports child operation to refer to an existing field currently Refer to [JSONPath support in Kubernetes](https:_kubernetesio/docs/reference/kubectl/jsonpath/) for more info Numeric index of array is not supported For field name which contains special characters, use [_specialName_] to refer the field name eg for attribute foo34$ appears in a list testList, the fieldPath could be set to testList[_foo34$_]'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_x_kubernetes_validations_message {doc '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 eg must be a URL with the host matching spechost'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_x_kubernetes_validations_messageExpression {doc '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(selfmax)+)'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_x_kubernetes_validations_optionalOldSelf {doc '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 valueWhen enabled oldSelf will be a CEL optional whose value will be None if there is no old value, or when the object is initially createdYou may check for presence of oldSelf using oldSelfhasValue() and unwrap it after checking using oldSelfvalue() Check the CEL documentation for Optional types for more information: https:_pkggodev/githubcom/google/cel-go/cel#OptionalTypesMay not be set unless oldSelf is used in rule'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_x_kubernetes_validations_reason {doc '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'}
										alternative
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_x_kubernetes_validations_reason_FieldValueForbidden {doc 'Specific value: FieldValueForbidden'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_x_kubernetes_validations_reason_FieldValueDuplicate {doc 'Specific value: FieldValueDuplicate'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_x_kubernetes_validations_reason_FieldValueRequired {doc 'Specific value: FieldValueRequired'}
											io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_properties_x_kubernetes_validations_reason_FieldValueInvalid {default, doc 'Specific value: FieldValueInvalid'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_required cardinality [1..*]
						mandatory
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_required_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_title
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_type
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_uniqueItems
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_x_kubernetes_embedded_resource {doc 'x-kubernetes-embedded-resource defines that the value is an embedded Kubernetes runtimeObject, 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)'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_x_kubernetes_int_or_string {doc '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:1) anyOf:   - type: integer   - type: string2) allOf:   - anyOf:     - type: integer     - type: string   -  zero or more'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_x_kubernetes_list_map_keys cardinality [1..*] {doc 'x-kubernetes-list-map-keys annotates an array with the x-kubernetes-list-type map by specifying the keys used as the index of the mapThis 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'}
						mandatory
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_x_kubernetes_list_map_keys_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_x_kubernetes_list_type {doc '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:1) 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, )2) 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 atomic or an     array with x-kubernetes-list-type atomic3) 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 objectDefaults to atomic for arrays'}
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_x_kubernetes_map_type {doc '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:1) 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 maps2) atomic: the list is treated as a single entity, like a scalar     Atomic maps will be entirely replaced when updated'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_x_kubernetes_preserve_unknown_fields {doc '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'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_x_kubernetes_validations cardinality [1..*] {doc 'x-kubernetes-validations describes a list of validation rules written in the CEL expression language This field is an alpha-level Using this field requires the feature gate CustomResourceValidationExpressions to be enabled'}
						mandatory
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_x_kubernetes_validations_rule {doc 'Rule represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema The self variable in the CEL expression is bound to the scoped value Example: - Rule scoped to the root of a resource with a status subresource: rule: selfstatusactual <= selfspecmaxDesiredIf the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via selffield and field presence can be checked via has(selffield) Null valued fields are treated as absent fields in CEL expressions If the Rule is scoped to an object with additionalProperties (ie a map) the value of the map are accessible via self[mapKey], map containment can be checked via mapKey in self and all entries of the map are accessible via CEL macros and functions such as selfall() 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, self is bound to the scalar value Examples: - Rule scoped to a map of objects: rule: selfcomponents[_Widget_]priority < 10 - Rule scoped to a list of integers: rule: selfvaluesall(value, value >= 0 && value < 100) - Rule scoped to a string value: rule: selfstartsWith(_kube_)The apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects No other metadata properties are accessibleUnknown 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 typeOnly 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, returnExamples:  - Rule accessing a property named namespace: rule: self__namespace__ > 0  - Rule accessing a property named x-prop: rule: selfx__dash__prop > 0  - Rule accessing a property named redact__d: rule: selfredact__underscores__d > 0Equality on arrays with x-kubernetes-list-type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderIf rule makes use of the oldSelf variable it is implicitly a transition ruleBy default, the oldSelf variable is the same type as self When optionalOldSelf is true, the oldSelf variable is a CEL optional variable whose value() is the same type as selfSee the documentation for the optionalOldSelf field for detailsTransition 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 optionalOldSelf to true'}
						optional
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_x_kubernetes_validations_fieldPath {doc 'fieldPath represents the field path returned when the validation fails It must be a relative JSON path (ie with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field eg when validation checks if a specific attribute foo under a map testMap, the fieldPath could be set to testMapfoo If the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: eg testList It does not support list numeric index It supports child operation to refer to an existing field currently Refer to [JSONPath support in Kubernetes](https:_kubernetesio/docs/reference/kubectl/jsonpath/) for more info Numeric index of array is not supported For field name which contains special characters, use [_specialName_] to refer the field name eg for attribute foo34$ appears in a list testList, the fieldPath could be set to testList[_foo34$_]'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_x_kubernetes_validations_message {doc '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 eg must be a URL with the host matching spechost'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_x_kubernetes_validations_messageExpression {doc '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(selfmax)+)'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_x_kubernetes_validations_optionalOldSelf {doc '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 valueWhen enabled oldSelf will be a CEL optional whose value will be None if there is no old value, or when the object is initially createdYou may check for presence of oldSelf using oldSelfhasValue() and unwrap it after checking using oldSelfvalue() Check the CEL documentation for Optional types for more information: https:_pkggodev/githubcom/google/cel-go/cel#OptionalTypesMay not be set unless oldSelf is used in rule'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_x_kubernetes_validations_reason {doc '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'}
								alternative
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_x_kubernetes_validations_reason_FieldValueForbidden {doc 'Specific value: FieldValueForbidden'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_x_kubernetes_validations_reason_FieldValueDuplicate {doc 'Specific value: FieldValueDuplicate'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_x_kubernetes_validations_reason_FieldValueRequired {doc 'Specific value: FieldValueRequired'}
									io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps_x_kubernetes_validations_reason_FieldValueInvalid {default, doc 'Specific value: FieldValueInvalid'}
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaPropsOrArray {doc 'JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps Mainly here for serialization purposes'}
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaPropsOrBool {doc 'JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value Defaults to true for the boolean property'}
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaPropsOrStringArray {doc 'JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array'}
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_SelectableField {doc 'SelectableField specifies the JSON path of a field that may be used with field selectors'}
				mandatory
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_SelectableField_jsonPath {doc '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'}
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ServiceReference {doc 'ServiceReference holds a reference to Servicelegacyk8sio'}
				mandatory
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ServiceReference_name {doc 'name is the name of the service Required'}
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ServiceReference_namespace {doc 'namespace is the namespace of the service Required'}
				optional
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ServiceReference_path {doc 'path is an optional URL path at which the webhook will be contacted'}
					Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ServiceReference_port {default 443, doc 'port is an optional service port at which the webhook will be contacted port should be a valid port number (1-65535, inclusive) Defaults to 443 for backward compatibility'}
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ValidationRule {doc 'ValidationRule describes a validation rule written in the CEL expression language'}
				mandatory
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ValidationRule_rule {doc 'Rule represents the expression which will be evaluated by CEL ref: https:_githubcom/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema The self variable in the CEL expression is bound to the scoped value Example: - Rule scoped to the root of a resource with a status subresource: rule: selfstatusactual <= selfspecmaxDesiredIf the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via selffield and field presence can be checked via has(selffield) Null valued fields are treated as absent fields in CEL expressions If the Rule is scoped to an object with additionalProperties (ie a map) the value of the map are accessible via self[mapKey], map containment can be checked via mapKey in self and all entries of the map are accessible via CEL macros and functions such as selfall() 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, self is bound to the scalar value Examples: - Rule scoped to a map of objects: rule: selfcomponents[_Widget_]priority < 10 - Rule scoped to a list of integers: rule: selfvaluesall(value, value >= 0 && value < 100) - Rule scoped to a string value: rule: selfstartsWith(_kube_)The apiVersion, kind, metadataname and metadatagenerateName are always accessible from the root of the object and from any x-kubernetes-embedded-resource annotated objects No other metadata properties are accessibleUnknown 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 typeOnly 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, returnExamples:  - Rule accessing a property named namespace: rule: self__namespace__ > 0  - Rule accessing a property named x-prop: rule: selfx__dash__prop > 0  - Rule accessing a property named redact__d: rule: selfredact__underscores__d > 0Equality on arrays with x-kubernetes-list-type of _set_ or _map_ ignores element order, ie [1, 2] == [2, 1] Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:  - _set_: X + Y performs a union where the array positions of all elements in X are preserved and    non-intersecting elements in Y are appended, retaining their partial order  - _map_: X + Y performs a merge where the array positions of all keys in X are preserved but the values    are overwritten by values in Y when the key sets of X and Y intersect Elements in Y with    non-intersecting keys are appended, retaining their partial orderIf rule makes use of the oldSelf variable it is implicitly a transition ruleBy default, the oldSelf variable is the same type as self When optionalOldSelf is true, the oldSelf variable is a CEL optional variable whose value() is the same type as selfSee the documentation for the optionalOldSelf field for detailsTransition 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 optionalOldSelf to true'}
				optional
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ValidationRule_fieldPath {doc 'fieldPath represents the field path returned when the validation fails It must be a relative JSON path (ie with array notation) scoped to the location of this x-kubernetes-validations extension in the schema and refer to an existing field eg when validation checks if a specific attribute foo under a map testMap, the fieldPath could be set to testMapfoo If the validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: eg testList It does not support list numeric index It supports child operation to refer to an existing field currently Refer to [JSONPath support in Kubernetes](https:_kubernetesio/docs/reference/kubectl/jsonpath/) for more info Numeric index of array is not supported For field name which contains special characters, use [_specialName_] to refer the field name eg for attribute foo34$ appears in a list testList, the fieldPath could be set to testList[_foo34$_]'}
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ValidationRule_message {doc '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 eg must be a URL with the host matching spechost'}
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ValidationRule_messageExpression {doc '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(selfmax)+)'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ValidationRule_optionalOldSelf {doc '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 valueWhen enabled oldSelf will be a CEL optional whose value will be None if there is no old value, or when the object is initially createdYou may check for presence of oldSelf using oldSelfhasValue() and unwrap it after checking using oldSelfvalue() Check the CEL documentation for Optional types for more information: https:_pkggodev/githubcom/google/cel-go/cel#OptionalTypesMay not be set unless oldSelf is used in rule'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ValidationRule_reason {doc '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'}
						alternative
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ValidationRule_reason_FieldValueForbidden {doc 'Specific value: FieldValueForbidden'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ValidationRule_reason_FieldValueDuplicate {doc 'Specific value: FieldValueDuplicate'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ValidationRule_reason_FieldValueRequired {doc 'Specific value: FieldValueRequired'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ValidationRule_reason_FieldValueInvalid {default, doc 'Specific value: FieldValueInvalid'}
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookClientConfig {doc 'WebhookClientConfig contains the information to make a TLS connection with the webhook'}
				optional
					String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookClientConfig_caBundle {doc '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'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookClientConfig_service {doc 'service is a reference to the service for this webhook Either service or url must be specifiedIf the webhook is running within the cluster, then you should use service'}
						mandatory
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookClientConfig_service_name {doc 'name is the name of the service Required'}
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookClientConfig_service_namespace {doc 'namespace is the namespace of the service Required'}
						optional
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookClientConfig_service_path {doc 'path is an optional URL path at which the webhook will be contacted'}
							Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookClientConfig_service_port {default 443, doc 'port is an optional service port at which the webhook will be contacted port should be a valid port number (1-65535, inclusive) Defaults to 443 for backward compatibility'}
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookClientConfig_url {abstract, doc 'url gives the location of the webhook, in standard URL form (scheme:_host:port/path) Exactly one of url or service must be specifiedThe host should not refer to a service running in the cluster; use the service field instead The host might be resolved via external DNS in some apiservers (eg, kube-apiserver cannot resolve in-cluster DNS as that would be a layering violation) host may also be an IP addressPlease note that using localhost or 127001 as a host is 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, ie, not easy to turn up in a new clusterThe 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 identifierAttempting to use a user or basic auth eg user:password@ is not allowed Fragments (#) and query parameters (?) are not allowed, either'}
						mandatory
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookClientConfig_url_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
			io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookConversion {doc 'WebhookConversion describes how to call a conversion webhook'}
				mandatory
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookConversion_conversionReviewVersions cardinality [1..*] {doc 'conversionReviewVersions is an ordered list of preferred ConversionReview versions 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'}
						mandatory
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookConversion_conversionReviewVersions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookConversion_clientConfig {doc 'clientConfig is the instructions for how to call the webhook if strategy is Webhook'}
						optional
							String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookConversion_clientConfig_caBundle {doc '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'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookConversion_clientConfig_service {doc 'service is a reference to the service for this webhook Either service or url must be specifiedIf the webhook is running within the cluster, then you should use service'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookConversion_clientConfig_service_name {doc 'name is the name of the service Required'}
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookConversion_clientConfig_service_namespace {doc 'namespace is the namespace of the service Required'}
								optional
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookConversion_clientConfig_service_path {doc 'path is an optional URL path at which the webhook will be contacted'}
									Integer io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookConversion_clientConfig_service_port {default 443, doc 'port is an optional service port at which the webhook will be contacted port should be a valid port number (1-65535, inclusive) Defaults to 443 for backward compatibility'}
							io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookConversion_clientConfig_url {abstract, doc 'url gives the location of the webhook, in standard URL form (scheme:_host:port/path) Exactly one of url or service must be specifiedThe host should not refer to a service running in the cluster; use the service field instead The host might be resolved via external DNS in some apiservers (eg, kube-apiserver cannot resolve in-cluster DNS as that would be a layering violation) host may also be an IP addressPlease note that using localhost or 127001 as a host is 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, ie, not easy to turn up in a new clusterThe 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 identifierAttempting to use a user or basic auth eg user:password@ is not allowed Fragments (#) and query parameters (?) are not allowed, either'}
								mandatory
									String io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookConversion_clientConfig_url_nameStr {doc 'Added String mandatory for changing booleans of boolean_keywords: string *_name'}
			io_k8s_apimachinery_pkg_api_resource_Quantity
				alternative
					String io_k8s_apimachinery_pkg_api_resource_Quantity_asString {doc 'Sub-feature added of type String'}
					Integer io_k8s_apimachinery_pkg_api_resource_Quantity_asNumber {doc 'Sub-feature added of type Number'}
			io_k8s_apimachinery_pkg_apis_meta_v1_APIGroup {doc 'APIGroup contains the name, the supported versions, and the preferred version of a group'}
				mandatory
					String io_k8s_apimachinery_pkg_apis_meta_v1_APIGroup_name {doc 'name is the name of the group'}
					io_k8s_apimachinery_pkg_apis_meta_v1_APIGroup_versions cardinality [1..*] {doc 'versions are the versions supported in this group'}
						mandatory
							String io_k8s_apimachinery_pkg_apis_meta_v1_APIGroup_versions_groupVersion {doc 'groupVersion specifies the API group and version in the form group/version'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_APIGroup_versions_version {doc 'version specifies the version in the form of version This is to save the clients the trouble of splitting the GroupVersion'}
				optional
					String io_k8s_apimachinery_pkg_apis_meta_v1_APIGroup_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_APIGroup_kind {default 'APIGroup', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_apimachinery_pkg_apis_meta_v1_APIGroup_preferredVersion {doc 'preferredVersion is the version preferred by the API server, which probably is the storage version'}
						mandatory
							String io_k8s_apimachinery_pkg_apis_meta_v1_APIGroup_preferredVersion_groupVersion {doc 'groupVersion specifies the API group and version in the form group/version'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_APIGroup_preferredVersion_version {doc 'version specifies the version in the form of version This is to save the clients the trouble of splitting the GroupVersion'}
					io_k8s_apimachinery_pkg_apis_meta_v1_APIGroup_serverAddressByClientCIDRs cardinality [1..*] {doc 'a map of client CIDR to server address that is serving this group This is to help clients reach servers in the most network-efficient way possible Clients can use the appropriate server address as per the CIDR that they match In case of multiple matches, clients should use the longest matching CIDR The server returns only those CIDRs that it thinks that the client can match For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP Server looks at X-Forwarded-For header or X-Real-Ip header or requestRemoteAddr (in that order) to get the client IP'}
						mandatory
							String io_k8s_apimachinery_pkg_apis_meta_v1_APIGroup_serverAddressByClientCIDRs_clientCIDR {doc 'The CIDR with which clients can match their IP to figure out the server address that they should use'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_APIGroup_serverAddressByClientCIDRs_serverAddress {doc 'Address of this server, suitable for a client that matches the above CIDR This can be a hostname, hostname:port, IP or IP:port'}
			io_k8s_apimachinery_pkg_apis_meta_v1_APIGroupList {doc 'APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis'}
				mandatory
					io_k8s_apimachinery_pkg_apis_meta_v1_APIGroupList_groups cardinality [1..*] {doc 'groups is a list of APIGroup'}
						mandatory
							String io_k8s_apimachinery_pkg_apis_meta_v1_APIGroupList_groups_name {doc 'name is the name of the group'}
							io_k8s_apimachinery_pkg_apis_meta_v1_APIGroupList_groups_versions cardinality [1..*] {doc 'versions are the versions supported in this group'}
								mandatory
									String io_k8s_apimachinery_pkg_apis_meta_v1_APIGroupList_groups_versions_groupVersion {doc 'groupVersion specifies the API group and version in the form group/version'}
									String io_k8s_apimachinery_pkg_apis_meta_v1_APIGroupList_groups_versions_version {doc 'version specifies the version in the form of version This is to save the clients the trouble of splitting the GroupVersion'}
						optional
							String io_k8s_apimachinery_pkg_apis_meta_v1_APIGroupList_groups_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_APIGroupList_groups_kind {default 'APIGroup', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_apimachinery_pkg_apis_meta_v1_APIGroupList_groups_preferredVersion {doc 'preferredVersion is the version preferred by the API server, which probably is the storage version'}
								mandatory
									String io_k8s_apimachinery_pkg_apis_meta_v1_APIGroupList_groups_preferredVersion_groupVersion {doc 'groupVersion specifies the API group and version in the form group/version'}
									String io_k8s_apimachinery_pkg_apis_meta_v1_APIGroupList_groups_preferredVersion_version {doc 'version specifies the version in the form of version This is to save the clients the trouble of splitting the GroupVersion'}
							io_k8s_apimachinery_pkg_apis_meta_v1_APIGroupList_groups_serverAddressByClientCIDRs cardinality [1..*] {doc 'a map of client CIDR to server address that is serving this group This is to help clients reach servers in the most network-efficient way possible Clients can use the appropriate server address as per the CIDR that they match In case of multiple matches, clients should use the longest matching CIDR The server returns only those CIDRs that it thinks that the client can match For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP Server looks at X-Forwarded-For header or X-Real-Ip header or requestRemoteAddr (in that order) to get the client IP'}
								mandatory
									String io_k8s_apimachinery_pkg_apis_meta_v1_APIGroupList_groups_serverAddressByClientCIDRs_clientCIDR {doc 'The CIDR with which clients can match their IP to figure out the server address that they should use'}
									String io_k8s_apimachinery_pkg_apis_meta_v1_APIGroupList_groups_serverAddressByClientCIDRs_serverAddress {doc 'Address of this server, suitable for a client that matches the above CIDR This can be a hostname, hostname:port, IP or IP:port'}
				optional
					String io_k8s_apimachinery_pkg_apis_meta_v1_APIGroupList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_APIGroupList_kind {default 'APIGroupList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
			io_k8s_apimachinery_pkg_apis_meta_v1_APIResource {doc 'APIResource specifies the name of a resource and whether it is namespaced'}
				mandatory
					String io_k8s_apimachinery_pkg_apis_meta_v1_APIResource_kind {doc 'kind is the kind for the resource (eg _Foo_ is the kind for a resource _foo_)'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_APIResource_name {doc 'name is the plural name of the resource'}
					io_k8s_apimachinery_pkg_apis_meta_v1_APIResource_namespaced {doc 'namespaced indicates if a resource is namespaced or not'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_APIResource_singularName {doc 'singularName is the singular name of the resource  This allows clients to handle plural and singular opaquely The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface'}
					io_k8s_apimachinery_pkg_apis_meta_v1_APIResource_verbs cardinality [1..*] {doc 'verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)'}
						mandatory
							String io_k8s_apimachinery_pkg_apis_meta_v1_APIResource_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					io_k8s_apimachinery_pkg_apis_meta_v1_APIResource_categories cardinality [1..*] {doc 'categories is a list of the grouped resources this resource belongs to (eg _all_)'}
						mandatory
							String io_k8s_apimachinery_pkg_apis_meta_v1_APIResource_categories_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_APIResource_group {doc 'group is the preferred group of the resource  Empty implies the group of the containing resource list For subresources, this may have a different value, for example: Scale'}
					io_k8s_apimachinery_pkg_apis_meta_v1_APIResource_shortNames cardinality [1..*] {doc 'shortNames is a list of suggested short names of the resource'}
						mandatory
							String io_k8s_apimachinery_pkg_apis_meta_v1_APIResource_shortNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_APIResource_storageVersionHash {doc 'The hash value of the storage version, the version this resource is converted to when written to the data store Value must be treated as opaque by clients Only equality comparison on the value is valid This is an alpha feature and may change or be removed in the future The field is populated by the apiserver only if the StorageVersionHash feature gate is enabled This field will remain optional even if it graduates'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_APIResource_version {doc 'version is the preferred version of the resource  Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource_s group)'}
			io_k8s_apimachinery_pkg_apis_meta_v1_APIResourceList {doc 'APIResourceList is a list of APIResource, it is used to expose the name of the resources supported in a specific group and version, and if the resource is namespaced'}
				mandatory
					String io_k8s_apimachinery_pkg_apis_meta_v1_APIResourceList_groupVersion {doc 'groupVersion is the group and version this APIResourceList is for'}
					io_k8s_apimachinery_pkg_apis_meta_v1_APIResourceList_resources cardinality [1..*] {doc 'resources contains the name of the resources and if they are namespaced'}
						mandatory
							String io_k8s_apimachinery_pkg_apis_meta_v1_APIResourceList_resources_kind {doc 'kind is the kind for the resource (eg _Foo_ is the kind for a resource _foo_)'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_APIResourceList_resources_name {doc 'name is the plural name of the resource'}
							io_k8s_apimachinery_pkg_apis_meta_v1_APIResourceList_resources_namespaced {doc 'namespaced indicates if a resource is namespaced or not'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_APIResourceList_resources_singularName {doc 'singularName is the singular name of the resource  This allows clients to handle plural and singular opaquely The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface'}
							io_k8s_apimachinery_pkg_apis_meta_v1_APIResourceList_resources_verbs cardinality [1..*] {doc 'verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)'}
								mandatory
									String io_k8s_apimachinery_pkg_apis_meta_v1_APIResourceList_resources_verbs_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
						optional
							io_k8s_apimachinery_pkg_apis_meta_v1_APIResourceList_resources_categories cardinality [1..*] {doc 'categories is a list of the grouped resources this resource belongs to (eg _all_)'}
								mandatory
									String io_k8s_apimachinery_pkg_apis_meta_v1_APIResourceList_resources_categories_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_APIResourceList_resources_group {doc 'group is the preferred group of the resource  Empty implies the group of the containing resource list For subresources, this may have a different value, for example: Scale'}
							io_k8s_apimachinery_pkg_apis_meta_v1_APIResourceList_resources_shortNames cardinality [1..*] {doc 'shortNames is a list of suggested short names of the resource'}
								mandatory
									String io_k8s_apimachinery_pkg_apis_meta_v1_APIResourceList_resources_shortNames_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_APIResourceList_resources_storageVersionHash {doc 'The hash value of the storage version, the version this resource is converted to when written to the data store Value must be treated as opaque by clients Only equality comparison on the value is valid This is an alpha feature and may change or be removed in the future The field is populated by the apiserver only if the StorageVersionHash feature gate is enabled This field will remain optional even if it graduates'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_APIResourceList_resources_version {doc 'version is the preferred version of the resource  Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource_s group)'}
				optional
					String io_k8s_apimachinery_pkg_apis_meta_v1_APIResourceList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_APIResourceList_kind {default 'APIResourceList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
			io_k8s_apimachinery_pkg_apis_meta_v1_APIVersions {doc 'APIVersions lists the versions that are available, to allow clients to discover the API at /api, which is the root path of the legacy v1 API'}
				mandatory
					io_k8s_apimachinery_pkg_apis_meta_v1_APIVersions_serverAddressByClientCIDRs cardinality [1..*] {doc 'a map of client CIDR to server address that is serving this group This is to help clients reach servers in the most network-efficient way possible Clients can use the appropriate server address as per the CIDR that they match In case of multiple matches, clients should use the longest matching CIDR The server returns only those CIDRs that it thinks that the client can match For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP Server looks at X-Forwarded-For header or X-Real-Ip header or requestRemoteAddr (in that order) to get the client IP'}
						mandatory
							String io_k8s_apimachinery_pkg_apis_meta_v1_APIVersions_serverAddressByClientCIDRs_clientCIDR {doc 'The CIDR with which clients can match their IP to figure out the server address that they should use'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_APIVersions_serverAddressByClientCIDRs_serverAddress {doc 'Address of this server, suitable for a client that matches the above CIDR This can be a hostname, hostname:port, IP or IP:port'}
					io_k8s_apimachinery_pkg_apis_meta_v1_APIVersions_versions cardinality [1..*] {doc 'versions are the api versions that are available'}
						mandatory
							String io_k8s_apimachinery_pkg_apis_meta_v1_APIVersions_versions_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
				optional
					String io_k8s_apimachinery_pkg_apis_meta_v1_APIVersions_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_APIVersions_kind {default 'APIVersions', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
			io_k8s_apimachinery_pkg_apis_meta_v1_Condition {doc 'Condition contains details for one aspect of the current state of this API Resource'}
				mandatory
					io_k8s_apimachinery_pkg_apis_meta_v1_Condition_lastTransitionTime {doc 'lastTransitionTime is the last time the condition transitioned from one status to another This should be when the underlying condition changed  If that is not known, then using the time when the API field changed is acceptable'}
						optional
							String io_k8s_apimachinery_pkg_apis_meta_v1_Condition_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_Condition_message {doc 'message is a human readable message indicating details about the transition This may be an empty string'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_Condition_reason {doc 'reason contains a programmatic identifier indicating the reason for the condition_s last transition Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API The value should be a CamelCase string This field may not be empty'}
					io_k8s_apimachinery_pkg_apis_meta_v1_Condition_status {doc 'status of the condition, one of True, False, Unknown'}
						alternative
							io_k8s_apimachinery_pkg_apis_meta_v1_Condition_status_Unknown {doc 'Specific value: Unknown'}
							io_k8s_apimachinery_pkg_apis_meta_v1_Condition_status_False {doc 'Specific value: False'}
							io_k8s_apimachinery_pkg_apis_meta_v1_Condition_status_True {doc 'Specific value: True'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_Condition_type {doc 'type of condition in CamelCase or in fooexamplecom/CamelCase'}
				optional
					Integer io_k8s_apimachinery_pkg_apis_meta_v1_Condition_observedGeneration {doc 'observedGeneration represents the metadatageneration that the condition was set based upon For instance, if metadatageneration is currently 12, but the statusconditions[x]observedGeneration is 9, the condition is out of date with respect to the current state of the instance'}
			io_k8s_apimachinery_pkg_apis_meta_v1_DeleteOptions {doc 'DeleteOptions may be provided when deleting an API object'}
				optional
					String io_k8s_apimachinery_pkg_apis_meta_v1_DeleteOptions_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					io_k8s_apimachinery_pkg_apis_meta_v1_DeleteOptions_dryRun cardinality [1..*] {doc 'When present, indicates that modifications should not be persisted An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request Valid values are: - All: all dry run stages will be processed'}
						mandatory
							String io_k8s_apimachinery_pkg_apis_meta_v1_DeleteOptions_dryRun_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					Integer io_k8s_apimachinery_pkg_apis_meta_v1_DeleteOptions_gracePeriodSeconds {doc 'The duration in seconds before the object should be deleted Value must be non-negative integer The value zero indicates delete immediately If this value is nil, the default grace period for the specified type will be used Defaults to a per object value if not specified zero means delete immediately'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_DeleteOptions_kind {default 'DeleteOptions', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_apimachinery_pkg_apis_meta_v1_DeleteOptions_orphanDependents {doc 'Deprecated: please use the PropagationPolicy, this field will be deprecated in 17 Should the dependent objects be orphaned If true/false, the orphan finalizer will be added to/removed from the object_s finalizers list Either this field or PropagationPolicy may be set, but not both'}
					io_k8s_apimachinery_pkg_apis_meta_v1_DeleteOptions_preconditions {doc 'Must be fulfilled before a deletion is carried out If not possible, a 409 Conflict status will be returned'}
						optional
							String io_k8s_apimachinery_pkg_apis_meta_v1_DeleteOptions_preconditions_resourceVersion {doc 'Specifies the target ResourceVersion'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_DeleteOptions_preconditions_uid {doc 'Specifies the target UID'}
					io_k8s_apimachinery_pkg_apis_meta_v1_DeleteOptions_propagationPolicy {doc 'Whether and how garbage collection will be performed Either this field or OrphanDependents may be set, but not both The default policy is decided by the existing finalizer set in the metadatafinalizers and the resource-specific default policy Acceptable values are: _Orphan_ - orphan the dependents; _Background_ - allow the garbage collector to delete the dependents in the background; _Foreground_ - a cascading policy that deletes all dependents in the foreground'}
						alternative
							io_k8s_apimachinery_pkg_apis_meta_v1_DeleteOptions_propagationPolicy_Orphan {doc 'Specific value: Orphan'}
							io_k8s_apimachinery_pkg_apis_meta_v1_DeleteOptions_propagationPolicy_Foreground {doc 'Specific value: Foreground'}
							io_k8s_apimachinery_pkg_apis_meta_v1_DeleteOptions_propagationPolicy_Background {doc 'Specific value: Background'}
			io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
			io_k8s_apimachinery_pkg_apis_meta_v1_GroupVersionForDiscovery {doc 'GroupVersion contains the group/version and version string of a version It is made a struct to keep extensibility'}
				mandatory
					String io_k8s_apimachinery_pkg_apis_meta_v1_GroupVersionForDiscovery_groupVersion {doc 'groupVersion specifies the API group and version in the form group/version'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_GroupVersionForDiscovery_version {doc 'version specifies the version in the form of version This is to save the clients the trouble of splitting the GroupVersion'}
			io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector {doc 'A label selector is a label query over a set of resources The result of matchLabels and matchExpressions are ANDed An empty label selector matches all objects A null label selector matches no objects'}
				optional
					io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector_matchExpressions cardinality [1..*] {doc 'matchExpressions is a list of label selector requirements The requirements are ANDed'}
						mandatory
							String io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector_matchExpressions_key {doc 'key is the label key that the selector applies to'}
							io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector_matchExpressions_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
								alternative
									io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector_matchExpressions_operator_Exists {doc 'Specific value: Exists'}
									io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector_matchExpressions_operator_NotIn {doc 'Specific value: NotIn'}
									io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector_matchExpressions_operator_In {doc 'Specific value: In'}
									io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector_matchExpressions_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
						optional
							io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector_matchExpressions_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
								mandatory
									String io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector_matchExpressions_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector_matchLabels cardinality [1..*] {doc 'matchLabels is a map of key,value pairs A single key,value in the matchLabels map is equivalent to an element of matchExpressions, whose key field is key, the operator is In, and the values array contains only value The requirements are ANDed'}
						mandatory
							String io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector_matchLabels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector_matchLabels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
			io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement {doc 'A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values'}
				mandatory
					String io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement_key {doc 'key is the label key that the selector applies to'}
					io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement_operator {doc 'operator represents a key_s relationship to a set of values Valid operators are In, NotIn, Exists and DoesNotExist'}
						alternative
							io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement_operator_Exists {doc 'Specific value: Exists'}
							io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement_operator_NotIn {doc 'Specific value: NotIn'}
							io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement_operator_In {doc 'Specific value: In'}
							io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement_operator_DoesNotExist {doc 'Specific value: DoesNotExist'}
				optional
					io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement_values cardinality [1..*] {doc 'values is an array of string values If the operator is In or NotIn, the values array must be non-empty If the operator is Exists or DoesNotExist, the values array must be empty This array is replaced during a strategic merge patch'}
						mandatory
							String io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement_values_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
			io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta {doc 'ListMeta describes metadata that synthetic resources must have, including lists and various status objects A resource may have only one of ObjectMeta, ListMeta'}
				optional
					String io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
					Integer io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry {doc 'ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to'}
				optional
					String io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry_apiVersion {doc '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'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
					io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
						optional
							io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
							io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry_manager {doc 'Manager is an identifier of the workflow managing these fields'}
					io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
						alternative
							io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry_operation_Apply {doc 'Specific value: Apply'}
							io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry_operation_Update {doc 'Specific value: Update'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry_subresource {doc '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'}
					io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry_time {doc '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'}
						optional
							String io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
			io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime {doc 'MicroTime is version of Time with microsecond level precision'}
			io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta {doc 'ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create'}
				optional
					io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
						optional
							String io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
					Integer io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_deletionGracePeriodSeconds {doc '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'}
					io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_finalizers cardinality [1..*] {doc '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'}
						mandatory
							String io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
					Integer io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
					io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
						mandatory
							String io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
					io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_managedFields cardinality [1..*] {doc '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'}
						optional
							String io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_managedFields_apiVersion {doc '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'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
							io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
								optional
									io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
									io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
							io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
								alternative
									io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_managedFields_operation_Apply {doc 'Specific value: Apply'}
									io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_managedFields_operation_Update {doc 'Specific value: Update'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_managedFields_subresource {doc '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'}
							io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_managedFields_time {doc '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'}
								optional
									String io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
					io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_ownerReferences cardinality [1..*] {doc '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'}
						mandatory
							String io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_ownerReferences_apiVersion {doc 'API version of the referent'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
						optional
							io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
							io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
			io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference {doc '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'}
				mandatory
					String io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference_apiVersion {doc 'API version of the referent'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
				optional
					io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
					io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference_controller {doc 'If true, this reference points to the managing controller'}
			io_k8s_apimachinery_pkg_apis_meta_v1_Patch {doc 'Patch is provided to give a concrete name and type to the Kubernetes PATCH request body'}
			io_k8s_apimachinery_pkg_apis_meta_v1_Preconditions {doc 'Preconditions must be fulfilled before an operation (update, delete, etc) is carried out'}
				optional
					String io_k8s_apimachinery_pkg_apis_meta_v1_Preconditions_resourceVersion {doc 'Specifies the target ResourceVersion'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_Preconditions_uid {doc 'Specifies the target UID'}
			io_k8s_apimachinery_pkg_apis_meta_v1_ServerAddressByClientCIDR {doc 'ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match'}
				mandatory
					String io_k8s_apimachinery_pkg_apis_meta_v1_ServerAddressByClientCIDR_clientCIDR {doc 'The CIDR with which clients can match their IP to figure out the server address that they should use'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_ServerAddressByClientCIDR_serverAddress {doc 'Address of this server, suitable for a client that matches the above CIDR This can be a hostname, hostname:port, IP or IP:port'}
			io_k8s_apimachinery_pkg_apis_meta_v1_Status {doc 'Status is a return value for calls that don_t return other objects'}
				optional
					String io_k8s_apimachinery_pkg_apis_meta_v1_Status_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					Integer io_k8s_apimachinery_pkg_apis_meta_v1_Status_code {doc 'Suggested HTTP return code for this status, 0 if not set'}
					io_k8s_apimachinery_pkg_apis_meta_v1_Status_details {doc 'Extended data associated with the reason  Each reason may define its own extended details This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type'}
						optional
							io_k8s_apimachinery_pkg_apis_meta_v1_Status_details_causes cardinality [1..*] {doc 'The Causes array includes more details associated with the StatusReason failure Not all StatusReasons may provide detailed causes'}
								optional
									String io_k8s_apimachinery_pkg_apis_meta_v1_Status_details_causes_field {doc 'The field of the resource that has caused this error, as named by its JSON serialization May include dot and postfix notation for nested attributes Arrays are zero-indexed  Fields may appear more than once in an array of causes due to fields having multiple errors OptionalExamples:  name - the field name on the current resource  items[0]name - the field name on the first array entry in items'}
									String io_k8s_apimachinery_pkg_apis_meta_v1_Status_details_causes_message {doc 'A human-readable description of the cause of the error  This field may be presented as-is to a reader'}
									String io_k8s_apimachinery_pkg_apis_meta_v1_Status_details_causes_reason {doc 'A machine-readable description of the cause of the error If this value is empty there is no information available'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_Status_details_group {doc 'The group attribute of the resource associated with the status StatusReason'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_Status_details_kind {doc 'The kind attribute of the resource associated with the status StatusReason On some operations may differ from the requested resource Kind More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_Status_details_name {doc 'The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described)'}
							Integer io_k8s_apimachinery_pkg_apis_meta_v1_Status_details_retryAfterSeconds {doc 'If specified, the time in seconds before the operation should be retried Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_Status_details_uid {doc 'UID of the resource (when there is a single resource which can be described) More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_Status_kind {default 'Status', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_Status_message {doc 'A human-readable description of the status of this operation'}
					io_k8s_apimachinery_pkg_apis_meta_v1_Status_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
						optional
							String io_k8s_apimachinery_pkg_apis_meta_v1_Status_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_apimachinery_pkg_apis_meta_v1_Status_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_Status_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_Status_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_Status_reason {doc 'A machine-readable description of why this operation is in the Failure status If this value is empty there is no information available A Reason clarifies an HTTP status code but does not override it'}
					io_k8s_apimachinery_pkg_apis_meta_v1_Status_status {doc 'Status of the operation One of: Success or Failure More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#spec-and-status'}
						alternative
							io_k8s_apimachinery_pkg_apis_meta_v1_Status_status_Failure {doc 'Specific value: Failure'}
							io_k8s_apimachinery_pkg_apis_meta_v1_Status_status_Success {doc 'Specific value: Success'}
			io_k8s_apimachinery_pkg_apis_meta_v1_StatusCause {doc 'StatusCause provides more information about an apiStatus failure, including cases when multiple errors are encountered'}
				optional
					String io_k8s_apimachinery_pkg_apis_meta_v1_StatusCause_field {doc 'The field of the resource that has caused this error, as named by its JSON serialization May include dot and postfix notation for nested attributes Arrays are zero-indexed  Fields may appear more than once in an array of causes due to fields having multiple errors OptionalExamples:  name - the field name on the current resource  items[0]name - the field name on the first array entry in items'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_StatusCause_message {doc 'A human-readable description of the cause of the error  This field may be presented as-is to a reader'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_StatusCause_reason {doc 'A machine-readable description of the cause of the error If this value is empty there is no information available'}
			io_k8s_apimachinery_pkg_apis_meta_v1_StatusDetails {doc 'StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response The Reason field of a Status object defines what attributes will be set Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined'}
				optional
					io_k8s_apimachinery_pkg_apis_meta_v1_StatusDetails_causes cardinality [1..*] {doc 'The Causes array includes more details associated with the StatusReason failure Not all StatusReasons may provide detailed causes'}
						optional
							String io_k8s_apimachinery_pkg_apis_meta_v1_StatusDetails_causes_field {doc 'The field of the resource that has caused this error, as named by its JSON serialization May include dot and postfix notation for nested attributes Arrays are zero-indexed  Fields may appear more than once in an array of causes due to fields having multiple errors OptionalExamples:  name - the field name on the current resource  items[0]name - the field name on the first array entry in items'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_StatusDetails_causes_message {doc 'A human-readable description of the cause of the error  This field may be presented as-is to a reader'}
							String io_k8s_apimachinery_pkg_apis_meta_v1_StatusDetails_causes_reason {doc 'A machine-readable description of the cause of the error If this value is empty there is no information available'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_StatusDetails_group {doc 'The group attribute of the resource associated with the status StatusReason'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_StatusDetails_kind {doc 'The kind attribute of the resource associated with the status StatusReason On some operations may differ from the requested resource Kind More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_StatusDetails_name {doc 'The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described)'}
					Integer io_k8s_apimachinery_pkg_apis_meta_v1_StatusDetails_retryAfterSeconds {doc 'If specified, the time in seconds before the operation should be retried Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_StatusDetails_uid {doc 'UID of the resource (when there is a single resource which can be described) More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
			io_k8s_apimachinery_pkg_apis_meta_v1_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
			io_k8s_apimachinery_pkg_apis_meta_v1_WatchEvent {doc 'Event represents a single event to a watched resource'}
				mandatory
					io_k8s_apimachinery_pkg_apis_meta_v1_WatchEvent_object {doc 'Object is: * If Type is Added or Modified: the new state of the object * If Type is Deleted: the state of the object immediately before deletion * If Type is Error: *Status is recommended; other types may make sense   depending on context'}
						optional
							io_k8s_apimachinery_pkg_apis_meta_v1_WatchEvent_object_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
					String io_k8s_apimachinery_pkg_apis_meta_v1_WatchEvent_type
			io_k8s_apimachinery_pkg_runtime_RawExtension {doc 'RawExtension is used to hold extensions in external versionsTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct You also need to register your various plugin types_ Internal package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeObject json:myPlugin		type PluginA struct 		AOption string json:aOption	_ External package:	type MyAPIObject struct 		runtimeTypeMeta json:,inline		MyPlugin runtimeRawExtension json:myPlugin		type PluginA struct 		AOption string json:aOption	_ On the wire, the JSON will look something like this:			kind:MyAPIObject,		apiVersion:v1,		myPlugin: 			kind:PluginA,			aOption:foo,		,	So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject That causes the raw JSON to be stored, but not unpacked The next step is to copy (using pkg/conversion) into the internal struct The runtime package_s DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object (TODO: In the case where the object is of an unknown type, a runtimeUnknown object will be created and stored)'}
			io_k8s_apimachinery_pkg_util_intstr_IntOrString
				alternative
					String io_k8s_apimachinery_pkg_util_intstr_IntOrString_asString {doc 'Sub-feature added of type String'}
					Integer io_k8s_apimachinery_pkg_util_intstr_IntOrString_asInteger {doc 'Sub-feature added of type Integer'}
			io_k8s_apimachinery_pkg_version_Info {doc 'Info contains versioning information how we_ll want to distribute that information'}
				mandatory
					String io_k8s_apimachinery_pkg_version_Info_buildDate
					String io_k8s_apimachinery_pkg_version_Info_compiler
					String io_k8s_apimachinery_pkg_version_Info_gitCommit
					String io_k8s_apimachinery_pkg_version_Info_gitTreeState
					String io_k8s_apimachinery_pkg_version_Info_gitVersion
					String io_k8s_apimachinery_pkg_version_Info_goVersion
					String io_k8s_apimachinery_pkg_version_Info_major
					String io_k8s_apimachinery_pkg_version_Info_minor
					String io_k8s_apimachinery_pkg_version_Info_platform
			io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService {doc 'APIService represents a server for a particular GroupVersion Name must be versiongroup'}
				optional
					String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_kind {default 'APIService', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
								optional
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
							Integer io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_deletionGracePeriodSeconds {doc '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'}
							io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_finalizers cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
							String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
							Integer io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
							io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
								mandatory
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
							io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_managedFields cardinality [1..*] {doc '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'}
								optional
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_managedFields_apiVersion {doc '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'}
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
									io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
										optional
											io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
											io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
									io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
										alternative
											io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
											io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_managedFields_subresource {doc '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'}
									io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_managedFields_time {doc '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'}
										optional
											String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
							String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
							io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_ownerReferences cardinality [1..*] {doc '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'}
								mandatory
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
								optional
									io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
									io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
							String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
							String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
					io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_spec {doc 'Spec contains information for locating and communicating with a server'}
						mandatory
							Integer io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_spec_groupPriorityMinimum {doc 'GroupPriorityMinimum is the priority this group should have at least Higher priority means that the group is preferred by clients over lower priority ones Note that other versions of this group might specify even higher GroupPriorityMinimum values such that the whole group gets a higher priority The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10) The secondary sort is based on the alphabetical comparison of the name of the object  (v1bar before v1foo) We_d recommend something like: *k8sio (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s'}
							Integer io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_spec_versionPriority {doc 'VersionPriority controls the ordering of this API version inside of its group  Must be greater than zero The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10) Since it_s inside of a group, the number can be small, probably in the 10s In case of equal version priorities, the version string will be used to compute the order inside a group 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'}
						optional
							String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_spec_caBundle {doc 'CABundle is a PEM encoded CA bundle which will be used to validate an API server_s serving certificate If unspecified, system trust roots on the apiserver are used'}
							String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_spec_group {doc 'Group is the API group name this server hosts'}
							io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_spec_insecureSkipTLSVerify {doc 'InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server This is strongly discouraged  You should use the CABundle instead'}
							io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_spec_service {doc 'Service is a reference to the service for this API server  It must communicate on port 443 If the Service is nil, that means the handling for the API groupversion is handled locally on this server The call will simply delegate to the normal handler chain to be fulfilled'}
								optional
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_spec_service_name {doc 'Name is the name of the service'}
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_spec_service_namespace {doc 'Namespace is the namespace of the service'}
									Integer io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_spec_service_port {default 443, doc 'If specified, the port on the service that hosting webhook Default to 443 for backward compatibility port should be a valid port number (1-65535, inclusive)'}
							String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_spec_version {doc 'Version is the API version this server hosts  For example, v1'}
					io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_status {doc 'Status contains derived information about an API server'}
						optional
							io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_status_conditions cardinality [1..*] {doc 'Current service state of apiService'}
								mandatory
									io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_status_conditions_status {doc 'Status is the status of the condition Can be True, False, Unknown'}
										alternative
											io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
											io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_status_conditions_status_False {doc 'Specific value: False'}
											io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_status_conditions_status_True {doc 'Specific value: True'}
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_status_conditions_type {doc 'Type is the type of the condition'}
								optional
									io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_status_conditions_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
										optional
											String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_status_conditions_message {doc 'Human-readable message indicating details about last transition'}
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_status_conditions_reason {doc 'Unique, one-word, CamelCase reason for the condition_s last transition'}
			io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceCondition {doc 'APIServiceCondition describes the state of an APIService at a particular point'}
				mandatory
					io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceCondition_status {doc 'Status is the status of the condition Can be True, False, Unknown'}
						alternative
							io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceCondition_status_Unknown {doc 'Specific value: Unknown'}
							io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceCondition_status_False {doc 'Specific value: False'}
							io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceCondition_status_True {doc 'Specific value: True'}
					String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceCondition_type {doc 'Type is the type of the condition'}
				optional
					io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceCondition_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
						optional
							String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceCondition_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
					String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceCondition_message {doc 'Human-readable message indicating details about last transition'}
					String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceCondition_reason {doc 'Unique, one-word, CamelCase reason for the condition_s last transition'}
			io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList {doc 'APIServiceList is a list of APIService objects'}
				mandatory
					io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items cardinality [1..*] {doc 'Items is the list of APIService'}
						optional
							String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
							String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_kind {default 'APIService', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
							io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata {doc 'Standard object_s metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
								optional
									io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_annotations cardinality [0..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/annotations'}
										optional
											String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_annotations_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_annotations_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_creationTimestamp {doc '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 UTCPopulated by the system Read-only Null for lists More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_creationTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_creationTimestamp_isNull {doc 'Added option to select when creationTimestamp is empty declared: null'}
									Integer io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_deletionGracePeriodSeconds {doc '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'}
									io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_deletionTimestamp {doc '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 requestedPopulated by the system when a graceful deletion is requested Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
										optional
											String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_deletionTimestamp_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_finalizers cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_finalizers_StringValue {doc 'Added String mandatory for complete structure Array in the model The modified is not in json but provide represents, Array of Strings: StringValue'}
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_generateName {doc '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 serverIf this field is specified and the generated name exists, the server will return a 409Applied only if Name is not specified More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#idempotency'}
									Integer io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_generation {doc 'A sequence number representing a specific generation of the desired state Populated by the system Read-only'}
									io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_labels cardinality [1..*] {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/labels'}
										mandatory
											String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_labels_KeyMap {doc 'key: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
											String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_labels_ValueMap {doc 'value: Added Map for complete structure Object in the model The modified is not in json but provide represents, Array of pairs key, value: ValueMap, KeyMap'}
									io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_managedFields cardinality [1..*] {doc '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'}
										optional
											String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_managedFields_apiVersion {doc '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'}
											String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_managedFields_fieldsType {doc 'FieldsType is the discriminator for the different fields format and version There is currently only one possible value: FieldsV1'}
											io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_managedFields_fieldsV1 {doc 'FieldsV1 holds the first JSON version format as described in the FieldsV1 type'}
												optional
													io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_managedFields_fieldsV1_FieldsV1 {doc 'FieldsV1 stores a set of fields in a data structure like a Trie, in JSON formatEach key is either a __ representing the field itself, and will always map to an empty set, or a string representing a sub-field or item The string will follow one of these four formats: _f:<name>_, where <name> is the name of a field in a struct, or key in a map _v:<value>_, where <value> is the exact json formatted value of a list item _i:<index>_, where <index> is position of a item in a list _k:<keys>_, where <keys> is a map of  a list item_s key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the setThe exact format is defined in sigsk8sio/structured-merge-diff'}
													io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_managedFields_fieldsV1_isEmpty02 {doc 'Added option to select when fieldsV1 is empty declared: {}'}
											String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_managedFields_manager {doc 'Manager is an identifier of the workflow managing these fields'}
											io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_managedFields_operation {doc 'Operation is the type of operation which lead to this ManagedFieldsEntry being created The only valid values for this field are _Apply_ and _Update_'}
												alternative
													io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_managedFields_operation_Apply {doc 'Specific value: Apply'}
													io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_managedFields_operation_Update {doc 'Specific value: Update'}
											String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_managedFields_subresource {doc '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'}
											io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_managedFields_time {doc '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'}
												optional
													String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_managedFields_time_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_name {doc '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:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_namespace {doc '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 emptyMust be a DNS_LABEL Cannot be updated More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/namespaces'}
									io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_ownerReferences cardinality [1..*] {doc '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'}
										mandatory
											String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_ownerReferences_apiVersion {doc 'API version of the referent'}
											String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_ownerReferences_kind {doc 'Kind of the referent More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
											String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_ownerReferences_name {doc 'Name of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#names'}
											String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_ownerReferences_uid {doc 'UID of the referent More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
										optional
											io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_ownerReferences_blockOwnerDeletion {default false, doc '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:_kubernetesio/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'}
											io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_ownerReferences_controller {doc 'If true, this reference points to the managing controller'}
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_resourceVersion {doc '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 resourcesPopulated by the system Read-only Value must be treated as opaque by clients and  More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_metadata_uid {doc '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 operationsPopulated by the system Read-only More info: https:_kubernetesio/docs/concepts/overview/working-with-objects/names#uids'}
							io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_spec {doc 'Spec contains information for locating and communicating with a server'}
								mandatory
									Integer io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_spec_groupPriorityMinimum {doc 'GroupPriorityMinimum is the priority this group should have at least Higher priority means that the group is preferred by clients over lower priority ones Note that other versions of this group might specify even higher GroupPriorityMinimum values such that the whole group gets a higher priority The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10) The secondary sort is based on the alphabetical comparison of the name of the object  (v1bar before v1foo) We_d recommend something like: *k8sio (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s'}
									Integer io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_spec_versionPriority {doc 'VersionPriority controls the ordering of this API version inside of its group  Must be greater than zero The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10) Since it_s inside of a group, the number can be small, probably in the 10s In case of equal version priorities, the version string will be used to compute the order inside a group 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'}
								optional
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_spec_caBundle {doc 'CABundle is a PEM encoded CA bundle which will be used to validate an API server_s serving certificate If unspecified, system trust roots on the apiserver are used'}
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_spec_group {doc 'Group is the API group name this server hosts'}
									io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_spec_insecureSkipTLSVerify {doc 'InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server This is strongly discouraged  You should use the CABundle instead'}
									io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_spec_service {doc 'Service is a reference to the service for this API server  It must communicate on port 443 If the Service is nil, that means the handling for the API groupversion is handled locally on this server The call will simply delegate to the normal handler chain to be fulfilled'}
										optional
											String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_spec_service_name {doc 'Name is the name of the service'}
											String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_spec_service_namespace {doc 'Namespace is the namespace of the service'}
											Integer io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_spec_service_port {default 443, doc 'If specified, the port on the service that hosting webhook Default to 443 for backward compatibility port should be a valid port number (1-65535, inclusive)'}
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_spec_version {doc 'Version is the API version this server hosts  For example, v1'}
							io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_status {doc 'Status contains derived information about an API server'}
								optional
									io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_status_conditions cardinality [1..*] {doc 'Current service state of apiService'}
										mandatory
											io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_status_conditions_status {doc 'Status is the status of the condition Can be True, False, Unknown'}
												alternative
													io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_status_conditions_status_Unknown {doc 'Specific value: Unknown'}
													io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_status_conditions_status_False {doc 'Specific value: False'}
													io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_status_conditions_status_True {doc 'Specific value: True'}
											String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_status_conditions_type {doc 'Type is the type of the condition'}
										optional
											io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_status_conditions_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
												optional
													String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_status_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
											String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_status_conditions_message {doc 'Human-readable message indicating details about last transition'}
											String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_status_conditions_reason {doc 'Unique, one-word, CamelCase reason for the condition_s last transition'}
				optional
					String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_apiVersion {doc 'APIVersion defines the versioned schema of this representation of an object Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#resources'}
					String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_kind {default 'APIServiceList', doc 'Kind is a string value representing the REST resource this object represents Servers may infer this from the endpoint the client submits requests to Cannot be updated In CamelCase More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#types-kinds'}
					io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_metadata {doc 'Standard list metadata More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#metadata'}
						optional
							String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_metadata_continue {doc 'continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message'}
							Integer io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_metadata_remainingItemCount {doc 'remainingItemCount is the number of subsequent items in the list which are not included in this list response If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization Servers older than v115 do not set this field The intended use of the remainingItemCount is *estimating* the size of a collection Clients should not rely on the remainingItemCount to be set or to be exact'}
							String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_metadata_resourceVersion {doc 'String that identifies the server_s internal version of this object that can be used by clients to determine when objects have changed Value must be treated as opaque by clients and passed unmodified back to the server Populated by the system Read-only More info: https:_gitk8sio/community/contributors/devel/sig-architecture/api-conventionsmd#concurrency-control-and-consistency'}
							String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_metadata_selfLink {doc 'Deprecated: selfLink is a legacy read-only field that is no longer populated by the system'}
			io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceSpec {doc 'APIServiceSpec contains information for locating and communicating with a server Only https is supported, though you are able to disable certificate verification'}
				mandatory
					Integer io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceSpec_groupPriorityMinimum {doc 'GroupPriorityMinimum is the priority this group should have at least Higher priority means that the group is preferred by clients over lower priority ones Note that other versions of this group might specify even higher GroupPriorityMinimum values such that the whole group gets a higher priority The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10) The secondary sort is based on the alphabetical comparison of the name of the object  (v1bar before v1foo) We_d recommend something like: *k8sio (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s'}
					Integer io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceSpec_versionPriority {doc 'VersionPriority controls the ordering of this API version inside of its group  Must be greater than zero The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10) Since it_s inside of a group, the number can be small, probably in the 10s In case of equal version priorities, the version string will be used to compute the order inside a group 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'}
				optional
					String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceSpec_caBundle {doc 'CABundle is a PEM encoded CA bundle which will be used to validate an API server_s serving certificate If unspecified, system trust roots on the apiserver are used'}
					String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceSpec_group {doc 'Group is the API group name this server hosts'}
					io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceSpec_insecureSkipTLSVerify {doc 'InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server This is strongly discouraged  You should use the CABundle instead'}
					io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceSpec_service {doc 'Service is a reference to the service for this API server  It must communicate on port 443 If the Service is nil, that means the handling for the API groupversion is handled locally on this server The call will simply delegate to the normal handler chain to be fulfilled'}
						optional
							String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceSpec_service_name {doc 'Name is the name of the service'}
							String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceSpec_service_namespace {doc 'Namespace is the namespace of the service'}
							Integer io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceSpec_service_port {default 443, doc 'If specified, the port on the service that hosting webhook Default to 443 for backward compatibility port should be a valid port number (1-65535, inclusive)'}
					String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceSpec_version {doc 'Version is the API version this server hosts  For example, v1'}
			io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceStatus {doc 'APIServiceStatus contains derived information about an API server'}
				optional
					io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceStatus_conditions cardinality [1..*] {doc 'Current service state of apiService'}
						mandatory
							io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceStatus_conditions_status {doc 'Status is the status of the condition Can be True, False, Unknown'}
								alternative
									io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceStatus_conditions_status_Unknown {doc 'Specific value: Unknown'}
									io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceStatus_conditions_status_False {doc 'Specific value: False'}
									io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceStatus_conditions_status_True {doc 'Specific value: True'}
							String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceStatus_conditions_type {doc 'Type is the type of the condition'}
						optional
							io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceStatus_conditions_lastTransitionTime {doc 'Last time the condition transitioned from one status to another'}
								optional
									String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceStatus_conditions_lastTransitionTime_Time {doc 'Time is a wrapper around timeTime which supports correct marshaling to YAML and JSON  Wrappers are provided for many of the factory methods that the time package offers'}
							String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceStatus_conditions_message {doc 'Human-readable message indicating details about last transition'}
							String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceStatus_conditions_reason {doc 'Unique, one-word, CamelCase reason for the condition_s last transition'}
			io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_ServiceReference {doc 'ServiceReference holds a reference to Servicelegacyk8sio'}
				optional
					String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_ServiceReference_name {doc 'Name is the name of the service'}
					String io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_ServiceReference_namespace {doc 'Namespace is the namespace of the service'}
					Integer io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_ServiceReference_port {default 443, doc 'If specified, the port on the service that hosting webhook Default to 443 for backward compatibility port should be a valid port number (1-65535, inclusive)'}
constraints
	(io_k8s_api_admissionregistration_v1_MatchResources_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_MatchResources_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_MatchResources_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_MatchResources_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_MatchResources_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_MatchResources_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1_MatchResources_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_MatchResources_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_MatchResources_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_MatchResources_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_MatchResources_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_MatchResources_objectSelector_matchExpressions_values)
	io_k8s_api_admissionregistration_v1_MutatingWebhook_clientConfig_service_port > 1 & io_k8s_api_admissionregistration_v1_MutatingWebhook_clientConfig_service_port < 65535
	io_k8s_api_admissionregistration_v1_MutatingWebhook_clientConfig => (io_k8s_api_admissionregistration_v1_MutatingWebhook_clientConfig_url | io_k8s_api_admissionregistration_v1_MutatingWebhook_clientConfig_service) & !(io_k8s_api_admissionregistration_v1_MutatingWebhook_clientConfig_url & io_k8s_api_admissionregistration_v1_MutatingWebhook_clientConfig_service)
	(io_k8s_api_admissionregistration_v1_MutatingWebhook_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_MutatingWebhook_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_MutatingWebhook_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_MutatingWebhook_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_MutatingWebhook_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_MutatingWebhook_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1_MutatingWebhook_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_MutatingWebhook_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_MutatingWebhook_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_MutatingWebhook_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_MutatingWebhook_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_MutatingWebhook_objectSelector_matchExpressions_values)
	io_k8s_api_admissionregistration_v1_MutatingWebhook_timeoutSeconds > 1 & io_k8s_api_admissionregistration_v1_MutatingWebhook_timeoutSeconds < 30
	io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_clientConfig_service_port > 1 & io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_clientConfig_service_port < 65535
	io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_clientConfig => (io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_clientConfig_url | io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_clientConfig_service) & !(io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_clientConfig_url & io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_clientConfig_service)
	(io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_values)
	io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_timeoutSeconds > 1 & io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration_webhooks_timeoutSeconds < 30
	io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_clientConfig_service_port > 1 & io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_clientConfig_service_port < 65535
	io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_clientConfig => (io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_clientConfig_url | io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_clientConfig_service) & !(io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_clientConfig_url & io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_clientConfig_service)
	(io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_values)
	io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_timeoutSeconds > 1 & io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList_items_webhooks_timeoutSeconds < 30
	(io_k8s_api_admissionregistration_v1_ParamRef_name => !io_k8s_api_admissionregistration_v1_ParamRef_selector) & (io_k8s_api_admissionregistration_v1_ParamRef_selector => !io_k8s_api_admissionregistration_v1_ParamRef_name)
	(io_k8s_api_admissionregistration_v1_ParamRef_selector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_ParamRef_selector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_ParamRef_selector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_ParamRef_selector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_ParamRef_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_ParamRef_selector_matchExpressions_values)
	io_k8s_api_admissionregistration_v1_ServiceReference_port > 1 & io_k8s_api_admissionregistration_v1_ServiceReference_port < 65535
	io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec => io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_validations | io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_auditAnnotations
	(io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_name => !io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector) & (io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector => !io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_name)
	(io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_name => !io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector) & (io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector => !io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_name)
	(io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_name => !io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector) & (io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector => !io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_name)
	(io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_values)
	io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec => io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_validations | io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_auditAnnotations
	(io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_values)
	io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec => io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_validations | io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_auditAnnotations
	(io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_values)
	io_k8s_api_admissionregistration_v1_ValidatingWebhook_clientConfig_service_port > 1 & io_k8s_api_admissionregistration_v1_ValidatingWebhook_clientConfig_service_port < 65535
	io_k8s_api_admissionregistration_v1_ValidatingWebhook_clientConfig => (io_k8s_api_admissionregistration_v1_ValidatingWebhook_clientConfig_url | io_k8s_api_admissionregistration_v1_ValidatingWebhook_clientConfig_service) & !(io_k8s_api_admissionregistration_v1_ValidatingWebhook_clientConfig_url & io_k8s_api_admissionregistration_v1_ValidatingWebhook_clientConfig_service)
	(io_k8s_api_admissionregistration_v1_ValidatingWebhook_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_ValidatingWebhook_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_ValidatingWebhook_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_ValidatingWebhook_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_ValidatingWebhook_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_ValidatingWebhook_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1_ValidatingWebhook_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_ValidatingWebhook_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_ValidatingWebhook_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_ValidatingWebhook_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_ValidatingWebhook_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_ValidatingWebhook_objectSelector_matchExpressions_values)
	io_k8s_api_admissionregistration_v1_ValidatingWebhook_timeoutSeconds > 1 & io_k8s_api_admissionregistration_v1_ValidatingWebhook_timeoutSeconds < 30
	io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_clientConfig_service_port > 1 & io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_clientConfig_service_port < 65535
	io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_clientConfig => (io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_clientConfig_url | io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_clientConfig_service) & !(io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_clientConfig_url & io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_clientConfig_service)
	(io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_objectSelector_matchExpressions_values)
	io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_timeoutSeconds > 1 & io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration_webhooks_timeoutSeconds < 30
	io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_clientConfig_service_port > 1 & io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_clientConfig_service_port < 65535
	io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_clientConfig => (io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_clientConfig_url | io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_clientConfig_service) & !(io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_clientConfig_url & io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_clientConfig_service)
	(io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_objectSelector_matchExpressions_values)
	io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_timeoutSeconds > 1 & io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList_items_webhooks_timeoutSeconds < 30
	io_k8s_api_admissionregistration_v1_WebhookClientConfig_service_port > 1 & io_k8s_api_admissionregistration_v1_WebhookClientConfig_service_port < 65535
	io_k8s_api_admissionregistration_v1_WebhookClientConfig => (io_k8s_api_admissionregistration_v1_WebhookClientConfig_url | io_k8s_api_admissionregistration_v1_WebhookClientConfig_service) & !(io_k8s_api_admissionregistration_v1_WebhookClientConfig_url & io_k8s_api_admissionregistration_v1_WebhookClientConfig_service)
	(io_k8s_api_admissionregistration_v1alpha1_MatchResources_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1alpha1_MatchResources_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1alpha1_MatchResources_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1alpha1_MatchResources_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1alpha1_MatchResources_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1alpha1_MatchResources_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1alpha1_MatchResources_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1alpha1_MatchResources_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1alpha1_MatchResources_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1alpha1_MatchResources_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1alpha1_MatchResources_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1alpha1_MatchResources_objectSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1alpha1_ParamRef_name => !io_k8s_api_admissionregistration_v1alpha1_ParamRef_selector) & (io_k8s_api_admissionregistration_v1alpha1_ParamRef_selector => !io_k8s_api_admissionregistration_v1alpha1_ParamRef_name)
	(io_k8s_api_admissionregistration_v1alpha1_ParamRef_selector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1alpha1_ParamRef_selector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1alpha1_ParamRef_selector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1alpha1_ParamRef_selector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1alpha1_ParamRef_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1alpha1_ParamRef_selector_matchExpressions_values)
	io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec => io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_validations | io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_auditAnnotations
	(io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_name => !io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector) & (io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector => !io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_name)
	(io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_name => !io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector) & (io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector => !io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_name)
	(io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_name => !io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector) & (io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector => !io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_name)
	(io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_values)
	io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec => io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_validations | io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_auditAnnotations
	(io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_values)
	io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec => io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_validations | io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_auditAnnotations
	(io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1beta1_MatchResources_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1beta1_MatchResources_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1beta1_MatchResources_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1beta1_MatchResources_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1beta1_MatchResources_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1beta1_MatchResources_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1beta1_MatchResources_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1beta1_MatchResources_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1beta1_MatchResources_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1beta1_MatchResources_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1beta1_MatchResources_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1beta1_MatchResources_objectSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1beta1_ParamRef_name => !io_k8s_api_admissionregistration_v1beta1_ParamRef_selector) & (io_k8s_api_admissionregistration_v1beta1_ParamRef_selector => !io_k8s_api_admissionregistration_v1beta1_ParamRef_name)
	(io_k8s_api_admissionregistration_v1beta1_ParamRef_selector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1beta1_ParamRef_selector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1beta1_ParamRef_selector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1beta1_ParamRef_selector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1beta1_ParamRef_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1beta1_ParamRef_selector_matchExpressions_values)
	io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec => io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_validations | io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_auditAnnotations
	(io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy_spec_matchConstraints_objectSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_matchResources_objectSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_name => !io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector) & (io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector => !io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_name)
	(io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding_spec_paramRef_selector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_matchResources_objectSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_name => !io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector) & (io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector => !io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_name)
	(io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList_items_spec_paramRef_selector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_matchResources_objectSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_name => !io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector) & (io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector => !io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_name)
	(io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec_paramRef_selector_matchExpressions_values)
	io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec => io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_validations | io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_auditAnnotations
	(io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList_items_spec_matchConstraints_objectSelector_matchExpressions_values)
	io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec => io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_validations | io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_auditAnnotations
	(io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_namespaceSelector_matchExpressions_values)
	(io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_In | io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_NotIn => io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_values) | (io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_Exists |io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec_matchConstraints_objectSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSet_spec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSet_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSet_spec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSet_spec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSet_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSet_spec_selector_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_restartPolicy_Always => io_k8s_api_apps_v1_DaemonSet_spec_template) & (!io_k8s_api_apps_v1_DaemonSet_spec_template_spec_restartPolicy_Never) & (!io_k8s_api_apps_v1_DaemonSet_spec_template_spec_restartPolicy_OnFailure)
	(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_ports_containerPort > 0 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_ports_hostPort > 0 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_capabilities
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_privileged
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_procMount
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_runAsUser
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_httpGet => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_privileged
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_procMount
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_resourceClaims_source => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_appArmorProfile
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_fsGroup
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_runAsGroup
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_runAsUser
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_seccompProfile
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_supplementalGroups
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_sysctls
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_securityContext_windowsOptions
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_tolerations_operator_Exists => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_tolerations_value
	(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_flocker => (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_flocker_datasetUUID | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_flocker_datasetUUID & io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	io_k8s_api_apps_v1_DaemonSet_spec_updateStrategy_type_RollingUpdate => io_k8s_api_apps_v1_DaemonSet_spec_updateStrategy_rollingUpdate
	(io_k8s_api_apps_v1_DaemonSetList_items_spec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetList_items_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetList_items_spec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetList_items_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetList_items_spec_selector_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_restartPolicy_Always => io_k8s_api_apps_v1_DaemonSetList_items_spec_template) & (!io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_restartPolicy_Never) & (!io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_restartPolicy_OnFailure)
	(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_ports_containerPort > 0 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_ports_hostPort > 0 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_capabilities
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_privileged
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_procMount
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_runAsUser
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_httpGet => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_privileged
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_procMount
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_resourceClaims_source => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_appArmorProfile
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_fsGroup
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_runAsGroup
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_runAsUser
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_seccompProfile
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_supplementalGroups
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_sysctls
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_securityContext_windowsOptions
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_tolerations_operator_Exists => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_tolerations_value
	(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_flocker => (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_flocker_datasetUUID | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_flocker_datasetUUID & io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	io_k8s_api_apps_v1_DaemonSetList_items_spec_updateStrategy_type_RollingUpdate => io_k8s_api_apps_v1_DaemonSetList_items_spec_updateStrategy_rollingUpdate
	(io_k8s_api_apps_v1_DaemonSetSpec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetSpec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetSpec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetSpec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetSpec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetSpec_selector_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_restartPolicy_Always => io_k8s_api_apps_v1_DaemonSetSpec_template) & (!io_k8s_api_apps_v1_DaemonSetSpec_template_spec_restartPolicy_Never) & (!io_k8s_api_apps_v1_DaemonSetSpec_template_spec_restartPolicy_OnFailure)
	(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_ports_containerPort > 0 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_ports_hostPort > 0 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_capabilities
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_privileged
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_procMount
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_runAsUser
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_linux => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_httpGet => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_linux => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_privileged
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_procMount
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_linux => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_resourceClaims_source => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_appArmorProfile
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_fsGroup
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_runAsGroup
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_runAsUser
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_seccompProfile
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_supplementalGroups
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_sysctls
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_os_name_linux => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_securityContext_windowsOptions
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_tolerations_operator_Exists => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_tolerations_value
	(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_flocker => (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_flocker_datasetUUID | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_flocker_datasetUUID & io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DaemonSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	io_k8s_api_apps_v1_DaemonSetSpec_updateStrategy_type_RollingUpdate => io_k8s_api_apps_v1_DaemonSetSpec_updateStrategy_rollingUpdate
	io_k8s_api_apps_v1_DaemonSetUpdateStrategy_type_RollingUpdate => io_k8s_api_apps_v1_DaemonSetUpdateStrategy_rollingUpdate
	(io_k8s_api_apps_v1_Deployment_spec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_Deployment_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_Deployment_spec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_Deployment_spec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_Deployment_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_Deployment_spec_selector_matchExpressions_values)
	(io_k8s_api_apps_v1_Deployment_spec_template_spec_restartPolicy_Always => io_k8s_api_apps_v1_Deployment_spec_template) & (!io_k8s_api_apps_v1_Deployment_spec_template_spec_restartPolicy_Never) & (!io_k8s_api_apps_v1_Deployment_spec_template_spec_restartPolicy_OnFailure)
	(io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_Deployment_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart => (io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop => (io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_ports_containerPort > 0 & io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_ports_hostPort > 0 & io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_capabilities
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_privileged
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_procMount
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_runAsUser
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_httpGet => (io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_privileged
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_procMount
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_Deployment_spec_template_spec_resourceClaims_source => (io_k8s_api_apps_v1_Deployment_spec_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_apps_v1_Deployment_spec_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_apps_v1_Deployment_spec_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_apps_v1_Deployment_spec_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_appArmorProfile
	io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_fsGroup
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_runAsGroup
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_runAsUser
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_seccompProfile
	io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_supplementalGroups
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_sysctls
	io_k8s_api_apps_v1_Deployment_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_Deployment_spec_template_spec_securityContext_windowsOptions
	io_k8s_api_apps_v1_Deployment_spec_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_apps_v1_Deployment_spec_template_spec_tolerations_operator_Exists => !io_k8s_api_apps_v1_Deployment_spec_template_spec_tolerations_value
	(io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_Deployment_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_flocker => (io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_flocker_datasetUUID | io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_flocker_datasetUUID & io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_Deployment_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DeploymentList_items_spec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentList_items_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentList_items_spec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentList_items_spec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentList_items_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentList_items_spec_selector_matchExpressions_values)
	(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_restartPolicy_Always => io_k8s_api_apps_v1_DeploymentList_items_spec_template) & (!io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_restartPolicy_Never) & (!io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_restartPolicy_OnFailure)
	(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_ports_containerPort > 0 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_ports_hostPort > 0 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_capabilities
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_privileged
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_procMount
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_runAsUser
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_httpGet => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_privileged
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_procMount
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_resourceClaims_source => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_appArmorProfile
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_fsGroup
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_runAsGroup
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_runAsUser
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_seccompProfile
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_supplementalGroups
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_sysctls
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_securityContext_windowsOptions
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_tolerations_operator_Exists => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_tolerations_value
	(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_flocker => (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_flocker_datasetUUID | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_flocker_datasetUUID & io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DeploymentSpec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentSpec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentSpec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentSpec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentSpec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentSpec_selector_matchExpressions_values)
	(io_k8s_api_apps_v1_DeploymentSpec_template_spec_restartPolicy_Always => io_k8s_api_apps_v1_DeploymentSpec_template) & (!io_k8s_api_apps_v1_DeploymentSpec_template_spec_restartPolicy_Never) & (!io_k8s_api_apps_v1_DeploymentSpec_template_spec_restartPolicy_OnFailure)
	(io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_ports_containerPort > 0 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_ports_hostPort > 0 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_capabilities
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_privileged
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_procMount
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_runAsUser
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_linux => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_httpGet => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_linux => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_privileged
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_procMount
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_linux => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_resourceClaims_source => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_apps_v1_DeploymentSpec_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_apps_v1_DeploymentSpec_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_apps_v1_DeploymentSpec_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_appArmorProfile
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_fsGroup
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_runAsGroup
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_runAsUser
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_seccompProfile
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_supplementalGroups
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_sysctls
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_os_name_linux => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_securityContext_windowsOptions
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_tolerations_operator_Exists => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_tolerations_value
	(io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_flocker => (io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_flocker_datasetUUID | io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_flocker_datasetUUID & io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_DeploymentSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSet_spec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSet_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSet_spec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSet_spec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSet_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSet_spec_selector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_ports_containerPort > 0 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_ports_hostPort > 0 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_capabilities
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_privileged
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_procMount
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_runAsUser
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_privileged
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_procMount
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_resourceClaims_source => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_appArmorProfile
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_fsGroup
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_runAsGroup
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_runAsUser
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_seccompProfile
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_supplementalGroups
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_sysctls
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_securityContext_windowsOptions
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_tolerations_operator_Exists => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_tolerations_value
	(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_flocker => (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_flocker_datasetUUID | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_flocker_datasetUUID & io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSetList_items_spec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetList_items_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetList_items_spec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetList_items_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_selector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_ports_containerPort > 0 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_ports_hostPort > 0 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_capabilities
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_privileged
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_procMount
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_runAsUser
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_privileged
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_procMount
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_resourceClaims_source => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_appArmorProfile
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_fsGroup
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_runAsGroup
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_runAsUser
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_seccompProfile
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_supplementalGroups
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_sysctls
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_securityContext_windowsOptions
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_tolerations_operator_Exists => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_tolerations_value
	(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_flocker => (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_flocker_datasetUUID | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_flocker_datasetUUID & io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSetSpec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetSpec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetSpec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetSpec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetSpec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetSpec_selector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_ports_containerPort > 0 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_ports_hostPort > 0 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_capabilities
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_privileged
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_procMount
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_runAsUser
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_linux => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_linux => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_privileged
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_procMount
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_linux => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_resourceClaims_source => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_appArmorProfile
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_fsGroup
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_runAsGroup
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_runAsUser
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_seccompProfile
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_supplementalGroups
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_sysctls
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_os_name_linux => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_securityContext_windowsOptions
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_tolerations_operator_Exists => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_tolerations_value
	(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_flocker => (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_flocker_datasetUUID | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_flocker_datasetUUID & io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_ReplicaSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSet_spec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSet_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSet_spec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSet_spec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSet_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSet_spec_selector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_restartPolicy_Always => io_k8s_api_apps_v1_StatefulSet_spec_template) & (!io_k8s_api_apps_v1_StatefulSet_spec_template_spec_restartPolicy_Never) & (!io_k8s_api_apps_v1_StatefulSet_spec_template_spec_restartPolicy_OnFailure)
	(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_ports_containerPort > 0 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_ports_hostPort > 0 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_capabilities
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_privileged
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_procMount
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_runAsUser
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_httpGet => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_privileged
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_procMount
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_resourceClaims_source => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_appArmorProfile
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_fsGroup
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_runAsGroup
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_runAsUser
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_seccompProfile
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_supplementalGroups
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_sysctls
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_securityContext_windowsOptions
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_tolerations_operator_Exists => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_tolerations_value
	(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_flocker => (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_flocker_datasetUUID | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_flocker_datasetUUID & io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSet_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSet_spec_volumeClaimTemplates_spec_selector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSetList_items_spec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetList_items_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetList_items_spec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetList_items_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetList_items_spec_selector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_restartPolicy_Always => io_k8s_api_apps_v1_StatefulSetList_items_spec_template) & (!io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_restartPolicy_Never) & (!io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_restartPolicy_OnFailure)
	(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_ports_containerPort > 0 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_ports_hostPort > 0 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_capabilities
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_privileged
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_procMount
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_runAsUser
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_httpGet => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_privileged
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_procMount
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_resourceClaims_source => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_appArmorProfile
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_fsGroup
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_runAsGroup
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_runAsUser
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_seccompProfile
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_supplementalGroups
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_sysctls
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_os_name_linux => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_securityContext_windowsOptions
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_tolerations_operator_Exists => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_tolerations_value
	(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_flocker => (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_flocker_datasetUUID | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_flocker_datasetUUID & io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetList_items_spec_volumeClaimTemplates_spec_selector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSetSpec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetSpec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetSpec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetSpec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetSpec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetSpec_selector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_restartPolicy_Always => io_k8s_api_apps_v1_StatefulSetSpec_template) & (!io_k8s_api_apps_v1_StatefulSetSpec_template_spec_restartPolicy_Never) & (!io_k8s_api_apps_v1_StatefulSetSpec_template_spec_restartPolicy_OnFailure)
	(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_ports_containerPort > 0 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_ports_hostPort > 0 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_capabilities
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_privileged
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_procMount
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_runAsUser
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_linux => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_httpGet => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_linux => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_privileged
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_procMount
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_linux => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_resourceClaims_source => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_appArmorProfile
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_fsGroup
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_runAsGroup
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_runAsUser
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_seLinuxOptions
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_seccompProfile
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_supplementalGroups
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_windows => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_sysctls
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_os_name_linux => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_securityContext_windowsOptions
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_tolerations_operator_Exists => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_tolerations_value
	(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_flocker => (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_flocker_datasetUUID | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_flocker_datasetUUID & io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	(io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_selector_matchExpressions_operator_In | io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_selector_matchExpressions_values) | (io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_selector_matchExpressions_operator_Exists |io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_apps_v1_StatefulSetSpec_volumeClaimTemplates_spec_selector_matchExpressions_values)
	io_k8s_api_authorization_v1_LocalSubjectAccessReview_spec => (io_k8s_api_authorization_v1_LocalSubjectAccessReview_spec_nonResourceAttributes | io_k8s_api_authorization_v1_LocalSubjectAccessReview_spec_resourceAttributes) & !(io_k8s_api_authorization_v1_LocalSubjectAccessReview_spec_nonResourceAttributes & io_k8s_api_authorization_v1_LocalSubjectAccessReview_spec_resourceAttributes)
	io_k8s_api_authorization_v1_SelfSubjectAccessReview_spec => (io_k8s_api_authorization_v1_SelfSubjectAccessReview_spec_nonResourceAttributes | io_k8s_api_authorization_v1_SelfSubjectAccessReview_spec_resourceAttributes) & !(io_k8s_api_authorization_v1_SelfSubjectAccessReview_spec_nonResourceAttributes & io_k8s_api_authorization_v1_SelfSubjectAccessReview_spec_resourceAttributes)
	io_k8s_api_authorization_v1_SelfSubjectAccessReviewSpec => (io_k8s_api_authorization_v1_SelfSubjectAccessReviewSpec_nonResourceAttributes | io_k8s_api_authorization_v1_SelfSubjectAccessReviewSpec_resourceAttributes) & !(io_k8s_api_authorization_v1_SelfSubjectAccessReviewSpec_nonResourceAttributes & io_k8s_api_authorization_v1_SelfSubjectAccessReviewSpec_resourceAttributes)
	io_k8s_api_authorization_v1_SubjectAccessReview_spec => (io_k8s_api_authorization_v1_SubjectAccessReview_spec_nonResourceAttributes | io_k8s_api_authorization_v1_SubjectAccessReview_spec_resourceAttributes) & !(io_k8s_api_authorization_v1_SubjectAccessReview_spec_nonResourceAttributes & io_k8s_api_authorization_v1_SubjectAccessReview_spec_resourceAttributes)
	io_k8s_api_authorization_v1_SubjectAccessReviewSpec => (io_k8s_api_authorization_v1_SubjectAccessReviewSpec_nonResourceAttributes | io_k8s_api_authorization_v1_SubjectAccessReviewSpec_resourceAttributes) & !(io_k8s_api_authorization_v1_SubjectAccessReviewSpec_nonResourceAttributes & io_k8s_api_authorization_v1_SubjectAccessReviewSpec_resourceAttributes)
	(io_k8s_api_autoscaling_v2_ExternalMetricSource_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_ExternalMetricSource_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_ExternalMetricSource_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_ExternalMetricSource_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_ExternalMetricSource_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_ExternalMetricSource_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_ExternalMetricStatus_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_ExternalMetricStatus_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_ExternalMetricStatus_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_ExternalMetricStatus_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_ExternalMetricStatus_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_ExternalMetricStatus_metric_selector_matchExpressions_values)
	io_k8s_api_autoscaling_v2_HPAScalingPolicy_periodSeconds > 0 & io_k8s_api_autoscaling_v2_HPAScalingPolicy_periodSeconds < 1801
	io_k8s_api_autoscaling_v2_HPAScalingPolicy_value > 0
	io_k8s_api_autoscaling_v2_HPAScalingRules_policies_periodSeconds > 0 & io_k8s_api_autoscaling_v2_HPAScalingRules_policies_periodSeconds < 1801
	io_k8s_api_autoscaling_v2_HPAScalingRules_policies_value > 0
	io_k8s_api_autoscaling_v2_HPAScalingRules_stabilizationWindowSeconds > 0 & io_k8s_api_autoscaling_v2_HPAScalingRules_stabilizationWindowSeconds < 3601
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleDown_policies_periodSeconds > 0 & io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleDown_policies_periodSeconds < 1801
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleDown_policies_value > 0
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleDown_stabilizationWindowSeconds > 0 & io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleDown_stabilizationWindowSeconds < 3601
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleUp_policies_periodSeconds > 0 & io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleUp_policies_periodSeconds < 1801
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleUp_policies_value > 0
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleUp_stabilizationWindowSeconds > 0 & io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_behavior_scaleUp_stabilizationWindowSeconds < 3601
	(io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_external_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_object_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_spec_metrics_pods_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_external_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_object_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler_status_currentMetrics_pods_metric_selector_matchExpressions_values)
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleDown_policies_periodSeconds > 0 & io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleDown_policies_periodSeconds < 1801
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleDown_policies_value > 0
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleDown_stabilizationWindowSeconds > 0 & io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleDown_stabilizationWindowSeconds < 3601
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleUp_policies_periodSeconds > 0 & io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleUp_policies_periodSeconds < 1801
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleUp_policies_value > 0
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleUp_stabilizationWindowSeconds > 0 & io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior_scaleUp_stabilizationWindowSeconds < 3601
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleDown_policies_periodSeconds > 0 & io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleDown_policies_periodSeconds < 1801
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleDown_policies_value > 0
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleDown_stabilizationWindowSeconds > 0 & io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleDown_stabilizationWindowSeconds < 3601
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleUp_policies_periodSeconds > 0 & io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleUp_policies_periodSeconds < 1801
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleUp_policies_value > 0
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleUp_stabilizationWindowSeconds > 0 & io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_behavior_scaleUp_stabilizationWindowSeconds < 3601
	(io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_external_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_object_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_spec_metrics_pods_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_external_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_object_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList_items_status_currentMetrics_pods_metric_selector_matchExpressions_values)
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleDown_policies_periodSeconds > 0 & io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleDown_policies_periodSeconds < 1801
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleDown_policies_value > 0
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleDown_stabilizationWindowSeconds > 0 & io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleDown_stabilizationWindowSeconds < 3601
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleUp_policies_periodSeconds > 0 & io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleUp_policies_periodSeconds < 1801
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleUp_policies_value > 0
	io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleUp_stabilizationWindowSeconds > 0 & io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_behavior_scaleUp_stabilizationWindowSeconds < 3601
	(io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_external_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_object_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec_metrics_pods_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_external_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_object_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus_currentMetrics_pods_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_MetricIdentifier_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_MetricIdentifier_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_MetricIdentifier_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_MetricIdentifier_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_MetricIdentifier_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_MetricIdentifier_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_MetricSpec_external_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_MetricSpec_external_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_MetricSpec_external_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_MetricSpec_external_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_MetricSpec_external_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_MetricSpec_external_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_MetricSpec_object_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_MetricSpec_object_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_MetricSpec_object_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_MetricSpec_object_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_MetricSpec_object_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_MetricSpec_object_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_MetricSpec_pods_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_MetricSpec_pods_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_MetricSpec_pods_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_MetricSpec_pods_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_MetricSpec_pods_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_MetricSpec_pods_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_MetricStatus_external_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_MetricStatus_external_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_MetricStatus_external_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_MetricStatus_external_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_MetricStatus_external_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_MetricStatus_external_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_MetricStatus_object_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_MetricStatus_object_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_MetricStatus_object_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_MetricStatus_object_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_MetricStatus_object_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_MetricStatus_object_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_MetricStatus_pods_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_MetricStatus_pods_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_MetricStatus_pods_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_MetricStatus_pods_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_MetricStatus_pods_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_MetricStatus_pods_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_ObjectMetricSource_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_ObjectMetricSource_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_ObjectMetricSource_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_ObjectMetricSource_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_ObjectMetricSource_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_ObjectMetricSource_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_ObjectMetricStatus_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_ObjectMetricStatus_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_ObjectMetricStatus_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_ObjectMetricStatus_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_ObjectMetricStatus_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_ObjectMetricStatus_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_PodsMetricSource_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_PodsMetricSource_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_PodsMetricSource_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_PodsMetricSource_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_PodsMetricSource_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_PodsMetricSource_metric_selector_matchExpressions_values)
	(io_k8s_api_autoscaling_v2_PodsMetricStatus_metric_selector_matchExpressions_operator_In | io_k8s_api_autoscaling_v2_PodsMetricStatus_metric_selector_matchExpressions_operator_NotIn => io_k8s_api_autoscaling_v2_PodsMetricStatus_metric_selector_matchExpressions_values) | (io_k8s_api_autoscaling_v2_PodsMetricStatus_metric_selector_matchExpressions_operator_Exists |io_k8s_api_autoscaling_v2_PodsMetricStatus_metric_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_autoscaling_v2_PodsMetricStatus_metric_selector_matchExpressions_values)
	io_k8s_api_batch_v1_CronJob_spec_failedJobsHistoryLimit > 0
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podFailurePolicy_rules => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podFailurePolicy_rules_onPodConditions) & !(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_podFailurePolicy_rules_onPodConditions)
	(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_successPolicy_rules => io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_successPolicy_rules_succeededIndexes | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_successPolicy_rules_succeededCount
	(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_restartPolicy_Never | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_restartPolicy_OnFailure  => io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template) & (!io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_restartPolicy_Always)
	(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_ports_containerPort > 0 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_ports_hostPort > 0 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_capabilities
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_privileged
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_procMount
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_runAsUser
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_privileged
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_procMount
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_resourceClaims_source => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_appArmorProfile
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_fsGroup
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_runAsGroup
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_runAsUser
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_seccompProfile
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_supplementalGroups
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_sysctls
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_securityContext_windowsOptions
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_tolerations_operator_Exists => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_tolerations_value
	(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_flocker => (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_flocker_datasetUUID | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_flocker_datasetUUID & io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJob_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	io_k8s_api_batch_v1_CronJob_spec_successfulJobsHistoryLimit > 0
	io_k8s_api_batch_v1_CronJobList_items_spec_failedJobsHistoryLimit > 0
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podFailurePolicy_rules => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podFailurePolicy_rules_onPodConditions) & !(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_podFailurePolicy_rules_onPodConditions)
	(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_successPolicy_rules => io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_successPolicy_rules_succeededIndexes | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_successPolicy_rules_succeededCount
	(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_restartPolicy_Never | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_restartPolicy_OnFailure  => io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template) & (!io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_restartPolicy_Always)
	(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_ports_containerPort > 0 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_ports_hostPort > 0 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_capabilities
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_privileged
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_procMount
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_runAsUser
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_privileged
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_procMount
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_resourceClaims_source => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_appArmorProfile
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_fsGroup
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_runAsGroup
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_runAsUser
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_seccompProfile
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_supplementalGroups
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_sysctls
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_securityContext_windowsOptions
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_tolerations_operator_Exists => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_tolerations_value
	(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_flocker => (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_flocker_datasetUUID | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_flocker_datasetUUID & io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobList_items_spec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	io_k8s_api_batch_v1_CronJobList_items_spec_successfulJobsHistoryLimit > 0
	io_k8s_api_batch_v1_CronJobSpec_failedJobsHistoryLimit > 0
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podFailurePolicy_rules => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podFailurePolicy_rules_onPodConditions) & !(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podFailurePolicy_rules_onExitCodes & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_podFailurePolicy_rules_onPodConditions)
	(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_successPolicy_rules => io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_successPolicy_rules_succeededIndexes | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_successPolicy_rules_succeededCount
	(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_restartPolicy_Never | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_restartPolicy_OnFailure  => io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template) & (!io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_restartPolicy_Always)
	(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_ports_containerPort > 0 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_ports_hostPort > 0 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_capabilities
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_privileged
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_procMount
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_runAsUser
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_privileged
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_procMount
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_resourceClaims_source => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_appArmorProfile
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_fsGroup
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_runAsGroup
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_runAsUser
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_seccompProfile
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_supplementalGroups
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_sysctls
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_securityContext_windowsOptions
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_tolerations_operator_Exists => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_tolerations_value
	(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_flocker => (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_flocker_datasetUUID | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_flocker_datasetUUID & io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_CronJobSpec_jobTemplate_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	io_k8s_api_batch_v1_CronJobSpec_successfulJobsHistoryLimit > 0
	io_k8s_api_batch_v1_Job_spec_podFailurePolicy_rules => (io_k8s_api_batch_v1_Job_spec_podFailurePolicy_rules_onExitCodes | io_k8s_api_batch_v1_Job_spec_podFailurePolicy_rules_onPodConditions) & !(io_k8s_api_batch_v1_Job_spec_podFailurePolicy_rules_onExitCodes & io_k8s_api_batch_v1_Job_spec_podFailurePolicy_rules_onPodConditions)
	(io_k8s_api_batch_v1_Job_spec_selector_matchExpressions_operator_In | io_k8s_api_batch_v1_Job_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_Job_spec_selector_matchExpressions_values) | (io_k8s_api_batch_v1_Job_spec_selector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_Job_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_Job_spec_selector_matchExpressions_values)
	io_k8s_api_batch_v1_Job_spec_successPolicy_rules => io_k8s_api_batch_v1_Job_spec_successPolicy_rules_succeededIndexes | io_k8s_api_batch_v1_Job_spec_successPolicy_rules_succeededCount
	(io_k8s_api_batch_v1_Job_spec_template_spec_restartPolicy_Never | io_k8s_api_batch_v1_Job_spec_template_spec_restartPolicy_OnFailure  => io_k8s_api_batch_v1_Job_spec_template) & (!io_k8s_api_batch_v1_Job_spec_template_spec_restartPolicy_Always)
	(io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_batch_v1_Job_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_Job_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart => (io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop => (io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_ports_containerPort > 0 & io_k8s_api_batch_v1_Job_spec_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_ports_hostPort > 0 & io_k8s_api_batch_v1_Job_spec_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_capabilities
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_privileged
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_procMount
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_runAsUser
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_Job_spec_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_httpGet => (io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_privileged
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_procMount
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_Job_spec_template_spec_resourceClaims_source => (io_k8s_api_batch_v1_Job_spec_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_batch_v1_Job_spec_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_batch_v1_Job_spec_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_batch_v1_Job_spec_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_appArmorProfile
	io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_fsGroup
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_runAsGroup
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_runAsUser
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_seccompProfile
	io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_supplementalGroups
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_sysctls
	io_k8s_api_batch_v1_Job_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_Job_spec_template_spec_securityContext_windowsOptions
	io_k8s_api_batch_v1_Job_spec_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_batch_v1_Job_spec_template_spec_tolerations_operator_Exists => !io_k8s_api_batch_v1_Job_spec_template_spec_tolerations_value
	(io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_Job_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_Job_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_batch_v1_Job_spec_template_spec_volumes_flocker => (io_k8s_api_batch_v1_Job_spec_template_spec_volumes_flocker_datasetUUID | io_k8s_api_batch_v1_Job_spec_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_batch_v1_Job_spec_template_spec_volumes_flocker_datasetUUID & io_k8s_api_batch_v1_Job_spec_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_Job_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	io_k8s_api_batch_v1_JobList_items_spec_podFailurePolicy_rules => (io_k8s_api_batch_v1_JobList_items_spec_podFailurePolicy_rules_onExitCodes | io_k8s_api_batch_v1_JobList_items_spec_podFailurePolicy_rules_onPodConditions) & !(io_k8s_api_batch_v1_JobList_items_spec_podFailurePolicy_rules_onExitCodes & io_k8s_api_batch_v1_JobList_items_spec_podFailurePolicy_rules_onPodConditions)
	(io_k8s_api_batch_v1_JobList_items_spec_selector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobList_items_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobList_items_spec_selector_matchExpressions_values) | (io_k8s_api_batch_v1_JobList_items_spec_selector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobList_items_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobList_items_spec_selector_matchExpressions_values)
	io_k8s_api_batch_v1_JobList_items_spec_successPolicy_rules => io_k8s_api_batch_v1_JobList_items_spec_successPolicy_rules_succeededIndexes | io_k8s_api_batch_v1_JobList_items_spec_successPolicy_rules_succeededCount
	(io_k8s_api_batch_v1_JobList_items_spec_template_spec_restartPolicy_Never | io_k8s_api_batch_v1_JobList_items_spec_template_spec_restartPolicy_OnFailure  => io_k8s_api_batch_v1_JobList_items_spec_template) & (!io_k8s_api_batch_v1_JobList_items_spec_template_spec_restartPolicy_Always)
	(io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_ports_containerPort > 0 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_ports_hostPort > 0 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_capabilities
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_privileged
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_procMount
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_runAsUser
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_httpGet => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_privileged
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_procMount
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_resourceClaims_source => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_batch_v1_JobList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_batch_v1_JobList_items_spec_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_batch_v1_JobList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_appArmorProfile
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_fsGroup
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_runAsGroup
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_runAsUser
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_seccompProfile
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_supplementalGroups
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_sysctls
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_securityContext_windowsOptions
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_tolerations_operator_Exists => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_tolerations_value
	(io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_flocker => (io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_flocker_datasetUUID | io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_flocker_datasetUUID & io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	io_k8s_api_batch_v1_JobSpec_podFailurePolicy_rules => (io_k8s_api_batch_v1_JobSpec_podFailurePolicy_rules_onExitCodes | io_k8s_api_batch_v1_JobSpec_podFailurePolicy_rules_onPodConditions) & !(io_k8s_api_batch_v1_JobSpec_podFailurePolicy_rules_onExitCodes & io_k8s_api_batch_v1_JobSpec_podFailurePolicy_rules_onPodConditions)
	(io_k8s_api_batch_v1_JobSpec_selector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobSpec_selector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobSpec_selector_matchExpressions_values) | (io_k8s_api_batch_v1_JobSpec_selector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobSpec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobSpec_selector_matchExpressions_values)
	io_k8s_api_batch_v1_JobSpec_successPolicy_rules => io_k8s_api_batch_v1_JobSpec_successPolicy_rules_succeededIndexes | io_k8s_api_batch_v1_JobSpec_successPolicy_rules_succeededCount
	(io_k8s_api_batch_v1_JobSpec_template_spec_restartPolicy_Never | io_k8s_api_batch_v1_JobSpec_template_spec_restartPolicy_OnFailure  => io_k8s_api_batch_v1_JobSpec_template) & (!io_k8s_api_batch_v1_JobSpec_template_spec_restartPolicy_Always)
	(io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_batch_v1_JobSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart => (io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop => (io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_ports_containerPort > 0 & io_k8s_api_batch_v1_JobSpec_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_ports_hostPort > 0 & io_k8s_api_batch_v1_JobSpec_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_capabilities
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_privileged
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_procMount
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_runAsUser
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_linux => !io_k8s_api_batch_v1_JobSpec_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_httpGet => (io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_linux => !io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_privileged
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_procMount
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_linux => !io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobSpec_template_spec_resourceClaims_source => (io_k8s_api_batch_v1_JobSpec_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_batch_v1_JobSpec_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_batch_v1_JobSpec_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_batch_v1_JobSpec_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_appArmorProfile
	io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_fsGroup
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_runAsGroup
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_runAsUser
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_seccompProfile
	io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_supplementalGroups
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_sysctls
	io_k8s_api_batch_v1_JobSpec_template_spec_os_name_linux => !io_k8s_api_batch_v1_JobSpec_template_spec_securityContext_windowsOptions
	io_k8s_api_batch_v1_JobSpec_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_batch_v1_JobSpec_template_spec_tolerations_operator_Exists => !io_k8s_api_batch_v1_JobSpec_template_spec_tolerations_value
	(io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_batch_v1_JobSpec_template_spec_volumes_flocker => (io_k8s_api_batch_v1_JobSpec_template_spec_volumes_flocker_datasetUUID | io_k8s_api_batch_v1_JobSpec_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_batch_v1_JobSpec_template_spec_volumes_flocker_datasetUUID & io_k8s_api_batch_v1_JobSpec_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	io_k8s_api_batch_v1_JobTemplateSpec_spec_podFailurePolicy_rules => (io_k8s_api_batch_v1_JobTemplateSpec_spec_podFailurePolicy_rules_onExitCodes | io_k8s_api_batch_v1_JobTemplateSpec_spec_podFailurePolicy_rules_onPodConditions) & !(io_k8s_api_batch_v1_JobTemplateSpec_spec_podFailurePolicy_rules_onExitCodes & io_k8s_api_batch_v1_JobTemplateSpec_spec_podFailurePolicy_rules_onPodConditions)
	(io_k8s_api_batch_v1_JobTemplateSpec_spec_selector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobTemplateSpec_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobTemplateSpec_spec_selector_matchExpressions_values) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_selector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobTemplateSpec_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobTemplateSpec_spec_selector_matchExpressions_values)
	io_k8s_api_batch_v1_JobTemplateSpec_spec_successPolicy_rules => io_k8s_api_batch_v1_JobTemplateSpec_spec_successPolicy_rules_succeededIndexes | io_k8s_api_batch_v1_JobTemplateSpec_spec_successPolicy_rules_succeededCount
	(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_restartPolicy_Never | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_restartPolicy_OnFailure  => io_k8s_api_batch_v1_JobTemplateSpec_spec_template) & (!io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_restartPolicy_Always)
	(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_ports_containerPort > 0 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_ports_hostPort > 0 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_capabilities
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_privileged
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_procMount
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_runAsUser
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_httpGet => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_privileged
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_procMount
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_resourceClaims_source => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_appArmorProfile
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_fsGroup
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_runAsGroup
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_runAsUser
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_seLinuxOptions
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_seccompProfile
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_supplementalGroups
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_windows => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_sysctls
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_os_name_linux => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_securityContext_windowsOptions
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_tolerations_operator_Exists => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_tolerations_value
	(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_flocker => (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_flocker_datasetUUID | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_flocker_datasetUUID & io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_batch_v1_JobTemplateSpec_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	io_k8s_api_batch_v1_PodFailurePolicy_rules => (io_k8s_api_batch_v1_PodFailurePolicy_rules_onExitCodes | io_k8s_api_batch_v1_PodFailurePolicy_rules_onPodConditions) & !(io_k8s_api_batch_v1_PodFailurePolicy_rules_onExitCodes & io_k8s_api_batch_v1_PodFailurePolicy_rules_onPodConditions)
	io_k8s_api_batch_v1_PodFailurePolicyRule => (io_k8s_api_batch_v1_PodFailurePolicyRule_onExitCodes | io_k8s_api_batch_v1_PodFailurePolicyRule_onPodConditions) & !(io_k8s_api_batch_v1_PodFailurePolicyRule_onExitCodes & io_k8s_api_batch_v1_PodFailurePolicyRule_onPodConditions)
	io_k8s_api_batch_v1_SuccessPolicy_rules => io_k8s_api_batch_v1_SuccessPolicy_rules_succeededIndexes | io_k8s_api_batch_v1_SuccessPolicy_rules_succeededCount
	io_k8s_api_batch_v1_SuccessPolicyRule => io_k8s_api_batch_v1_SuccessPolicyRule_succeededIndexes | io_k8s_api_batch_v1_SuccessPolicyRule_succeededCount
	io_k8s_api_certificates_v1_CertificateSigningRequest_spec_expirationSeconds > 600
	io_k8s_api_certificates_v1_CertificateSigningRequest_status_conditions => (io_k8s_api_certificates_v1_CertificateSigningRequest_status_conditions_type_Approved | io_k8s_api_certificates_v1_CertificateSigningRequest_status_conditions_type_Denied | io_k8s_api_certificates_v1_CertificateSigningRequest_status_conditions_type_Failed) => !io_k8s_api_certificates_v1_CertificateSigningRequest_status_conditions_status_False & !io_k8s_api_certificates_v1_CertificateSigningRequest_status_conditions_status_Unknown
	io_k8s_api_certificates_v1_CertificateSigningRequestCondition => (io_k8s_api_certificates_v1_CertificateSigningRequestCondition_type_Approved | io_k8s_api_certificates_v1_CertificateSigningRequestCondition_type_Denied | io_k8s_api_certificates_v1_CertificateSigningRequestCondition_type_Failed) => !io_k8s_api_certificates_v1_CertificateSigningRequestCondition_status_False & !io_k8s_api_certificates_v1_CertificateSigningRequestCondition_status_Unknown
	io_k8s_api_certificates_v1_CertificateSigningRequestList_items_spec_expirationSeconds > 600
	io_k8s_api_certificates_v1_CertificateSigningRequestList_items_status_conditions => (io_k8s_api_certificates_v1_CertificateSigningRequestList_items_status_conditions_type_Approved | io_k8s_api_certificates_v1_CertificateSigningRequestList_items_status_conditions_type_Denied | io_k8s_api_certificates_v1_CertificateSigningRequestList_items_status_conditions_type_Failed) => !io_k8s_api_certificates_v1_CertificateSigningRequestList_items_status_conditions_status_False & !io_k8s_api_certificates_v1_CertificateSigningRequestList_items_status_conditions_status_Unknown
	io_k8s_api_certificates_v1_CertificateSigningRequestSpec_expirationSeconds > 600
	io_k8s_api_certificates_v1_CertificateSigningRequestStatus_conditions => (io_k8s_api_certificates_v1_CertificateSigningRequestStatus_conditions_type_Approved | io_k8s_api_certificates_v1_CertificateSigningRequestStatus_conditions_type_Denied | io_k8s_api_certificates_v1_CertificateSigningRequestStatus_conditions_type_Failed) => !io_k8s_api_certificates_v1_CertificateSigningRequestStatus_conditions_status_False & !io_k8s_api_certificates_v1_CertificateSigningRequestStatus_conditions_status_Unknown
	(io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_Affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_core_v1_Affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_Affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_Affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_AppArmorProfile_type_Localhost <=> io_k8s_api_core_v1_AppArmorProfile_localhostProfile
	io_k8s_api_core_v1_ClaimSource => (io_k8s_api_core_v1_ClaimSource_resourceClaimName | io_k8s_api_core_v1_ClaimSource_resourceClaimTemplateName) & !(io_k8s_api_core_v1_ClaimSource_resourceClaimName & io_k8s_api_core_v1_ClaimSource_resourceClaimTemplateName)
	(io_k8s_api_core_v1_ClusterTrustBundleProjection_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ClusterTrustBundleProjection_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ClusterTrustBundleProjection_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_ClusterTrustBundleProjection_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ClusterTrustBundleProjection_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ClusterTrustBundleProjection_labelSelector_matchExpressions_values)
	io_k8s_api_core_v1_Container_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_Container_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_Container_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_Container_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Container_lifecycle_postStart => (io_k8s_api_core_v1_Container_lifecycle_postStart_exec | io_k8s_api_core_v1_Container_lifecycle_postStart_httpGet | io_k8s_api_core_v1_Container_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_Container_lifecycle_postStart_exec & io_k8s_api_core_v1_Container_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_Container_lifecycle_postStart_exec & io_k8s_api_core_v1_Container_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_Container_lifecycle_postStart_httpGet & io_k8s_api_core_v1_Container_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_Container_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_Container_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_Container_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_Container_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_Container_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Container_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_Container_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_Container_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_Container_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Container_lifecycle_preStop => (io_k8s_api_core_v1_Container_lifecycle_preStop_exec | io_k8s_api_core_v1_Container_lifecycle_preStop_httpGet | io_k8s_api_core_v1_Container_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_Container_lifecycle_preStop_exec & io_k8s_api_core_v1_Container_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_Container_lifecycle_preStop_exec & io_k8s_api_core_v1_Container_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_Container_lifecycle_preStop_httpGet & io_k8s_api_core_v1_Container_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_Container_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_Container_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_Container_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_Container_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_Container_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Container_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_Container_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_Container_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_Container_livenessProbe_httpGet => (io_k8s_api_core_v1_Container_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_Container_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_Container_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Container_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_Container_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_Container_livenessProbe_tcpSocket => (io_k8s_api_core_v1_Container_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_Container_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_Container_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Container_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_Container_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_Container_ports_containerPort > 0 & io_k8s_api_core_v1_Container_ports_containerPort < 65536
	io_k8s_api_core_v1_Container_ports_hostPort > 0 & io_k8s_api_core_v1_Container_ports_hostPort < 65536
	io_k8s_api_core_v1_Container_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_Container_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_Container_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_Container_readinessProbe_httpGet => (io_k8s_api_core_v1_Container_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_Container_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_Container_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Container_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_Container_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_Container_readinessProbe_tcpSocket => (io_k8s_api_core_v1_Container_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_Container_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_Container_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Container_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_Container_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_Container_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_Container_securityContext_appArmorProfile
	io_k8s_api_core_v1_Container_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_Container_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_Container_securityContext_capabilities
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_Container_securityContext_privileged
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_Container_securityContext_procMount
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_Container_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_Container_securityContext_runAsGroup
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_Container_securityContext_runAsUser
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_Container_securityContext_seLinuxOptions
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_Container_securityContext_seccompProfile
	io_k8s_api_core_v1_Container_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_Container_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodSpec_os_name_linux => !io_k8s_api_core_v1_Container_securityContext_windowsOptions
	io_k8s_api_core_v1_Container_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_Container_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_Container_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_Container_startupProbe_httpGet => (io_k8s_api_core_v1_Container_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_Container_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_Container_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Container_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_Container_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_Container_startupProbe_tcpSocket => (io_k8s_api_core_v1_Container_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_Container_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_Container_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Container_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_Container_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ContainerPort_containerPort > 0 & io_k8s_api_core_v1_ContainerPort_containerPort < 65536
	io_k8s_api_core_v1_ContainerPort_hostPort > 0 & io_k8s_api_core_v1_ContainerPort_hostPort < 65536
	io_k8s_api_core_v1_ContainerState => (io_k8s_api_core_v1_ContainerState_waiting => !io_k8s_api_core_v1_ContainerState_running & !io_k8s_api_core_v1_ContainerState_terminated) & (io_k8s_api_core_v1_ContainerState_running => !io_k8s_api_core_v1_ContainerState_waiting & !io_k8s_api_core_v1_ContainerState_terminated) & (io_k8s_api_core_v1_ContainerState_terminated => !io_k8s_api_core_v1_ContainerState_waiting & !io_k8s_api_core_v1_ContainerState_running)& (!io_k8s_api_core_v1_ContainerState_running & !io_k8s_api_core_v1_ContainerState_terminated => io_k8s_api_core_v1_ContainerState_waiting)
	io_k8s_api_core_v1_ContainerStatus_lastState => (io_k8s_api_core_v1_ContainerStatus_lastState_waiting => !io_k8s_api_core_v1_ContainerStatus_lastState_running & !io_k8s_api_core_v1_ContainerStatus_lastState_terminated) & (io_k8s_api_core_v1_ContainerStatus_lastState_running => !io_k8s_api_core_v1_ContainerStatus_lastState_waiting & !io_k8s_api_core_v1_ContainerStatus_lastState_terminated) & (io_k8s_api_core_v1_ContainerStatus_lastState_terminated => !io_k8s_api_core_v1_ContainerStatus_lastState_waiting & !io_k8s_api_core_v1_ContainerStatus_lastState_running)& (!io_k8s_api_core_v1_ContainerStatus_lastState_running & !io_k8s_api_core_v1_ContainerStatus_lastState_terminated => io_k8s_api_core_v1_ContainerStatus_lastState_waiting)
	io_k8s_api_core_v1_ContainerStatus_state => (io_k8s_api_core_v1_ContainerStatus_state_waiting => !io_k8s_api_core_v1_ContainerStatus_state_running & !io_k8s_api_core_v1_ContainerStatus_state_terminated) & (io_k8s_api_core_v1_ContainerStatus_state_running => !io_k8s_api_core_v1_ContainerStatus_state_waiting & !io_k8s_api_core_v1_ContainerStatus_state_terminated) & (io_k8s_api_core_v1_ContainerStatus_state_terminated => !io_k8s_api_core_v1_ContainerStatus_state_waiting & !io_k8s_api_core_v1_ContainerStatus_state_running)& (!io_k8s_api_core_v1_ContainerStatus_state_running & !io_k8s_api_core_v1_ContainerStatus_state_terminated => io_k8s_api_core_v1_ContainerStatus_state_waiting)
	io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart => (io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_exec | io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_httpGet | io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_exec & io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_exec & io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_httpGet & io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_EphemeralContainer_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop => (io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_exec | io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_httpGet | io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_exec & io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_exec & io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_httpGet & io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_EphemeralContainer_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_EphemeralContainer_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_EphemeralContainer_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_EphemeralContainer_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_EphemeralContainer_livenessProbe_httpGet => (io_k8s_api_core_v1_EphemeralContainer_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_EphemeralContainer_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_EphemeralContainer_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_EphemeralContainer_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_EphemeralContainer_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_EphemeralContainer_livenessProbe_tcpSocket => (io_k8s_api_core_v1_EphemeralContainer_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_EphemeralContainer_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_EphemeralContainer_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_EphemeralContainer_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_EphemeralContainer_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_EphemeralContainer_ports_containerPort > 0 & io_k8s_api_core_v1_EphemeralContainer_ports_containerPort < 65536
	io_k8s_api_core_v1_EphemeralContainer_ports_hostPort > 0 & io_k8s_api_core_v1_EphemeralContainer_ports_hostPort < 65536
	io_k8s_api_core_v1_EphemeralContainer_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_EphemeralContainer_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_EphemeralContainer_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_EphemeralContainer_readinessProbe_httpGet => (io_k8s_api_core_v1_EphemeralContainer_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_EphemeralContainer_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_EphemeralContainer_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_EphemeralContainer_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_EphemeralContainer_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_EphemeralContainer_readinessProbe_tcpSocket => (io_k8s_api_core_v1_EphemeralContainer_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_EphemeralContainer_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_EphemeralContainer_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_EphemeralContainer_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_EphemeralContainer_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_EphemeralContainer_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_EphemeralContainer_securityContext_appArmorProfile
	io_k8s_api_core_v1_EphemeralContainer_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_EphemeralContainer_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_EphemeralContainer_securityContext_capabilities
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_EphemeralContainer_securityContext_privileged
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_EphemeralContainer_securityContext_procMount
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_EphemeralContainer_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_EphemeralContainer_securityContext_runAsGroup
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_EphemeralContainer_securityContext_runAsUser
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_EphemeralContainer_securityContext_seLinuxOptions
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_EphemeralContainer_securityContext_seccompProfile
	io_k8s_api_core_v1_EphemeralContainer_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_EphemeralContainer_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodSpec_os_name_linux => !io_k8s_api_core_v1_EphemeralContainer_securityContext_windowsOptions
	io_k8s_api_core_v1_EphemeralContainer_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_EphemeralContainer_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_EphemeralContainer_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_EphemeralContainer_startupProbe_httpGet => (io_k8s_api_core_v1_EphemeralContainer_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_EphemeralContainer_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_EphemeralContainer_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_EphemeralContainer_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_EphemeralContainer_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_EphemeralContainer_startupProbe_tcpSocket => (io_k8s_api_core_v1_EphemeralContainer_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_EphemeralContainer_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_EphemeralContainer_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_EphemeralContainer_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_EphemeralContainer_startupProbe_timeoutSeconds > 1
	(io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_EphemeralVolumeSource_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_core_v1_FlockerVolumeSource => (io_k8s_api_core_v1_FlockerVolumeSource_datasetUUID | io_k8s_api_core_v1_FlockerVolumeSource_datasetName) & !(io_k8s_api_core_v1_FlockerVolumeSource_datasetUUID & io_k8s_api_core_v1_FlockerVolumeSource_datasetName)
	io_k8s_api_core_v1_GRPCAction_port > 1 & io_k8s_api_core_v1_GRPCAction_port < 65535
	io_k8s_api_core_v1_HTTPGetAction => (io_k8s_api_core_v1_HTTPGetAction_port_asInteger > 1 & io_k8s_api_core_v1_HTTPGetAction_port_asInteger < 65535) | (io_k8s_api_core_v1_HTTPGetAction_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Lifecycle_postStart_httpGet => (io_k8s_api_core_v1_Lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_Lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_Lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Lifecycle_postStart => (io_k8s_api_core_v1_Lifecycle_postStart_exec | io_k8s_api_core_v1_Lifecycle_postStart_httpGet | io_k8s_api_core_v1_Lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_Lifecycle_postStart_exec & io_k8s_api_core_v1_Lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_Lifecycle_postStart_exec & io_k8s_api_core_v1_Lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_Lifecycle_postStart_httpGet & io_k8s_api_core_v1_Lifecycle_postStart_sleep) & !io_k8s_api_core_v1_Lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_Lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_Lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_Lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_Lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Lifecycle_preStop_httpGet => (io_k8s_api_core_v1_Lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_Lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_Lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Lifecycle_preStop => (io_k8s_api_core_v1_Lifecycle_preStop_exec | io_k8s_api_core_v1_Lifecycle_preStop_httpGet | io_k8s_api_core_v1_Lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_Lifecycle_preStop_exec & io_k8s_api_core_v1_Lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_Lifecycle_preStop_exec & io_k8s_api_core_v1_Lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_Lifecycle_preStop_httpGet & io_k8s_api_core_v1_Lifecycle_preStop_sleep) & !io_k8s_api_core_v1_Lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_Lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_Lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_Lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_Lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_LifecycleHandler_httpGet => (io_k8s_api_core_v1_LifecycleHandler_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_LifecycleHandler_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_LifecycleHandler_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_LifecycleHandler => (io_k8s_api_core_v1_LifecycleHandler_exec | io_k8s_api_core_v1_LifecycleHandler_httpGet | io_k8s_api_core_v1_LifecycleHandler_sleep) & !(io_k8s_api_core_v1_LifecycleHandler_exec & io_k8s_api_core_v1_LifecycleHandler_httpGet) & !(io_k8s_api_core_v1_LifecycleHandler_exec & io_k8s_api_core_v1_LifecycleHandler_sleep) & !(io_k8s_api_core_v1_LifecycleHandler_httpGet & io_k8s_api_core_v1_LifecycleHandler_sleep) & !io_k8s_api_core_v1_LifecycleHandler_tcpSocket
	io_k8s_api_core_v1_LifecycleHandler_tcpSocket => (io_k8s_api_core_v1_LifecycleHandler_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_LifecycleHandler_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_LifecycleHandler_tcpSocket_port_asString == 'IANA_SVC_NAME')
	(io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_NodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_core_v1_NodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchFields_values) | (io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchFields_values)| (io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_core_v1_NodeSelector_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_core_v1_NodeSelectorRequirement_operator_In | io_k8s_api_core_v1_NodeSelectorRequirement_operator_NotIn => io_k8s_api_core_v1_NodeSelectorRequirement_values) | (io_k8s_api_core_v1_NodeSelectorRequirement_operator_Exists |io_k8s_api_core_v1_NodeSelectorRequirement_operator_DoesNotExist => !io_k8s_api_core_v1_NodeSelectorRequirement_values)| (io_k8s_api_core_v1_NodeSelectorRequirement_operator_Gt |io_k8s_api_core_v1_NodeSelectorRequirement_operator_Lt => io_k8s_api_core_v1_NodeSelectorRequirement_values)
	(io_k8s_api_core_v1_NodeSelectorTerm_matchExpressions_operator_In | io_k8s_api_core_v1_NodeSelectorTerm_matchExpressions_operator_NotIn => io_k8s_api_core_v1_NodeSelectorTerm_matchExpressions_values) | (io_k8s_api_core_v1_NodeSelectorTerm_matchExpressions_operator_Exists |io_k8s_api_core_v1_NodeSelectorTerm_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_NodeSelectorTerm_matchExpressions_values)| (io_k8s_api_core_v1_NodeSelectorTerm_matchExpressions_operator_Gt |io_k8s_api_core_v1_NodeSelectorTerm_matchExpressions_operator_Lt => io_k8s_api_core_v1_NodeSelectorTerm_matchExpressions_values)
	(io_k8s_api_core_v1_NodeSelectorTerm_matchFields_operator_In | io_k8s_api_core_v1_NodeSelectorTerm_matchFields_operator_NotIn => io_k8s_api_core_v1_NodeSelectorTerm_matchFields_values) | (io_k8s_api_core_v1_NodeSelectorTerm_matchFields_operator_Exists |io_k8s_api_core_v1_NodeSelectorTerm_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_NodeSelectorTerm_matchFields_values)| (io_k8s_api_core_v1_NodeSelectorTerm_matchFields_operator_Gt |io_k8s_api_core_v1_NodeSelectorTerm_matchFields_operator_Lt => io_k8s_api_core_v1_NodeSelectorTerm_matchFields_values)
	io_k8s_api_core_v1_PersistentVolume_spec_flocker => (io_k8s_api_core_v1_PersistentVolume_spec_flocker_datasetUUID | io_k8s_api_core_v1_PersistentVolume_spec_flocker_datasetName) & !(io_k8s_api_core_v1_PersistentVolume_spec_flocker_datasetUUID & io_k8s_api_core_v1_PersistentVolume_spec_flocker_datasetName)
	(io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_values) | (io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_values)| (io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_core_v1_PersistentVolume_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_core_v1_PersistentVolumeClaim_spec_selector_matchExpressions_operator_In | io_k8s_api_core_v1_PersistentVolumeClaim_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PersistentVolumeClaim_spec_selector_matchExpressions_values) | (io_k8s_api_core_v1_PersistentVolumeClaim_spec_selector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PersistentVolumeClaim_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PersistentVolumeClaim_spec_selector_matchExpressions_values)
	(io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_selector_matchExpressions_operator_In | io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_selector_matchExpressions_values) | (io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_selector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PersistentVolumeClaimList_items_spec_selector_matchExpressions_values)
	(io_k8s_api_core_v1_PersistentVolumeClaimSpec_selector_matchExpressions_operator_In | io_k8s_api_core_v1_PersistentVolumeClaimSpec_selector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PersistentVolumeClaimSpec_selector_matchExpressions_values) | (io_k8s_api_core_v1_PersistentVolumeClaimSpec_selector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PersistentVolumeClaimSpec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PersistentVolumeClaimSpec_selector_matchExpressions_values)
	(io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PersistentVolumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_core_v1_PersistentVolumeList_items_spec_flocker => (io_k8s_api_core_v1_PersistentVolumeList_items_spec_flocker_datasetUUID | io_k8s_api_core_v1_PersistentVolumeList_items_spec_flocker_datasetName) & !(io_k8s_api_core_v1_PersistentVolumeList_items_spec_flocker_datasetUUID & io_k8s_api_core_v1_PersistentVolumeList_items_spec_flocker_datasetName)
	(io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_values) | (io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_values)| (io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_core_v1_PersistentVolumeList_items_spec_nodeAffinity_required_nodeSelectorTerms_matchFields_values)
	io_k8s_api_core_v1_PersistentVolumeSpec_flocker => (io_k8s_api_core_v1_PersistentVolumeSpec_flocker_datasetUUID | io_k8s_api_core_v1_PersistentVolumeSpec_flocker_datasetName) & !(io_k8s_api_core_v1_PersistentVolumeSpec_flocker_datasetUUID & io_k8s_api_core_v1_PersistentVolumeSpec_flocker_datasetName)
	(io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values) | (io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values)| (io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_core_v1_PersistentVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_core_v1_Pod_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Pod_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Pod_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart => (io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_exec | io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_exec & io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_exec & io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop => (io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_exec | io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_exec & io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_exec & io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_httpGet => (io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_Pod_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_Pod_spec_containers_ports_containerPort > 0 & io_k8s_api_core_v1_Pod_spec_containers_ports_containerPort < 65536
	io_k8s_api_core_v1_Pod_spec_containers_ports_hostPort > 0 & io_k8s_api_core_v1_Pod_spec_containers_ports_hostPort < 65536
	io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_httpGet => (io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_Pod_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_containers_securityContext_appArmorProfile
	io_k8s_api_core_v1_Pod_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_Pod_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_containers_securityContext_capabilities
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_containers_securityContext_privileged
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_containers_securityContext_procMount
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_containers_securityContext_runAsGroup
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_containers_securityContext_runAsUser
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_containers_securityContext_seccompProfile
	io_k8s_api_core_v1_Pod_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_Pod_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_Pod_spec_os_name_linux => !io_k8s_api_core_v1_Pod_spec_containers_securityContext_windowsOptions
	io_k8s_api_core_v1_Pod_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_Pod_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_Pod_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_Pod_spec_containers_startupProbe_httpGet => (io_k8s_api_core_v1_Pod_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_Pod_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_Pod_spec_containers_startupProbe_tcpSocket => (io_k8s_api_core_v1_Pod_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_Pod_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_core_v1_Pod_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_core_v1_Pod_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_Pod_spec_os_name_linux => !io_k8s_api_core_v1_Pod_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_Pod_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart => (io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop => (io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_Pod_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_Pod_spec_initContainers_ports_containerPort > 0 & io_k8s_api_core_v1_Pod_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_core_v1_Pod_spec_initContainers_ports_hostPort > 0 & io_k8s_api_core_v1_Pod_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_Pod_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_capabilities
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_privileged
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_procMount
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_runAsUser
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_Pod_spec_os_name_linux => !io_k8s_api_core_v1_Pod_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_httpGet => (io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_Pod_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_Pod_spec_resourceClaims_source => (io_k8s_api_core_v1_Pod_spec_resourceClaims_source_resourceClaimName | io_k8s_api_core_v1_Pod_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_core_v1_Pod_spec_resourceClaims_source_resourceClaimName & io_k8s_api_core_v1_Pod_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_securityContext_appArmorProfile
	io_k8s_api_core_v1_Pod_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_Pod_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_securityContext_fsGroup
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_securityContext_runAsGroup
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_securityContext_runAsUser
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_securityContext_seLinuxOptions
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_securityContext_seccompProfile
	io_k8s_api_core_v1_Pod_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_Pod_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_securityContext_supplementalGroups
	io_k8s_api_core_v1_Pod_spec_os_name_windows => !io_k8s_api_core_v1_Pod_spec_securityContext_sysctls
	io_k8s_api_core_v1_Pod_spec_os_name_linux => !io_k8s_api_core_v1_Pod_spec_securityContext_windowsOptions
	io_k8s_api_core_v1_Pod_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_core_v1_Pod_spec_tolerations_operator_Exists => !io_k8s_api_core_v1_Pod_spec_tolerations_value
	(io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Pod_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Pod_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_core_v1_Pod_spec_volumes_flocker => (io_k8s_api_core_v1_Pod_spec_volumes_flocker_datasetUUID | io_k8s_api_core_v1_Pod_spec_volumes_flocker_datasetName) & !(io_k8s_api_core_v1_Pod_spec_volumes_flocker_datasetUUID & io_k8s_api_core_v1_Pod_spec_volumes_flocker_datasetName)
	(io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Pod_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	io_k8s_api_core_v1_Pod_status_containerStatuses_lastState => (io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_waiting => !io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_running & !io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_terminated) & (io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_running => !io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_waiting & !io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_terminated) & (io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_terminated => !io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_waiting & !io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_running)& (!io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_running & !io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_terminated => io_k8s_api_core_v1_Pod_status_containerStatuses_lastState_waiting)
	io_k8s_api_core_v1_Pod_status_containerStatuses_state => (io_k8s_api_core_v1_Pod_status_containerStatuses_state_waiting => !io_k8s_api_core_v1_Pod_status_containerStatuses_state_running & !io_k8s_api_core_v1_Pod_status_containerStatuses_state_terminated) & (io_k8s_api_core_v1_Pod_status_containerStatuses_state_running => !io_k8s_api_core_v1_Pod_status_containerStatuses_state_waiting & !io_k8s_api_core_v1_Pod_status_containerStatuses_state_terminated) & (io_k8s_api_core_v1_Pod_status_containerStatuses_state_terminated => !io_k8s_api_core_v1_Pod_status_containerStatuses_state_waiting & !io_k8s_api_core_v1_Pod_status_containerStatuses_state_running)& (!io_k8s_api_core_v1_Pod_status_containerStatuses_state_running & !io_k8s_api_core_v1_Pod_status_containerStatuses_state_terminated => io_k8s_api_core_v1_Pod_status_containerStatuses_state_waiting)
	io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState => (io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_waiting => !io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_running & !io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_terminated) & (io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_running => !io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_waiting & !io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_terminated) & (io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_terminated => !io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_waiting & !io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_running)& (!io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_running & !io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_terminated => io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_lastState_waiting)
	io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state => (io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_waiting => !io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_running & !io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_terminated) & (io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_running => !io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_waiting & !io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_terminated) & (io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_terminated => !io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_waiting & !io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_running)& (!io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_running & !io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_terminated => io_k8s_api_core_v1_Pod_status_ephemeralContainerStatuses_state_waiting)
	io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState => (io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_waiting => !io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_running & !io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_terminated) & (io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_running => !io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_waiting & !io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_terminated) & (io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_terminated => !io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_waiting & !io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_running)& (!io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_running & !io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_terminated => io_k8s_api_core_v1_Pod_status_initContainerStatuses_lastState_waiting)
	io_k8s_api_core_v1_Pod_status_initContainerStatuses_state => (io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_waiting => !io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_running & !io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_terminated) & (io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_running => !io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_waiting & !io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_terminated) & (io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_terminated => !io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_waiting & !io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_running)& (!io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_running & !io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_terminated => io_k8s_api_core_v1_Pod_status_initContainerStatuses_state_waiting)
	(io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_PodAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodAffinityTerm_namespaceSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_PodAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_core_v1_PodList_items_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodList_items_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodList_items_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart => (io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_exec | io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop => (io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_exec | io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_httpGet => (io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_containers_ports_containerPort > 0 & io_k8s_api_core_v1_PodList_items_spec_containers_ports_containerPort < 65536
	io_k8s_api_core_v1_PodList_items_spec_containers_ports_hostPort > 0 & io_k8s_api_core_v1_PodList_items_spec_containers_ports_hostPort < 65536
	io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_httpGet => (io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_appArmorProfile
	io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_capabilities
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_privileged
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_procMount
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_runAsGroup
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_runAsUser
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_seccompProfile
	io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodList_items_spec_os_name_linux => !io_k8s_api_core_v1_PodList_items_spec_containers_securityContext_windowsOptions
	io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_httpGet => (io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_tcpSocket => (io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodList_items_spec_os_name_linux => !io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart => (io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop => (io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_initContainers_ports_containerPort > 0 & io_k8s_api_core_v1_PodList_items_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_core_v1_PodList_items_spec_initContainers_ports_hostPort > 0 & io_k8s_api_core_v1_PodList_items_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_capabilities
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_privileged
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_procMount
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_runAsUser
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodList_items_spec_os_name_linux => !io_k8s_api_core_v1_PodList_items_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_httpGet => (io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodList_items_spec_resourceClaims_source => (io_k8s_api_core_v1_PodList_items_spec_resourceClaims_source_resourceClaimName | io_k8s_api_core_v1_PodList_items_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_core_v1_PodList_items_spec_resourceClaims_source_resourceClaimName & io_k8s_api_core_v1_PodList_items_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_securityContext_appArmorProfile
	io_k8s_api_core_v1_PodList_items_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_PodList_items_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_securityContext_fsGroup
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_securityContext_runAsGroup
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_securityContext_runAsUser
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_securityContext_seLinuxOptions
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_securityContext_seccompProfile
	io_k8s_api_core_v1_PodList_items_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_PodList_items_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_securityContext_supplementalGroups
	io_k8s_api_core_v1_PodList_items_spec_os_name_windows => !io_k8s_api_core_v1_PodList_items_spec_securityContext_sysctls
	io_k8s_api_core_v1_PodList_items_spec_os_name_linux => !io_k8s_api_core_v1_PodList_items_spec_securityContext_windowsOptions
	io_k8s_api_core_v1_PodList_items_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_core_v1_PodList_items_spec_tolerations_operator_Exists => !io_k8s_api_core_v1_PodList_items_spec_tolerations_value
	(io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodList_items_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodList_items_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_core_v1_PodList_items_spec_volumes_flocker => (io_k8s_api_core_v1_PodList_items_spec_volumes_flocker_datasetUUID | io_k8s_api_core_v1_PodList_items_spec_volumes_flocker_datasetName) & !(io_k8s_api_core_v1_PodList_items_spec_volumes_flocker_datasetUUID & io_k8s_api_core_v1_PodList_items_spec_volumes_flocker_datasetName)
	(io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodList_items_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState => (io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_waiting => !io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_running & !io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_terminated) & (io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_running => !io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_waiting & !io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_terminated) & (io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_terminated => !io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_waiting & !io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_running)& (!io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_running & !io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_terminated => io_k8s_api_core_v1_PodList_items_status_containerStatuses_lastState_waiting)
	io_k8s_api_core_v1_PodList_items_status_containerStatuses_state => (io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_waiting => !io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_running & !io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_terminated) & (io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_running => !io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_waiting & !io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_terminated) & (io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_terminated => !io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_waiting & !io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_running)& (!io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_running & !io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_terminated => io_k8s_api_core_v1_PodList_items_status_containerStatuses_state_waiting)
	io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState => (io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_waiting => !io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_running & !io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_terminated) & (io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_running => !io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_waiting & !io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_terminated) & (io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_terminated => !io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_waiting & !io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_running)& (!io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_running & !io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_terminated => io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_lastState_waiting)
	io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state => (io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_waiting => !io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_running & !io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_terminated) & (io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_running => !io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_waiting & !io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_terminated) & (io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_terminated => !io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_waiting & !io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_running)& (!io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_running & !io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_terminated => io_k8s_api_core_v1_PodList_items_status_ephemeralContainerStatuses_state_waiting)
	io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState => (io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_waiting => !io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_running & !io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_terminated) & (io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_running => !io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_waiting & !io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_terminated) & (io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_terminated => !io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_waiting & !io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_running)& (!io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_running & !io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_terminated => io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_lastState_waiting)
	io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state => (io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_waiting => !io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_running & !io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_terminated) & (io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_running => !io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_waiting & !io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_terminated) & (io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_terminated => !io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_waiting & !io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_running)& (!io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_running & !io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_terminated => io_k8s_api_core_v1_PodList_items_status_initContainerStatuses_state_waiting)
	io_k8s_api_core_v1_PodResourceClaim_source => (io_k8s_api_core_v1_PodResourceClaim_source_resourceClaimName | io_k8s_api_core_v1_PodResourceClaim_source_resourceClaimTemplateName) & !(io_k8s_api_core_v1_PodResourceClaim_source_resourceClaimName & io_k8s_api_core_v1_PodResourceClaim_source_resourceClaimTemplateName)
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSecurityContext_appArmorProfile
	io_k8s_api_core_v1_PodSecurityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_PodSecurityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSecurityContext_fsGroup
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSecurityContext_fsGroupChangePolicy
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSecurityContext_runAsGroup
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSecurityContext_runAsUser
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSecurityContext_seLinuxOptions
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSecurityContext_seccompProfile
	io_k8s_api_core_v1_PodSecurityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_PodSecurityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSecurityContext_supplementalGroups
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSecurityContext_sysctls
	io_k8s_api_core_v1_PodSpec_os_name_linux => !io_k8s_api_core_v1_PodSecurityContext_windowsOptions
	(io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_core_v1_PodSpec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_PodSpec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodSpec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodSpec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart => (io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_exec | io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop => (io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_exec | io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodSpec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodSpec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodSpec_containers_livenessProbe_httpGet => (io_k8s_api_core_v1_PodSpec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodSpec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodSpec_containers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_PodSpec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodSpec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodSpec_containers_ports_containerPort > 0 & io_k8s_api_core_v1_PodSpec_containers_ports_containerPort < 65536
	io_k8s_api_core_v1_PodSpec_containers_ports_hostPort > 0 & io_k8s_api_core_v1_PodSpec_containers_ports_hostPort < 65536
	io_k8s_api_core_v1_PodSpec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodSpec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodSpec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodSpec_containers_readinessProbe_httpGet => (io_k8s_api_core_v1_PodSpec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodSpec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodSpec_containers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_PodSpec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodSpec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_containers_securityContext_appArmorProfile
	io_k8s_api_core_v1_PodSpec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_PodSpec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_containers_securityContext_capabilities
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_containers_securityContext_privileged
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_containers_securityContext_procMount
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_containers_securityContext_runAsGroup
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_containers_securityContext_runAsUser
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_containers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_containers_securityContext_seccompProfile
	io_k8s_api_core_v1_PodSpec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_PodSpec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodSpec_os_name_linux => !io_k8s_api_core_v1_PodSpec_containers_securityContext_windowsOptions
	io_k8s_api_core_v1_PodSpec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodSpec_containers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_PodSpec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodSpec_containers_startupProbe_httpGet => (io_k8s_api_core_v1_PodSpec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodSpec_containers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_PodSpec_containers_startupProbe_tcpSocket => (io_k8s_api_core_v1_PodSpec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodSpec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_core_v1_PodSpec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_core_v1_PodSpec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_privileged
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_procMount
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodSpec_os_name_linux => !io_k8s_api_core_v1_PodSpec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodSpec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart => (io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_exec | io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop => (io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_exec | io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_httpGet => (io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodSpec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodSpec_initContainers_ports_containerPort > 0 & io_k8s_api_core_v1_PodSpec_initContainers_ports_containerPort < 65536
	io_k8s_api_core_v1_PodSpec_initContainers_ports_hostPort > 0 & io_k8s_api_core_v1_PodSpec_initContainers_ports_hostPort < 65536
	io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_httpGet => (io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodSpec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_initContainers_securityContext_appArmorProfile
	io_k8s_api_core_v1_PodSpec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_PodSpec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_initContainers_securityContext_capabilities
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_initContainers_securityContext_privileged
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_initContainers_securityContext_procMount
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_initContainers_securityContext_runAsGroup
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_initContainers_securityContext_runAsUser
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_initContainers_securityContext_seccompProfile
	io_k8s_api_core_v1_PodSpec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_PodSpec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodSpec_os_name_linux => !io_k8s_api_core_v1_PodSpec_initContainers_securityContext_windowsOptions
	io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_httpGet => (io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_tcpSocket => (io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodSpec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodSpec_resourceClaims_source => (io_k8s_api_core_v1_PodSpec_resourceClaims_source_resourceClaimName | io_k8s_api_core_v1_PodSpec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_core_v1_PodSpec_resourceClaims_source_resourceClaimName & io_k8s_api_core_v1_PodSpec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_securityContext_appArmorProfile
	io_k8s_api_core_v1_PodSpec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_PodSpec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_securityContext_fsGroup
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_securityContext_fsGroupChangePolicy
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_securityContext_runAsGroup
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_securityContext_runAsUser
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_securityContext_seLinuxOptions
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_securityContext_seccompProfile
	io_k8s_api_core_v1_PodSpec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_PodSpec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_securityContext_supplementalGroups
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_PodSpec_securityContext_sysctls
	io_k8s_api_core_v1_PodSpec_os_name_linux => !io_k8s_api_core_v1_PodSpec_securityContext_windowsOptions
	io_k8s_api_core_v1_PodSpec_terminationGracePeriodSeconds > 0
	io_k8s_api_core_v1_PodSpec_tolerations_operator_Exists => !io_k8s_api_core_v1_PodSpec_tolerations_value
	(io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodSpec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodSpec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_core_v1_PodSpec_volumes_flocker => (io_k8s_api_core_v1_PodSpec_volumes_flocker_datasetUUID | io_k8s_api_core_v1_PodSpec_volumes_flocker_datasetName) & !(io_k8s_api_core_v1_PodSpec_volumes_flocker_datasetUUID & io_k8s_api_core_v1_PodSpec_volumes_flocker_datasetName)
	(io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodSpec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	io_k8s_api_core_v1_PodStatus_containerStatuses_lastState => (io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_waiting => !io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_running & !io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_terminated) & (io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_running => !io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_waiting & !io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_terminated) & (io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_terminated => !io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_waiting & !io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_running)& (!io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_running & !io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_terminated => io_k8s_api_core_v1_PodStatus_containerStatuses_lastState_waiting)
	io_k8s_api_core_v1_PodStatus_containerStatuses_state => (io_k8s_api_core_v1_PodStatus_containerStatuses_state_waiting => !io_k8s_api_core_v1_PodStatus_containerStatuses_state_running & !io_k8s_api_core_v1_PodStatus_containerStatuses_state_terminated) & (io_k8s_api_core_v1_PodStatus_containerStatuses_state_running => !io_k8s_api_core_v1_PodStatus_containerStatuses_state_waiting & !io_k8s_api_core_v1_PodStatus_containerStatuses_state_terminated) & (io_k8s_api_core_v1_PodStatus_containerStatuses_state_terminated => !io_k8s_api_core_v1_PodStatus_containerStatuses_state_waiting & !io_k8s_api_core_v1_PodStatus_containerStatuses_state_running)& (!io_k8s_api_core_v1_PodStatus_containerStatuses_state_running & !io_k8s_api_core_v1_PodStatus_containerStatuses_state_terminated => io_k8s_api_core_v1_PodStatus_containerStatuses_state_waiting)
	io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState => (io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_waiting => !io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_running & !io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_terminated) & (io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_running => !io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_waiting & !io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_terminated) & (io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_terminated => !io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_waiting & !io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_running)& (!io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_running & !io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_terminated => io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_lastState_waiting)
	io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state => (io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_waiting => !io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_running & !io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_terminated) & (io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_running => !io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_waiting & !io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_terminated) & (io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_terminated => !io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_waiting & !io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_running)& (!io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_running & !io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_terminated => io_k8s_api_core_v1_PodStatus_ephemeralContainerStatuses_state_waiting)
	io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState => (io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_waiting => !io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_running & !io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_terminated) & (io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_running => !io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_waiting & !io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_terminated) & (io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_terminated => !io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_waiting & !io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_running)& (!io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_running & !io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_terminated => io_k8s_api_core_v1_PodStatus_initContainerStatuses_lastState_waiting)
	io_k8s_api_core_v1_PodStatus_initContainerStatuses_state => (io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_waiting => !io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_running & !io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_terminated) & (io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_running => !io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_waiting & !io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_terminated) & (io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_terminated => !io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_waiting & !io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_running)& (!io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_running & !io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_terminated => io_k8s_api_core_v1_PodStatus_initContainerStatuses_state_waiting)
	(io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_core_v1_PodTemplate_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplate_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart => (io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop => (io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_ports_containerPort > 0 & io_k8s_api_core_v1_PodTemplate_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_ports_hostPort > 0 & io_k8s_api_core_v1_PodTemplate_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_capabilities
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_privileged
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_procMount
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_runAsUser
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_linux => !io_k8s_api_core_v1_PodTemplate_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_httpGet => (io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_linux => !io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_privileged
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_procMount
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_linux => !io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplate_template_spec_resourceClaims_source => (io_k8s_api_core_v1_PodTemplate_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_core_v1_PodTemplate_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_core_v1_PodTemplate_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_core_v1_PodTemplate_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_appArmorProfile
	io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_fsGroup
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_runAsGroup
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_runAsUser
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_seLinuxOptions
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_seccompProfile
	io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_supplementalGroups
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_sysctls
	io_k8s_api_core_v1_PodTemplate_template_spec_os_name_linux => !io_k8s_api_core_v1_PodTemplate_template_spec_securityContext_windowsOptions
	io_k8s_api_core_v1_PodTemplate_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_core_v1_PodTemplate_template_spec_tolerations_operator_Exists => !io_k8s_api_core_v1_PodTemplate_template_spec_tolerations_value
	(io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplate_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplate_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_core_v1_PodTemplate_template_spec_volumes_flocker => (io_k8s_api_core_v1_PodTemplate_template_spec_volumes_flocker_datasetUUID | io_k8s_api_core_v1_PodTemplate_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_core_v1_PodTemplate_template_spec_volumes_flocker_datasetUUID & io_k8s_api_core_v1_PodTemplate_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplate_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_ports_containerPort > 0 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_ports_hostPort > 0 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_capabilities
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_privileged
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_procMount
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_runAsUser
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_linux => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_httpGet => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_linux => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_privileged
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_procMount
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_linux => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_resourceClaims_source => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_core_v1_PodTemplateList_items_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_core_v1_PodTemplateList_items_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_core_v1_PodTemplateList_items_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_appArmorProfile
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_fsGroup
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_runAsGroup
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_runAsUser
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_seLinuxOptions
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_seccompProfile
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_supplementalGroups
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_sysctls
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_os_name_linux => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_securityContext_windowsOptions
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_tolerations_operator_Exists => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_tolerations_value
	(io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_flocker => (io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_flocker_datasetUUID | io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_flocker_datasetUUID & io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateList_items_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateSpec_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart => (io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_exec | io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop => (io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_exec | io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_httpGet => (io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_ports_containerPort > 0 & io_k8s_api_core_v1_PodTemplateSpec_spec_containers_ports_containerPort < 65536
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_ports_hostPort > 0 & io_k8s_api_core_v1_PodTemplateSpec_spec_containers_ports_hostPort < 65536
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_httpGet => (io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_appArmorProfile
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_capabilities
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_privileged
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_procMount
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_runAsGroup
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_runAsUser
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_seccompProfile
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_linux => !io_k8s_api_core_v1_PodTemplateSpec_spec_containers_securityContext_windowsOptions
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_httpGet => (io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_linux => !io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart => (io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop => (io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_ports_containerPort > 0 & io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_ports_hostPort > 0 & io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_capabilities
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_privileged
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_procMount
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_runAsUser
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_linux => !io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_httpGet => (io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_PodTemplateSpec_spec_resourceClaims_source => (io_k8s_api_core_v1_PodTemplateSpec_spec_resourceClaims_source_resourceClaimName | io_k8s_api_core_v1_PodTemplateSpec_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_core_v1_PodTemplateSpec_spec_resourceClaims_source_resourceClaimName & io_k8s_api_core_v1_PodTemplateSpec_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_appArmorProfile
	io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_fsGroup
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_runAsGroup
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_runAsUser
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_seLinuxOptions
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_seccompProfile
	io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_supplementalGroups
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_windows => !io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_sysctls
	io_k8s_api_core_v1_PodTemplateSpec_spec_os_name_linux => !io_k8s_api_core_v1_PodTemplateSpec_spec_securityContext_windowsOptions
	io_k8s_api_core_v1_PodTemplateSpec_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_core_v1_PodTemplateSpec_spec_tolerations_operator_Exists => !io_k8s_api_core_v1_PodTemplateSpec_spec_tolerations_value
	(io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateSpec_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_flocker => (io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_flocker_datasetUUID | io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_flocker_datasetName) & !(io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_flocker_datasetUUID & io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_flocker_datasetName)
	(io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PodTemplateSpec_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchExpressions_operator_In | io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchExpressions_operator_NotIn => io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchExpressions_values) | (io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchExpressions_operator_Exists |io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchExpressions_values)| (io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchExpressions_operator_Gt |io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchExpressions_operator_Lt => io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchExpressions_values)
	(io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchFields_operator_In | io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchFields_operator_NotIn => io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchFields_values) | (io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchFields_operator_Exists |io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchFields_values)| (io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchFields_operator_Gt |io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchFields_operator_Lt => io_k8s_api_core_v1_PreferredSchedulingTerm_preference_matchFields_values)
	io_k8s_api_core_v1_PreferredSchedulingTerm_weight > 1 & io_k8s_api_core_v1_PreferredSchedulingTerm_weight < 100
	io_k8s_api_core_v1_Probe_failureThreshold > 1
	io_k8s_api_core_v1_Probe_grpc_port > 1 & io_k8s_api_core_v1_Probe_grpc_port < 65535
	io_k8s_api_core_v1_Probe_httpGet => (io_k8s_api_core_v1_Probe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_Probe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_Probe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Probe_periodSeconds > 1
	io_k8s_api_core_v1_Probe_successThreshold > 1
	io_k8s_api_core_v1_Probe_tcpSocket => (io_k8s_api_core_v1_Probe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_Probe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_Probe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Probe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_Probe_timeoutSeconds > 1
	(io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ProjectedVolumeSource_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationController_spec_template_spec_restartPolicy_Always => io_k8s_api_core_v1_ReplicationController_spec_template) & (!io_k8s_api_core_v1_ReplicationController_spec_template_spec_restartPolicy_Never) & (!io_k8s_api_core_v1_ReplicationController_spec_template_spec_restartPolicy_OnFailure)
	(io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_ports_containerPort > 0 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_ports_hostPort > 0 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_capabilities
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_privileged
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_procMount
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_runAsUser
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_linux => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_httpGet => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_linux => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_privileged
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_procMount
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_linux => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_resourceClaims_source => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_core_v1_ReplicationController_spec_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_core_v1_ReplicationController_spec_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_core_v1_ReplicationController_spec_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_appArmorProfile
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_fsGroup
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_runAsGroup
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_runAsUser
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_seLinuxOptions
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_seccompProfile
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_supplementalGroups
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_sysctls
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_os_name_linux => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_securityContext_windowsOptions
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_tolerations_operator_Exists => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_tolerations_value
	(io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_flocker => (io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_flocker_datasetUUID | io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_flocker_datasetUUID & io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationController_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_restartPolicy_Always => io_k8s_api_core_v1_ReplicationControllerList_items_spec_template) & (!io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_restartPolicy_Never) & (!io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_restartPolicy_OnFailure)
	(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_ports_containerPort > 0 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_ports_hostPort > 0 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_capabilities
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_privileged
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_procMount
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_runAsUser
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_linux => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_httpGet => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_linux => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_privileged
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_procMount
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_linux => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_resourceClaims_source => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_appArmorProfile
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_fsGroup
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_runAsGroup
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_runAsUser
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_seLinuxOptions
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_seccompProfile
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_supplementalGroups
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_sysctls
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_os_name_linux => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_securityContext_windowsOptions
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_tolerations_operator_Exists => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_tolerations_value
	(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_flocker => (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_flocker_datasetUUID | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_flocker_datasetUUID & io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerList_items_spec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_restartPolicy_Always => io_k8s_api_core_v1_ReplicationControllerSpec_template) & (!io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_restartPolicy_Never) & (!io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_restartPolicy_OnFailure)
	(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)| (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Gt |io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_operator_Lt => io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_In | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Exists |io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)| (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Gt |io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_operator_Lt => io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_preference_matchFields_values)
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)| (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_nodeAffinity_requiredDuringSchedulingIgnoredDuringExecution_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_preferredDuringSchedulingIgnoredDuringExecution_weight < 100
	(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_affinity_podAntiAffinity_requiredDuringSchedulingIgnoredDuringExecution_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_exec | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_exec & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_exec | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_exec & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_httpGet => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_ports_containerPort > 0 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_ports_containerPort < 65536
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_ports_hostPort > 0 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_ports_hostPort < 65536
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_httpGet => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_appArmorProfile
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_capabilities
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_privileged
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_procMount
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_runAsGroup
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_runAsUser
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_seccompProfile
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_linux => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_securityContext_windowsOptions
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_httpGet => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_containers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_httpGet => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_ports_containerPort > 0 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_ports_containerPort < 65536
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_ports_hostPort > 0 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_ports_hostPort < 65536
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_httpGet => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_capabilities
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_privileged
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_procMount
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_runAsGroup
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_runAsUser
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_seccompProfile
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_linux => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_securityContext_windowsOptions
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_httpGet => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_ephemeralContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_httpGet => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_exec | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_httpGet | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_httpGet) & !(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_exec & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_sleep) & !(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_httpGet & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_sleep) & !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_postStart_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_httpGet => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_exec | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_httpGet | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_httpGet) & !(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_exec & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_sleep) & !(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_httpGet & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_sleep) & !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_lifecycle_preStop_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_httpGet => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_livenessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_ports_containerPort > 0 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_ports_containerPort < 65536
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_ports_hostPort > 0 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_ports_hostPort < 65536
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_httpGet => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_readinessProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_appArmorProfile
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_capabilities
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_privileged
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_procMount
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_runAsGroup
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_runAsUser
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_seLinuxOptions
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_seccompProfile
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_linux => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_securityContext_windowsOptions
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_failureThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_grpc_port > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_grpc_port < 65535
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_httpGet => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_httpGet_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_httpGet_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_httpGet_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_periodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_successThreshold > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_tcpSocket => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger > 1 & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asInteger < 65535) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_tcpSocket_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_terminationGracePeriodSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_initContainers_startupProbe_timeoutSeconds > 1
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_resourceClaims_source => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_resourceClaims_source_resourceClaimName | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_resourceClaims_source_resourceClaimTemplateName) & !(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_resourceClaims_source_resourceClaimName & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_resourceClaims_source_resourceClaimTemplateName)
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_appArmorProfile
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_fsGroup
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_fsGroupChangePolicy
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_runAsGroup
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_runAsUser
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_seLinuxOptions
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_seccompProfile
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_supplementalGroups
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_windows => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_sysctls
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_os_name_linux => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_securityContext_windowsOptions
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_terminationGracePeriodSeconds > 0
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_tolerations_operator_Exists => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_tolerations_value
	(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_topologySpreadConstraints_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_flocker => (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_flocker_datasetUUID | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_flocker_datasetName) & !(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_flocker_datasetUUID & io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_flocker_datasetName)
	(io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ReplicationControllerSpec_template_spec_volumes_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ResourceQuota_spec_scopeSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ResourceQuota_spec_scopeSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ResourceQuota_spec_scopeSelector_matchExpressions_values) | (io_k8s_api_core_v1_ResourceQuota_spec_scopeSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ResourceQuota_spec_scopeSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ResourceQuota_spec_scopeSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ResourceQuotaList_items_spec_scopeSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ResourceQuotaList_items_spec_scopeSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ResourceQuotaList_items_spec_scopeSelector_matchExpressions_values) | (io_k8s_api_core_v1_ResourceQuotaList_items_spec_scopeSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ResourceQuotaList_items_spec_scopeSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ResourceQuotaList_items_spec_scopeSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ResourceQuotaSpec_scopeSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ResourceQuotaSpec_scopeSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ResourceQuotaSpec_scopeSelector_matchExpressions_values) | (io_k8s_api_core_v1_ResourceQuotaSpec_scopeSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ResourceQuotaSpec_scopeSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ResourceQuotaSpec_scopeSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ScopeSelector_matchExpressions_operator_In | io_k8s_api_core_v1_ScopeSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_ScopeSelector_matchExpressions_values) | (io_k8s_api_core_v1_ScopeSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_ScopeSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_ScopeSelector_matchExpressions_values)
	(io_k8s_api_core_v1_ScopedResourceSelectorRequirement_operator_In | io_k8s_api_core_v1_ScopedResourceSelectorRequirement_operator_NotIn => io_k8s_api_core_v1_ScopedResourceSelectorRequirement_values) | (io_k8s_api_core_v1_ScopedResourceSelectorRequirement_operator_Exists |io_k8s_api_core_v1_ScopedResourceSelectorRequirement_operator_DoesNotExist => !io_k8s_api_core_v1_ScopedResourceSelectorRequirement_values)
	io_k8s_api_core_v1_SeccompProfile_type_Localhost <=> io_k8s_api_core_v1_SeccompProfile_localhostProfile
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_SecurityContext_allowPrivilegeEscalation
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_SecurityContext_appArmorProfile
	io_k8s_api_core_v1_SecurityContext_appArmorProfile_type_Localhost <=> io_k8s_api_core_v1_SecurityContext_appArmorProfile_localhostProfile
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_SecurityContext_capabilities
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_SecurityContext_privileged
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_SecurityContext_procMount
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_SecurityContext_readOnlyRootFilesystem
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_SecurityContext_runAsGroup
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_SecurityContext_runAsUser
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_SecurityContext_seLinuxOptions
	io_k8s_api_core_v1_PodSpec_os_name_windows => !io_k8s_api_core_v1_SecurityContext_seccompProfile
	io_k8s_api_core_v1_SecurityContext_seccompProfile_type_Localhost <=> io_k8s_api_core_v1_SecurityContext_seccompProfile_localhostProfile
	io_k8s_api_core_v1_PodSpec_os_name_linux => !io_k8s_api_core_v1_SecurityContext_windowsOptions
	io_k8s_api_core_v1_Service_spec_ports => (io_k8s_api_core_v1_Service_spec_ports_targetPort_asInteger > 1 & io_k8s_api_core_v1_Service_spec_ports_targetPort_asInteger < 65535) | (io_k8s_api_core_v1_Service_spec_ports_targetPort_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ServiceList_items_spec_ports => (io_k8s_api_core_v1_ServiceList_items_spec_ports_targetPort_asInteger > 1 & io_k8s_api_core_v1_ServiceList_items_spec_ports_targetPort_asInteger < 65535) | (io_k8s_api_core_v1_ServiceList_items_spec_ports_targetPort_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ServicePort => (io_k8s_api_core_v1_ServicePort_targetPort_asInteger > 1 & io_k8s_api_core_v1_ServicePort_targetPort_asInteger < 65535) | (io_k8s_api_core_v1_ServicePort_targetPort_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_ServiceSpec_ports => (io_k8s_api_core_v1_ServiceSpec_ports_targetPort_asInteger > 1 & io_k8s_api_core_v1_ServiceSpec_ports_targetPort_asInteger < 65535) | (io_k8s_api_core_v1_ServiceSpec_ports_targetPort_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_TCPSocketAction => (io_k8s_api_core_v1_TCPSocketAction_port_asInteger > 1 & io_k8s_api_core_v1_TCPSocketAction_port_asInteger < 65535) | (io_k8s_api_core_v1_TCPSocketAction_port_asString == 'IANA_SVC_NAME')
	io_k8s_api_core_v1_Toleration_operator_Exists => !io_k8s_api_core_v1_Toleration_value
	(io_k8s_api_core_v1_TopologySpreadConstraint_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_TopologySpreadConstraint_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_TopologySpreadConstraint_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_TopologySpreadConstraint_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_TopologySpreadConstraint_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_TopologySpreadConstraint_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_In | io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values) | (io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_Exists |io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Volume_ephemeral_volumeClaimTemplate_spec_selector_matchExpressions_values)
	io_k8s_api_core_v1_Volume_flocker => (io_k8s_api_core_v1_Volume_flocker_datasetUUID | io_k8s_api_core_v1_Volume_flocker_datasetName) & !(io_k8s_api_core_v1_Volume_flocker_datasetUUID & io_k8s_api_core_v1_Volume_flocker_datasetName)
	(io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_Volume_projected_sources_clusterTrustBundle_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchFields_values) | (io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchFields_values)| (io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_core_v1_VolumeNodeAffinity_required_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_VolumeProjection_clusterTrustBundle_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_labelSelector_matchExpressions_operator_In | io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_labelSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_labelSelector_matchExpressions_values) | (io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_labelSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_labelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_labelSelector_matchExpressions_values)
	(io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_namespaceSelector_matchExpressions_operator_In | io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_namespaceSelector_matchExpressions_values) | (io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_core_v1_WeightedPodAffinityTerm_podAffinityTerm_namespaceSelector_matchExpressions_values)
	io_k8s_api_core_v1_WeightedPodAffinityTerm_weight > 1 & io_k8s_api_core_v1_WeightedPodAffinityTerm_weight < 100
	io_k8s_api_flowcontrol_v1_ExemptPriorityLevelConfiguration_lendablePercent > 0 & io_k8s_api_flowcontrol_v1_ExemptPriorityLevelConfiguration_lendablePercent < 100
	io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules => io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_resourceRules | io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_nonResourceRules
	(io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_subjects_kind == 'Group' => io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_subjects_group) | (io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_subjects_kind == 'ServiceAccount' => io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_subjects_serviceAccount) | (io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_subjects_kind == 'User' => io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_subjects_user) & !(io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_subjects_group & io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_subjects_serviceAccount) & !(io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_subjects_serviceAccount & io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_subjects_user) & !(io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_subjects_group & io_k8s_api_flowcontrol_v1_FlowSchema_spec_rules_subjects_user)
	io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules => io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_resourceRules | io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_nonResourceRules
	(io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_subjects_kind == 'Group' => io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_subjects_group) | (io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_subjects_kind == 'ServiceAccount' => io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_subjects_serviceAccount) | (io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_subjects_kind == 'User' => io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_subjects_user) & !(io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_subjects_group & io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_subjects_serviceAccount) & !(io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_subjects_serviceAccount & io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_subjects_user) & !(io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_subjects_group & io_k8s_api_flowcontrol_v1_FlowSchemaList_items_spec_rules_subjects_user)
	io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules => io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_resourceRules | io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_nonResourceRules
	(io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_subjects_kind == 'Group' => io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_subjects_group) | (io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_subjects_kind == 'ServiceAccount' => io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_subjects_serviceAccount) | (io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_subjects_kind == 'User' => io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_subjects_user) & !(io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_subjects_group & io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_subjects_serviceAccount) & !(io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_subjects_serviceAccount & io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_subjects_user) & !(io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_subjects_group & io_k8s_api_flowcontrol_v1_FlowSchemaSpec_rules_subjects_user)
	io_k8s_api_flowcontrol_v1_LimitResponse_type_Queue <=> io_k8s_api_flowcontrol_v1_LimitResponse_queuing
	io_k8s_api_flowcontrol_v1_LimitedPriorityLevelConfiguration_lendablePercent > 0 & io_k8s_api_flowcontrol_v1_LimitedPriorityLevelConfiguration_lendablePercent < 100
	io_k8s_api_flowcontrol_v1_LimitedPriorityLevelConfiguration_limitResponse_type_Queue <=> io_k8s_api_flowcontrol_v1_LimitedPriorityLevelConfiguration_limitResponse_queuing
	io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects => io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_resourceRules | io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_nonResourceRules
	(io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_subjects_kind == 'Group' => io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_subjects_group) | (io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_subjects_kind == 'ServiceAccount' => io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_subjects_serviceAccount) | (io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_subjects_kind == 'User' => io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_subjects_user) & !(io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_subjects_group & io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_subjects_serviceAccount) & !(io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_subjects_serviceAccount & io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_subjects_user) & !(io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_subjects_group & io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects_subjects_user)
	(io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_type_Limited => !io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_exempt) | (io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_type_Exempt => io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_exempt)
	io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_exempt_lendablePercent > 0 & io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_exempt_lendablePercent < 100
	io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_type_Limited => io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_limited
	io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_limited_lendablePercent > 0 & io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_limited_lendablePercent < 100
	io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_limited_limitResponse_type_Queue <=> io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration_spec_limited_limitResponse_queuing
	(io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_type_Limited => !io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_exempt) | (io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_type_Exempt => io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_exempt)
	io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_exempt_lendablePercent > 0 & io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_exempt_lendablePercent < 100
	io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_type_Limited => io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_limited
	io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_limited_lendablePercent > 0 & io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_limited_lendablePercent < 100
	io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_limited_limitResponse_type_Queue <=> io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList_items_spec_limited_limitResponse_queuing
	(io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_type_Limited => !io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_exempt) | (io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_type_Exempt => io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_exempt)
	io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_exempt_lendablePercent > 0 & io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_exempt_lendablePercent < 100
	io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_type_Limited => io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_limited
	io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_limited_lendablePercent > 0 & io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_limited_lendablePercent < 100
	io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_limited_limitResponse_type_Queue <=> io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec_limited_limitResponse_queuing
	(io_k8s_api_flowcontrol_v1_Subject_kind == 'Group' => io_k8s_api_flowcontrol_v1_Subject_group) | (io_k8s_api_flowcontrol_v1_Subject_kind == 'ServiceAccount' => io_k8s_api_flowcontrol_v1_Subject_serviceAccount) | (io_k8s_api_flowcontrol_v1_Subject_kind == 'User' => io_k8s_api_flowcontrol_v1_Subject_user) & !(io_k8s_api_flowcontrol_v1_Subject_group & io_k8s_api_flowcontrol_v1_Subject_serviceAccount) & !(io_k8s_api_flowcontrol_v1_Subject_serviceAccount & io_k8s_api_flowcontrol_v1_Subject_user) & !(io_k8s_api_flowcontrol_v1_Subject_group & io_k8s_api_flowcontrol_v1_Subject_user)
	io_k8s_api_flowcontrol_v1beta3_ExemptPriorityLevelConfiguration_lendablePercent > 0 & io_k8s_api_flowcontrol_v1beta3_ExemptPriorityLevelConfiguration_lendablePercent < 100
	io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules => io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_resourceRules | io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_nonResourceRules
	(io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_subjects_kind == 'Group' => io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_subjects_group) | (io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_subjects_kind == 'ServiceAccount' => io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_subjects_serviceAccount) | (io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_subjects_kind == 'User' => io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_subjects_user) & !(io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_subjects_group & io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_subjects_serviceAccount) & !(io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_subjects_serviceAccount & io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_subjects_user) & !(io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_subjects_group & io_k8s_api_flowcontrol_v1beta3_FlowSchema_spec_rules_subjects_user)
	io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules => io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_resourceRules | io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_nonResourceRules
	(io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_subjects_kind == 'Group' => io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_subjects_group) | (io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_subjects_kind == 'ServiceAccount' => io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_subjects_serviceAccount) | (io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_subjects_kind == 'User' => io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_subjects_user) & !(io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_subjects_group & io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_subjects_serviceAccount) & !(io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_subjects_serviceAccount & io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_subjects_user) & !(io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_subjects_group & io_k8s_api_flowcontrol_v1beta3_FlowSchemaList_items_spec_rules_subjects_user)
	io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules => io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_resourceRules | io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_nonResourceRules
	(io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_subjects_kind == 'Group' => io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_subjects_group) | (io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_subjects_kind == 'ServiceAccount' => io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_subjects_serviceAccount) | (io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_subjects_kind == 'User' => io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_subjects_user) & !(io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_subjects_group & io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_subjects_serviceAccount) & !(io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_subjects_serviceAccount & io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_subjects_user) & !(io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_subjects_group & io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec_rules_subjects_user)
	io_k8s_api_flowcontrol_v1beta3_LimitResponse_type_Queue <=> io_k8s_api_flowcontrol_v1beta3_LimitResponse_queuing
	io_k8s_api_flowcontrol_v1beta3_LimitedPriorityLevelConfiguration_lendablePercent > 0 & io_k8s_api_flowcontrol_v1beta3_LimitedPriorityLevelConfiguration_lendablePercent < 100
	io_k8s_api_flowcontrol_v1beta3_LimitedPriorityLevelConfiguration_limitResponse_type_Queue <=> io_k8s_api_flowcontrol_v1beta3_LimitedPriorityLevelConfiguration_limitResponse_queuing
	io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects => io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_resourceRules | io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_nonResourceRules
	(io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_subjects_kind == 'Group' => io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_subjects_group) | (io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_subjects_kind == 'ServiceAccount' => io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_subjects_serviceAccount) | (io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_subjects_kind == 'User' => io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_subjects_user) & !(io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_subjects_group & io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_subjects_serviceAccount) & !(io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_subjects_serviceAccount & io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_subjects_user) & !(io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_subjects_group & io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects_subjects_user)
	(io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_type_Limited => !io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_exempt) | (io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_type_Exempt => io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_exempt)
	io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_exempt_lendablePercent > 0 & io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_exempt_lendablePercent < 100
	io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_type_Limited => io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_limited
	io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_limited_lendablePercent > 0 & io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_limited_lendablePercent < 100
	io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_limited_limitResponse_type_Queue <=> io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration_spec_limited_limitResponse_queuing
	(io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_type_Limited => !io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_exempt) | (io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_type_Exempt => io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_exempt)
	io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_exempt_lendablePercent > 0 & io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_exempt_lendablePercent < 100
	io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_type_Limited => io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_limited
	io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_limited_lendablePercent > 0 & io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_limited_lendablePercent < 100
	io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_limited_limitResponse_type_Queue <=> io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList_items_spec_limited_limitResponse_queuing
	(io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_type_Limited => !io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_exempt) | (io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_type_Exempt => io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_exempt)
	io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_exempt_lendablePercent > 0 & io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_exempt_lendablePercent < 100
	io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_type_Limited => io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_limited
	io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_limited_lendablePercent > 0 & io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_limited_lendablePercent < 100
	io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_limited_limitResponse_type_Queue <=> io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec_limited_limitResponse_queuing
	(io_k8s_api_flowcontrol_v1beta3_Subject_kind == 'Group' => io_k8s_api_flowcontrol_v1beta3_Subject_group) | (io_k8s_api_flowcontrol_v1beta3_Subject_kind == 'ServiceAccount' => io_k8s_api_flowcontrol_v1beta3_Subject_serviceAccount) | (io_k8s_api_flowcontrol_v1beta3_Subject_kind == 'User' => io_k8s_api_flowcontrol_v1beta3_Subject_user) & !(io_k8s_api_flowcontrol_v1beta3_Subject_group & io_k8s_api_flowcontrol_v1beta3_Subject_serviceAccount) & !(io_k8s_api_flowcontrol_v1beta3_Subject_serviceAccount & io_k8s_api_flowcontrol_v1beta3_Subject_user) & !(io_k8s_api_flowcontrol_v1beta3_Subject_group & io_k8s_api_flowcontrol_v1beta3_Subject_user)
	io_k8s_api_networking_v1_IngressClass_spec_parameters_scope_Namespace => io_k8s_api_networking_v1_IngressClass_spec_parameters_namespace & !(io_k8s_api_networking_v1_IngressClass_spec_parameters_scope_Cluster)
	io_k8s_api_networking_v1_IngressClassList_items_spec_parameters_scope_Namespace => io_k8s_api_networking_v1_IngressClassList_items_spec_parameters_namespace & !(io_k8s_api_networking_v1_IngressClassList_items_spec_parameters_scope_Cluster)
	io_k8s_api_networking_v1_IngressClassParametersReference_scope_Namespace => io_k8s_api_networking_v1_IngressClassParametersReference_namespace & !(io_k8s_api_networking_v1_IngressClassParametersReference_scope_Cluster)
	io_k8s_api_networking_v1_IngressClassSpec_parameters_scope_Namespace => io_k8s_api_networking_v1_IngressClassSpec_parameters_namespace & !(io_k8s_api_networking_v1_IngressClassSpec_parameters_scope_Cluster)
	(io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_namespaceSelector_matchExpressions_operator_In | io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_namespaceSelector_matchExpressions_values) | (io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_namespaceSelector_matchExpressions_values)
	(io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_podSelector_matchExpressions_operator_In | io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_podSelector_matchExpressions_operator_NotIn => io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_podSelector_matchExpressions_values) | (io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_podSelector_matchExpressions_operator_Exists |io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_podSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_networking_v1_NetworkPolicy_spec_egress_to_podSelector_matchExpressions_values)
	(io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_namespaceSelector_matchExpressions_operator_In | io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_namespaceSelector_matchExpressions_values) | (io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_namespaceSelector_matchExpressions_values)
	(io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_podSelector_matchExpressions_operator_In | io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_podSelector_matchExpressions_operator_NotIn => io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_podSelector_matchExpressions_values) | (io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_podSelector_matchExpressions_operator_Exists |io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_podSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_networking_v1_NetworkPolicy_spec_ingress_from_podSelector_matchExpressions_values)
	(io_k8s_api_networking_v1_NetworkPolicy_spec_podSelector_matchExpressions_operator_In | io_k8s_api_networking_v1_NetworkPolicy_spec_podSelector_matchExpressions_operator_NotIn => io_k8s_api_networking_v1_NetworkPolicy_spec_podSelector_matchExpressions_values) | (io_k8s_api_networking_v1_NetworkPolicy_spec_podSelector_matchExpressions_operator_Exists |io_k8s_api_networking_v1_NetworkPolicy_spec_podSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_networking_v1_NetworkPolicy_spec_podSelector_matchExpressions_values)
	(io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_namespaceSelector_matchExpressions_operator_In | io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_namespaceSelector_matchExpressions_values) | (io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_namespaceSelector_matchExpressions_values)
	(io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_podSelector_matchExpressions_operator_In | io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_podSelector_matchExpressions_operator_NotIn => io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_podSelector_matchExpressions_values) | (io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_podSelector_matchExpressions_operator_Exists |io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_podSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_networking_v1_NetworkPolicyEgressRule_to_podSelector_matchExpressions_values)
	(io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_namespaceSelector_matchExpressions_operator_In | io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_namespaceSelector_matchExpressions_values) | (io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_namespaceSelector_matchExpressions_values)
	(io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_podSelector_matchExpressions_operator_In | io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_podSelector_matchExpressions_operator_NotIn => io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_podSelector_matchExpressions_values) | (io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_podSelector_matchExpressions_operator_Exists |io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_podSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_networking_v1_NetworkPolicyIngressRule_from_podSelector_matchExpressions_values)
	(io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_namespaceSelector_matchExpressions_operator_In | io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_namespaceSelector_matchExpressions_values) | (io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_namespaceSelector_matchExpressions_values)
	(io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_podSelector_matchExpressions_operator_In | io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_podSelector_matchExpressions_operator_NotIn => io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_podSelector_matchExpressions_values) | (io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_podSelector_matchExpressions_operator_Exists |io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_podSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_networking_v1_NetworkPolicyList_items_spec_egress_to_podSelector_matchExpressions_values)
	(io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_namespaceSelector_matchExpressions_operator_In | io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_namespaceSelector_matchExpressions_values) | (io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_namespaceSelector_matchExpressions_values)
	(io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_podSelector_matchExpressions_operator_In | io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_podSelector_matchExpressions_operator_NotIn => io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_podSelector_matchExpressions_values) | (io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_podSelector_matchExpressions_operator_Exists |io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_podSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_networking_v1_NetworkPolicyList_items_spec_ingress_from_podSelector_matchExpressions_values)
	(io_k8s_api_networking_v1_NetworkPolicyList_items_spec_podSelector_matchExpressions_operator_In | io_k8s_api_networking_v1_NetworkPolicyList_items_spec_podSelector_matchExpressions_operator_NotIn => io_k8s_api_networking_v1_NetworkPolicyList_items_spec_podSelector_matchExpressions_values) | (io_k8s_api_networking_v1_NetworkPolicyList_items_spec_podSelector_matchExpressions_operator_Exists |io_k8s_api_networking_v1_NetworkPolicyList_items_spec_podSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_networking_v1_NetworkPolicyList_items_spec_podSelector_matchExpressions_values)
	(io_k8s_api_networking_v1_NetworkPolicyPeer_namespaceSelector_matchExpressions_operator_In | io_k8s_api_networking_v1_NetworkPolicyPeer_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_networking_v1_NetworkPolicyPeer_namespaceSelector_matchExpressions_values) | (io_k8s_api_networking_v1_NetworkPolicyPeer_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_networking_v1_NetworkPolicyPeer_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_networking_v1_NetworkPolicyPeer_namespaceSelector_matchExpressions_values)
	(io_k8s_api_networking_v1_NetworkPolicyPeer_podSelector_matchExpressions_operator_In | io_k8s_api_networking_v1_NetworkPolicyPeer_podSelector_matchExpressions_operator_NotIn => io_k8s_api_networking_v1_NetworkPolicyPeer_podSelector_matchExpressions_values) | (io_k8s_api_networking_v1_NetworkPolicyPeer_podSelector_matchExpressions_operator_Exists |io_k8s_api_networking_v1_NetworkPolicyPeer_podSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_networking_v1_NetworkPolicyPeer_podSelector_matchExpressions_values)
	(io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_namespaceSelector_matchExpressions_operator_In | io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_namespaceSelector_matchExpressions_values) | (io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_namespaceSelector_matchExpressions_values)
	(io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_podSelector_matchExpressions_operator_In | io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_podSelector_matchExpressions_operator_NotIn => io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_podSelector_matchExpressions_values) | (io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_podSelector_matchExpressions_operator_Exists |io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_podSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_networking_v1_NetworkPolicySpec_egress_to_podSelector_matchExpressions_values)
	(io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_namespaceSelector_matchExpressions_operator_In | io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_namespaceSelector_matchExpressions_operator_NotIn => io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_namespaceSelector_matchExpressions_values) | (io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_namespaceSelector_matchExpressions_operator_Exists |io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_namespaceSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_namespaceSelector_matchExpressions_values)
	(io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_podSelector_matchExpressions_operator_In | io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_podSelector_matchExpressions_operator_NotIn => io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_podSelector_matchExpressions_values) | (io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_podSelector_matchExpressions_operator_Exists |io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_podSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_networking_v1_NetworkPolicySpec_ingress_from_podSelector_matchExpressions_values)
	(io_k8s_api_networking_v1_NetworkPolicySpec_podSelector_matchExpressions_operator_In | io_k8s_api_networking_v1_NetworkPolicySpec_podSelector_matchExpressions_operator_NotIn => io_k8s_api_networking_v1_NetworkPolicySpec_podSelector_matchExpressions_values) | (io_k8s_api_networking_v1_NetworkPolicySpec_podSelector_matchExpressions_operator_Exists |io_k8s_api_networking_v1_NetworkPolicySpec_podSelector_matchExpressions_operator_DoesNotExist => !io_k8s_api_networking_v1_NetworkPolicySpec_podSelector_matchExpressions_values)
	io_k8s_api_node_v1_RuntimeClass_scheduling_tolerations_operator_Exists => !io_k8s_api_node_v1_RuntimeClass_scheduling_tolerations_value
	io_k8s_api_node_v1_RuntimeClassList_items_scheduling_tolerations_operator_Exists => !io_k8s_api_node_v1_RuntimeClassList_items_scheduling_tolerations_value
	io_k8s_api_node_v1_Scheduling_tolerations_operator_Exists => !io_k8s_api_node_v1_Scheduling_tolerations_value
	io_k8s_api_policy_v1_Eviction_deleteOptions_gracePeriodSeconds > 0
	(io_k8s_api_policy_v1_PodDisruptionBudget_spec_selector_matchExpressions_operator_In | io_k8s_api_policy_v1_PodDisruptionBudget_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_policy_v1_PodDisruptionBudget_spec_selector_matchExpressions_values) | (io_k8s_api_policy_v1_PodDisruptionBudget_spec_selector_matchExpressions_operator_Exists |io_k8s_api_policy_v1_PodDisruptionBudget_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_policy_v1_PodDisruptionBudget_spec_selector_matchExpressions_values)
	(io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_selector_matchExpressions_operator_In | io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_selector_matchExpressions_operator_NotIn => io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_selector_matchExpressions_values) | (io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_selector_matchExpressions_operator_Exists |io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_policy_v1_PodDisruptionBudgetList_items_spec_selector_matchExpressions_values)
	(io_k8s_api_policy_v1_PodDisruptionBudgetSpec_selector_matchExpressions_operator_In | io_k8s_api_policy_v1_PodDisruptionBudgetSpec_selector_matchExpressions_operator_NotIn => io_k8s_api_policy_v1_PodDisruptionBudgetSpec_selector_matchExpressions_values) | (io_k8s_api_policy_v1_PodDisruptionBudgetSpec_selector_matchExpressions_operator_Exists |io_k8s_api_policy_v1_PodDisruptionBudgetSpec_selector_matchExpressions_operator_DoesNotExist => !io_k8s_api_policy_v1_PodDisruptionBudgetSpec_selector_matchExpressions_values)
	(io_k8s_api_rbac_v1_AggregationRule_clusterRoleSelectors_matchExpressions_operator_In | io_k8s_api_rbac_v1_AggregationRule_clusterRoleSelectors_matchExpressions_operator_NotIn => io_k8s_api_rbac_v1_AggregationRule_clusterRoleSelectors_matchExpressions_values) | (io_k8s_api_rbac_v1_AggregationRule_clusterRoleSelectors_matchExpressions_operator_Exists |io_k8s_api_rbac_v1_AggregationRule_clusterRoleSelectors_matchExpressions_operator_DoesNotExist => !io_k8s_api_rbac_v1_AggregationRule_clusterRoleSelectors_matchExpressions_values)
	(io_k8s_api_rbac_v1_ClusterRole_aggregationRule_clusterRoleSelectors_matchExpressions_operator_In | io_k8s_api_rbac_v1_ClusterRole_aggregationRule_clusterRoleSelectors_matchExpressions_operator_NotIn => io_k8s_api_rbac_v1_ClusterRole_aggregationRule_clusterRoleSelectors_matchExpressions_values) | (io_k8s_api_rbac_v1_ClusterRole_aggregationRule_clusterRoleSelectors_matchExpressions_operator_Exists |io_k8s_api_rbac_v1_ClusterRole_aggregationRule_clusterRoleSelectors_matchExpressions_operator_DoesNotExist => !io_k8s_api_rbac_v1_ClusterRole_aggregationRule_clusterRoleSelectors_matchExpressions_values)
	(io_k8s_api_rbac_v1_ClusterRoleList_items_aggregationRule_clusterRoleSelectors_matchExpressions_operator_In | io_k8s_api_rbac_v1_ClusterRoleList_items_aggregationRule_clusterRoleSelectors_matchExpressions_operator_NotIn => io_k8s_api_rbac_v1_ClusterRoleList_items_aggregationRule_clusterRoleSelectors_matchExpressions_values) | (io_k8s_api_rbac_v1_ClusterRoleList_items_aggregationRule_clusterRoleSelectors_matchExpressions_operator_Exists |io_k8s_api_rbac_v1_ClusterRoleList_items_aggregationRule_clusterRoleSelectors_matchExpressions_operator_DoesNotExist => !io_k8s_api_rbac_v1_ClusterRoleList_items_aggregationRule_clusterRoleSelectors_matchExpressions_values)
	(io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchFields_values) | (io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchFields_values)| (io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_resource_v1alpha2_AllocationResult_availableOnNodes_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_values) | (io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_values)| (io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_resource_v1alpha2_ResourceClaim_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_values) | (io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_values)| (io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_resource_v1alpha2_ResourceClaimList_items_status_allocation_availableOnNodes_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchFields_values) | (io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchFields_values)| (io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_resource_v1alpha2_ResourceClaimStatus_allocation_availableOnNodes_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchFields_values) | (io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchFields_values)| (io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_resource_v1alpha2_ResourceClass_suitableNodes_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchFields_values) | (io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchFields_values)| (io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_resource_v1alpha2_ResourceClassList_items_suitableNodes_nodeSelectorTerms_matchFields_values)
	(io_k8s_api_storage_v1_CSIStorageCapacity_nodeTopology_matchExpressions_operator_In | io_k8s_api_storage_v1_CSIStorageCapacity_nodeTopology_matchExpressions_operator_NotIn => io_k8s_api_storage_v1_CSIStorageCapacity_nodeTopology_matchExpressions_values) | (io_k8s_api_storage_v1_CSIStorageCapacity_nodeTopology_matchExpressions_operator_Exists |io_k8s_api_storage_v1_CSIStorageCapacity_nodeTopology_matchExpressions_operator_DoesNotExist => !io_k8s_api_storage_v1_CSIStorageCapacity_nodeTopology_matchExpressions_values)
	(io_k8s_api_storage_v1_CSIStorageCapacityList_items_nodeTopology_matchExpressions_operator_In | io_k8s_api_storage_v1_CSIStorageCapacityList_items_nodeTopology_matchExpressions_operator_NotIn => io_k8s_api_storage_v1_CSIStorageCapacityList_items_nodeTopology_matchExpressions_values) | (io_k8s_api_storage_v1_CSIStorageCapacityList_items_nodeTopology_matchExpressions_operator_Exists |io_k8s_api_storage_v1_CSIStorageCapacityList_items_nodeTopology_matchExpressions_operator_DoesNotExist => !io_k8s_api_storage_v1_CSIStorageCapacityList_items_nodeTopology_matchExpressions_values)
	io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_flocker => (io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_flocker_datasetUUID | io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_flocker_datasetName) & !(io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_flocker_datasetUUID & io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_flocker_datasetName)
	(io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values) | (io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values)| (io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_storage_v1_VolumeAttachment_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values)
	io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_flocker => (io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_flocker_datasetUUID | io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_flocker_datasetName) & !(io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_flocker_datasetUUID & io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_flocker_datasetName)
	(io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values) | (io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values)| (io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_storage_v1_VolumeAttachmentList_items_spec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values)
	io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_flocker => (io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_flocker_datasetUUID | io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_flocker_datasetName) & !(io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_flocker_datasetUUID & io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_flocker_datasetName)
	(io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values) | (io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values)| (io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_storage_v1_VolumeAttachmentSource_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values)
	io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_flocker => (io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_flocker_datasetUUID | io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_flocker_datasetName) & !(io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_flocker_datasetUUID & io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_flocker_datasetName)
	(io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_In | io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_NotIn => io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values) | (io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Exists |io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_DoesNotExist => !io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values)| (io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Gt |io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_operator_Lt => io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchExpressions_values)
	(io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_In | io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_NotIn => io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values) | (io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Exists |io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_DoesNotExist => !io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values)| (io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Gt |io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_operator_Lt => io_k8s_api_storage_v1_VolumeAttachmentSpec_source_inlineVolumeSpec_nodeAffinity_required_nodeSelectorTerms_matchFields_values)
	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_strategy_Webhook => io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_webhook
	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_webhook_clientConfig_service_port > 1 & io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_webhook_clientConfig_service_port < 65535
	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_webhook_clientConfig => (io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_webhook_clientConfig_url | io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_webhook_clientConfig_service) & !(io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_webhook_clientConfig_url & io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion_webhook_clientConfig_service)
	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_strategy_Webhook => io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_webhook
	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_webhook_clientConfig_service_port > 1 & io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_webhook_clientConfig_service_port < 65535
	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_webhook_clientConfig => (io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_webhook_clientConfig_url | io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_webhook_clientConfig_service) & !(io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_webhook_clientConfig_url & io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition_spec_conversion_webhook_clientConfig_service)
	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_strategy_Webhook => io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_webhook
	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_webhook_clientConfig_service_port > 1 & io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_webhook_clientConfig_service_port < 65535
	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_webhook_clientConfig => (io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_webhook_clientConfig_url | io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_webhook_clientConfig_service) & !(io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_webhook_clientConfig_url & io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList_items_spec_conversion_webhook_clientConfig_service)
	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_strategy_Webhook => io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_webhook
	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_webhook_clientConfig_service_port > 1 & io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_webhook_clientConfig_service_port < 65535
	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_webhook_clientConfig => (io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_webhook_clientConfig_url | io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_webhook_clientConfig_service) & !(io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_webhook_clientConfig_url & io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec_conversion_webhook_clientConfig_service)
	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ServiceReference_port > 1 & io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ServiceReference_port < 65535
	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookClientConfig_service_port > 1 & io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookClientConfig_service_port < 65535
	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookClientConfig => (io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookClientConfig_url | io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookClientConfig_service) & !(io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookClientConfig_url & io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookClientConfig_service)
	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookConversion_clientConfig_service_port > 1 & io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookConversion_clientConfig_service_port < 65535
	io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookConversion_clientConfig => (io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookConversion_clientConfig_url | io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookConversion_clientConfig_service) & !(io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookConversion_clientConfig_url & io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookConversion_clientConfig_service)
	io_k8s_apimachinery_pkg_apis_meta_v1_DeleteOptions_gracePeriodSeconds > 0
	(io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector_matchExpressions_operator_In | io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector_matchExpressions_operator_NotIn => io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector_matchExpressions_values) | (io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector_matchExpressions_operator_Exists |io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector_matchExpressions_operator_DoesNotExist => !io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector_matchExpressions_values)
	(io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement_operator_In | io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement_operator_NotIn => io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement_values) | (io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement_operator_Exists |io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement_operator_DoesNotExist => !io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement_values)
	io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_spec_service_port > 1 & io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_spec_service_port < 65535
	io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService_spec_versionPriority > 0
	io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_spec_service_port > 1 & io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_spec_service_port < 65535
	io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList_items_spec_versionPriority > 0
	io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceSpec_service_port > 1 & io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceSpec_service_port < 65535
	io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceSpec_versionPriority > 0
	io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_ServiceReference_port > 1 & io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_ServiceReference_port < 65535